Lines Matching refs:deUint64

284 inline deUint64 get64BitBlock (const deUint8* src, int blockNdx)  in get64BitBlock()
287 deUint64 block = 0; in get64BitBlock()
290 block = (block << 8ull) | (deUint64)(src[blockNdx*8+i]); in get64BitBlock()
296 inline deUint64 get128BitBlockStart (const deUint8* src, int blockNdx) in get128BitBlockStart()
302 inline deUint64 get128BitBlockEnd (const deUint8* src, int blockNdx) in get128BitBlockEnd()
307 inline deUint32 getBit (deUint64 src, int bit) in getBit()
312 inline deUint32 getBits (deUint64 src, int low, int high) in getBits()
372 void decompressETC1Block (deUint8 dst[ETC2_UNCOMPRESSED_BLOCK_SIZE_RGB8], deUint64 src) in decompressETC1Block()
441 void decompressETC2Block (deUint8 dst[ETC2_UNCOMPRESSED_BLOCK_SIZE_RGB8], deUint64 src, deUint8 alp… in decompressETC2Block()
703 void decompressEAC8Block (deUint8 dst[ETC2_UNCOMPRESSED_BLOCK_SIZE_A8], deUint64 src) in decompressEAC8Block()
742 void decompressEAC11Block (deUint8 dst[ETC2_UNCOMPRESSED_BLOCK_SIZE_R11], deUint64 src, bool signed… in decompressEAC11Block()
817 const deUint64 compressedBlock = get64BitBlock(src, 0); in decompressETC1()
827 const deUint64 compressedBlock = get64BitBlock(src, 0); in decompressETC2()
840 const deUint64 compressedBlockAlpha = get128BitBlockStart(src, 0); in decompressETC2_EAC_RGBA8()
841 const deUint64 compressedBlockRGB = get128BitBlockEnd(src, 0); in decompressETC2_EAC_RGBA8()
875 const deUint64 compressedBlockRGBA = get64BitBlock(src, 0); in decompressETC2_RGB8_PUNCHTHROUGH_ALPHA1()
908 const deUint64 compressedBlock = get64BitBlock(src, 0); in decompressEAC_R11()
947 const deUint64 compressedBlockR = get128BitBlockStart(src, 0); in decompressEAC_RG11()
948 const deUint64 compressedBlockG = get128BitBlockEnd(src, 0); in decompressEAC_RG11()