Searched refs:widthAndHeight (Results 1 – 1 of 1) sorted by relevance
3829 int widthAndHeight = 0; in saveWebpAttributes() local3848 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()3849 width = (widthAndHeight << 18) >> 18; in saveWebpAttributes()3850 height = (widthAndHeight << 2) >> 18; in saveWebpAttributes()3861 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()3864 width = ((widthAndHeight << 18) >> 18) + 1; in saveWebpAttributes()3865 height = ((widthAndHeight << 4) >> 18) + 1; in saveWebpAttributes()3867 alpha = (widthAndHeight & (1 << 28)) != 0; in saveWebpAttributes()3898 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()3901 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()