Searched refs:count_limit (Results 1 - 2 of 2) sorted by relevance

/xsrc/external/mit/brotli/dist/c/enc/
H A Dentropy_encode.c62 count_limit is the value that is to be faked as the minimum value
76 uint32_t count_limit; local in function:BrotliCreateHuffmanTree
83 for (count_limit = 1; ; count_limit *= 2) {
91 const uint32_t count = BROTLI_MAX(uint32_t, data[i], count_limit);
H A Dbrotli_bit_stream.c437 uint32_t count_limit; local in function:BrotliBuildAndStoreHuffmanTreeFast
439 for (count_limit = 1; ; count_limit *= 2) {
445 if (BROTLI_PREDICT_TRUE(histogram[l] >= count_limit)) {
448 InitHuffmanTree(node, count_limit, -1, (int16_t)l);

Completed in 5 milliseconds