Searched refs:FIRSTBITS (Results 1 – 1 of 1) sorted by relevance
682 #define FIRSTBITS 9u macro690 static const unsigned headsize = 1u << FIRSTBITS; /*size of the first table*/ in HuffmanTree_makeTable()691 static const unsigned mask = (1u << FIRSTBITS) /*headsize*/ - 1u; in HuffmanTree_makeTable()702 …if(l <= FIRSTBITS) continue; /*symbols that fit in first table don't increase secondary table size… in HuffmanTree_makeTable()704 index = reverseBits(symbol >> (l - FIRSTBITS), FIRSTBITS); in HuffmanTree_makeTable()711 if(l > FIRSTBITS) size += (1u << (l - FIRSTBITS)); in HuffmanTree_makeTable()727 if(l <= FIRSTBITS) continue; in HuffmanTree_makeTable()730 pointer += (1u << (l - FIRSTBITS)); in HuffmanTree_makeTable()744 if(l <= FIRSTBITS) { in HuffmanTree_makeTable()746 unsigned num = 1u << (FIRSTBITS - l); in HuffmanTree_makeTable()[all …]