Home
last modified time | relevance | path

Searched refs:encodedHeight (Results 1 – 1 of 1) sorted by relevance

/external/skqp/third_party/etc1/
Detc1.cpp532 etc1_uint32 encodedHeight = (height + 3) & ~3; in etc1_encode_image() local
534 for (etc1_uint32 y = 0; y < encodedHeight; y += 4) { in etc1_encode_image()
585 etc1_uint32 encodedHeight = (height + 3) & ~3; in etc1_decode_image() local
587 for (etc1_uint32 y = 0; y < encodedHeight; y += 4) { in etc1_decode_image()
644 etc1_uint32 encodedHeight = (height + 3) & ~3; in etc1_pkm_format_header() local
647 writeBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET, encodedHeight); in etc1_pkm_format_header()
660 etc1_uint32 encodedHeight = readBEUint16(pHeader + ETC1_PKM_ENCODED_HEIGHT_OFFSET); in etc1_pkm_is_valid() local
665 encodedHeight >= height && encodedHeight - height < 4; in etc1_pkm_is_valid()