Searched refs:FIRSTBITS (Results 1 – 1 of 1) sorted by relevance
707 #define FIRSTBITS 9u macro716 static const unsigned headsize = 1u << FIRSTBITS; /*size of the first table*/ in HuffmanTree_makeTable()717 static const unsigned mask = (1u << FIRSTBITS) /*headsize*/ - 1u; in HuffmanTree_makeTable()728 …if(l <= FIRSTBITS) continue; /*symbols that fit in first table don't increase secondary table size… in HuffmanTree_makeTable()730 index = reverseBits(symbol >> (l - FIRSTBITS), FIRSTBITS); in HuffmanTree_makeTable()737 if(l > FIRSTBITS) size += (((size_t)1) << (l - FIRSTBITS)); in HuffmanTree_makeTable()753 if(l <= FIRSTBITS) continue; in HuffmanTree_makeTable()756 pointer += (((size_t)1) << (l - FIRSTBITS)); in HuffmanTree_makeTable()771 if(l <= FIRSTBITS) { in HuffmanTree_makeTable()773 unsigned num = 1u << (FIRSTBITS - l); in HuffmanTree_makeTable()[all …]