Searched refs:tbits (Results 1 – 1 of 1) sorted by relevance
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | astcenc_integer_sequence.cpp | 575 static const uint8_t tbits[4] { 2, 2, 1, 2 }; in encode_ise() local 579 (((T >> tshift[j]) & ((1 << tbits[j]) - 1)) << bits); in encode_ise() 581 write_bits(pack, bits + tbits[j], bit_offset, output_data); in encode_ise() 582 bit_offset += bits + tbits[j]; in encode_ise() 634 static const uint8_t tbits[2] { 3, 2 }; in encode_ise() local 638 (((T >> tshift[j]) & ((1 << tbits[j]) - 1)) << bits); in encode_ise() 640 write_bits(pack, bits + tbits[j], bit_offset, output_data); in encode_ise() 641 bit_offset += bits + tbits[j]; in encode_ise()
|