Home
last modified time | relevance | path

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

/device/generic/vulkan-cereal/stream-servers/vulkan/
DEtc2ShaderLib.comp312 int base_codeword = int(high >> 24);
313 base_codeword &= 255;
334 int decoded = base_codeword + modifierValue * multiplier;
343 int base_codeword = int(high >> 24);
345 if (base_codeword >= 128) {
346 base_codeword -= 256;
348 if (base_codeword == -128) {
349 base_codeword = -127;
372 int decoded = base_codeword + modifierValue * multiplier;
/device/generic/vulkan-cereal/stream-servers/glestranslator/GLcommon/
Detc.cpp444 int base_codeword = isSigned ? reinterpret_cast<const char*>(pIn)[0] in eac_decode_single_channel_block() local
446 if (base_codeword == -128) base_codeword = -127; in eac_decode_single_channel_block()
474 int decoded = base_codeword + modifierValue * multiplier; in eac_decode_single_channel_block()
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
Detc.cpp444 int base_codeword = isSigned ? reinterpret_cast<const char*>(pIn)[0] in eac_decode_single_channel_block() local
446 if (base_codeword == -128) base_codeword = -127; in eac_decode_single_channel_block()
474 int decoded = base_codeword + modifierValue * multiplier; in eac_decode_single_channel_block()
/device/generic/vulkan-cereal/stream-servers/compressedTextureFormats/
Detc.cpp444 int base_codeword = isSigned ? reinterpret_cast<const char*>(pIn)[0] in eac_decode_single_channel_block() local
446 if (base_codeword == -128) base_codeword = -127; in eac_decode_single_channel_block()
474 int decoded = base_codeword + modifierValue * multiplier; in eac_decode_single_channel_block()
/device/generic/vulkan-cereal/third-party/angle/src/image_util/
Dloadimage_etc.cpp336 } base_codeword; member
1339 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleEACChannel()
1346 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleETC2Channel()