Home
last modified time | relevance | path

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

/third_party/node/deps/brotli/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; in BrotliCreateHuffmanTree() local
83 for (count_limit = 1; ; count_limit *= 2) { in BrotliCreateHuffmanTree()
91 const uint32_t count = BROTLI_MAX(uint32_t, data[i], count_limit); in BrotliCreateHuffmanTree()
H A Dbrotli_bit_stream.c437 uint32_t count_limit; in BrotliBuildAndStoreHuffmanTreeFast() local
439 for (count_limit = 1; ; count_limit *= 2) { in BrotliBuildAndStoreHuffmanTreeFast()
445 if (BROTLI_PREDICT_TRUE(histogram[l] >= count_limit)) { in BrotliBuildAndStoreHuffmanTreeFast()
448 InitHuffmanTree(node, count_limit, -1, (int16_t)l); in BrotliBuildAndStoreHuffmanTreeFast()
/third_party/skia/third_party/externals/brotli/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; in BrotliCreateHuffmanTree() local
83 for (count_limit = 1; ; count_limit *= 2) { in BrotliCreateHuffmanTree()
91 const uint32_t count = BROTLI_MAX(uint32_t, data[i], count_limit); in BrotliCreateHuffmanTree()
H A Dbrotli_bit_stream.c437 uint32_t count_limit; in BrotliBuildAndStoreHuffmanTreeFast() local
439 for (count_limit = 1; ; count_limit *= 2) { in BrotliBuildAndStoreHuffmanTreeFast()
445 if (BROTLI_PREDICT_TRUE(histogram[l] >= count_limit)) { in BrotliBuildAndStoreHuffmanTreeFast()
448 InitHuffmanTree(node, count_limit, -1, (int16_t)l); in BrotliBuildAndStoreHuffmanTreeFast()
/third_party/pcre2/pcre2/src/
H A Dpcre2grep.c230 static int count_limit = -1; /* Not long, so that it works with OP_NUMBER */ variable
460 { OP_NUMBER, 'm', &count_limit, "max-count=number", "stop after <number> matched lines" },
2610 if (count_limit >= 0 && filename == stdin_name) in pcre2grep()
2657 if (count_limit >= 0 && count_matched_lines >= count_limit) in pcre2grep()
2661 rc = (count_limit == 0)? 1 : 0; in pcre2grep()
3274 if (count_limit >= 0) setbuf(stdin, NULL); in grep_or_recurse()
4474 if (count_limit >= 0) in main()

Completed in 12 milliseconds