Home
last modified time | relevance | path

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

/external/brotli/c/enc/
Dentropy_encode.c74 uint32_t count_limit; in BrotliCreateHuffmanTree() local
81 for (count_limit = 1; ; count_limit *= 2) { in BrotliCreateHuffmanTree()
89 const uint32_t count = BROTLI_MAX(uint32_t, data[i], count_limit); in BrotliCreateHuffmanTree()
Dbrotli_bit_stream.c452 uint32_t count_limit; in BrotliBuildAndStoreHuffmanTreeFast() local
454 for (count_limit = 1; ; count_limit *= 2) { in BrotliBuildAndStoreHuffmanTreeFast()
460 if (BROTLI_PREDICT_TRUE(histogram[l] >= count_limit)) { in BrotliBuildAndStoreHuffmanTreeFast()
463 InitHuffmanTree(node, count_limit, -1, (int16_t)l); in BrotliBuildAndStoreHuffmanTreeFast()
/external/tensorflow/tensorflow/python/kernel_tests/random/
Drandom_gamma_test.py142 count_limit = 20 if dt == dtypes.float16 else 10
143 if count >= count_limit:
148 self.assertLess(count, count_limit)
Drandom_ops_test.py295 count_limit = 50 if dt == dtypes.float16 else 10
296 if count >= count_limit:
300 self.assertTrue(count < count_limit)