Home
last modified time | relevance | path

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

/hardware/google/gfxstream/third-party/astc-encoder/Source/
Dtinyexr.h8278 const int HUF_DECBITS = 14; // decoding bit size (>= 8) variable
8281 const int HUF_DECSIZE = 1 << HUF_DECBITS; // decoding table size
8724 if (l > HUF_DECBITS) { in hufBuildDecTable()
8729 HufDec *pl = hdecod + (c >> (l - HUF_DECBITS)); in hufBuildDecTable()
8760 HufDec *pl = hdecod + (c << (HUF_DECBITS - l)); in hufBuildDecTable()
8762 for (long long i = 1ULL << (HUF_DECBITS - l); i > 0; i--, pl++) { in hufBuildDecTable()
8972 while (lc >= HUF_DECBITS) { in hufDecode()
8973 const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK]; in hufDecode()
9042 const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK]; in hufDecode()