Searched refs:BrotliSafeReadBits (Results 1 – 3 of 3) sorted by relevance
/external/brotli/c/dec/ |
D | bit_reader.c | 65 if (!BrotliSafeReadBits(br, 16, &low_val) || in BrotliSafeReadBits32Slow() 66 !BrotliSafeReadBits(br, n_bits - 16, &high_val)) { in BrotliSafeReadBits32Slow()
|
D | decode.c | 186 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 1, &bits))) { in DecodeVarLenUint8() 196 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, 3, &bits))) { in DecodeVarLenUint8() 210 if (BROTLI_PREDICT_FALSE(!BrotliSafeReadBits(br, *value, &bits))) { in DecodeVarLenUint8() 232 if (!BrotliSafeReadBits(br, 1, &bits)) { in DecodeMetaBlockLength() 247 if (!BrotliSafeReadBits(br, 1, &bits)) { in DecodeMetaBlockLength() 258 if (!BrotliSafeReadBits(br, 2, &bits)) { in DecodeMetaBlockLength() 274 if (!BrotliSafeReadBits(br, 4, &bits)) { in DecodeMetaBlockLength() 290 if (!BrotliSafeReadBits(br, 1, &bits)) { in DecodeMetaBlockLength() 300 if (!BrotliSafeReadBits(br, 1, &bits)) { in DecodeMetaBlockLength() 310 if (!BrotliSafeReadBits(br, 2, &bits)) { in DecodeMetaBlockLength() [all …]
|
D | bit_reader.h | 291 static BROTLI_INLINE BROTLI_BOOL BrotliSafeReadBits( in BrotliSafeReadBits() function
|