Home
last modified time | relevance | path

Searched refs:BrotliSafeReadBits (Results 1 – 3 of 3) sorted by relevance

/external/brotli/c/dec/
Dbit_reader.c65 if (!BrotliSafeReadBits(br, 16, &low_val) || in BrotliSafeReadBits32Slow()
66 !BrotliSafeReadBits(br, n_bits - 16, &high_val)) { in BrotliSafeReadBits32Slow()
Ddecode.c186 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 …]
Dbit_reader.h291 static BROTLI_INLINE BROTLI_BOOL BrotliSafeReadBits( in BrotliSafeReadBits() function