Searched refs:widthAndHeight (Results 1 – 1 of 1) sorted by relevance
3813 int widthAndHeight = 0; in saveWebpAttributes() local3832 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()3833 width = (widthAndHeight << 18) >> 18; in saveWebpAttributes()3834 height = (widthAndHeight << 2) >> 18; in saveWebpAttributes()3845 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()3848 width = ((widthAndHeight << 18) >> 18) + 1; in saveWebpAttributes()3849 height = ((widthAndHeight << 4) >> 18) + 1; in saveWebpAttributes()3851 alpha = widthAndHeight & (1 << 3); in saveWebpAttributes()3880 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()3883 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()