Searched refs:BROTLI_PREDICT_FALSE (Results 1 – 11 of 11) sorted by relevance
/external/brotli/c/dec/ |
D | decode.c | 185 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 1, &bits))) { in DecodeVarLenUint8() 195 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 3, &bits))) { in DecodeVarLenUint8() 209 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) { in DecodeVarLenUint8() 444 if (BROTLI_PREDICT_FALSE(*bits > HUFFMAN_TABLE_BITS)) { in ReadPreloadedSymbol() 481 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, max_bits, &v))) { in ReadSimpleHuffmanSymbols() 694 if (BROTLI_PREDICT_FALSE(!BrotliSafeGetBits(br, 4, &ix))) { in ReadCodeLengthCodeLengths() 1590 if (BROTLI_PREDICT_FALSE(v.insert_len_extra_bits != 0)) { in ReadCommandInternal() 1674 if (BROTLI_PREDICT_FALSE(s->block_length[1] == 0)) { in ProcessCommandsInternal() 1702 if (BROTLI_PREDICT_FALSE(s->block_length[0] == 0)) { in ProcessCommandsInternal() 1721 if (BROTLI_PREDICT_FALSE(pos == s->ringbuffer_size)) { in ProcessCommandsInternal() [all …]
|
/external/brotli/c/enc/ |
D | find_match_length.h | 28 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64LE(s2) == in FindMatchLengthWithLimit()
|
D | hash_longest_match_quickly_inc.h | 179 if (BROTLI_PREDICT_FALSE(backward == 0 || backward > max_backward)) { in FN() 205 if (BROTLI_PREDICT_FALSE(backward == 0 || backward > max_backward)) { in FN()
|
D | hash_longest_match64_inc.h | 186 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN() 229 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
|
D | hash_longest_match_inc.h | 179 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN() 221 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
|
D | compress_fragment_two_pass.c | 294 if (BROTLI_PREDICT_FALSE(next_ip > ip_limit)) { in CreateCommands() 345 if (BROTLI_PREDICT_FALSE(ip >= ip_limit)) { in CreateCommands() 400 if (BROTLI_PREDICT_FALSE(ip >= ip_limit)) { in CreateCommands()
|
D | ringbuffer.h | 96 if (BROTLI_PREDICT_FALSE(masked_pos < rb->tail_size_)) { in RingBufferWriteTail()
|
D | compress_fragment.c | 532 if (BROTLI_PREDICT_FALSE(next_ip > ip_limit)) { in BrotliCompressFragmentFastImpl() 598 if (BROTLI_PREDICT_FALSE(ip >= ip_limit)) { in BrotliCompressFragmentFastImpl() 635 if (BROTLI_PREDICT_FALSE(ip >= ip_limit)) { in BrotliCompressFragmentFastImpl()
|
D | hash_to_binary_tree_inc.h | 220 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
|
D | backward_references_hq.c | 456 if (BROTLI_PREDICT_FALSE(backward > max_distance + gap)) { in UpdateNodes()
|
/external/brotli/c/common/ |
D | platform.h | 80 #define BROTLI_PREDICT_FALSE(x) (__builtin_expect(x, 0)) macro 82 #define BROTLI_PREDICT_FALSE(x) (x) macro
|