Home
last modified time | relevance | path

Searched refs:BROTLI_PREDICT_FALSE (Results 1 – 11 of 11) sorted by relevance

/external/brotli/c/dec/
Ddecode.c185 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/
Dfind_match_length.h28 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64LE(s2) == in FindMatchLengthWithLimit()
Dhash_longest_match_quickly_inc.h179 if (BROTLI_PREDICT_FALSE(backward == 0 || backward > max_backward)) { in FN()
205 if (BROTLI_PREDICT_FALSE(backward == 0 || backward > max_backward)) { in FN()
Dhash_longest_match64_inc.h186 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
229 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
Dhash_longest_match_inc.h179 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
221 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
Dcompress_fragment_two_pass.c294 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()
Dringbuffer.h96 if (BROTLI_PREDICT_FALSE(masked_pos < rb->tail_size_)) { in RingBufferWriteTail()
Dcompress_fragment.c532 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()
Dhash_to_binary_tree_inc.h220 if (BROTLI_PREDICT_FALSE(backward > max_backward)) { in FN()
Dbackward_references_hq.c456 if (BROTLI_PREDICT_FALSE(backward > max_distance + gap)) { in UpdateNodes()
/external/brotli/c/common/
Dplatform.h80 #define BROTLI_PREDICT_FALSE(x) (__builtin_expect(x, 0)) macro
82 #define BROTLI_PREDICT_FALSE(x) (x) macro