Home
last modified time | relevance | path

Searched refs:BIT_BUF_SIZE (Results 1 – 8 of 8) sorted by relevance

/external/libjpeg-turbo/simd/arm/
Djchuff.h21 #define BIT_BUF_SIZE 64 macro
23 #define BIT_BUF_SIZE 32 macro
97 free_bits += BIT_BUF_SIZE; \
/external/rust/crates/libz-sys/src/zlib-ng/
Dtrees_emit.h28 Assert(length > 0 && length <= BIT_BUF_SIZE, "invalid length"); \
49 if (total_bits < BIT_BUF_SIZE) {\
52 } else if (bi_valid == BIT_BUF_SIZE) {\
59 bi_buf = val >> (BIT_BUF_SIZE - bi_valid);\
60 bi_valid = total_bits - BIT_BUF_SIZE;\
Ddeflate_quick.c64 if (UNLIKELY(s->pending + ((BIT_BUF_SIZE + 7) >> 3) >= s->pending_buf_size)) { in deflate_quick()
Ddeflate.h53 #define BIT_BUF_SIZE 64 macro
Ddeflate.c576 if (bits < 0 || bits > BIT_BUF_SIZE || bits > (int32_t)(sizeof(value) << 3) || in PREFIX()
577 s->sym_buf < s->pending_out + ((BIT_BUF_SIZE + 7) >> 3)) in PREFIX()
580 put = BIT_BUF_SIZE - s->bi_valid; in PREFIX()
/external/libjpeg-turbo/
Djdhuff.h80 #define BIT_BUF_SIZE 64 /* size of buffer in bits */ macro
85 #define BIT_BUF_SIZE 64 /* size of buffer in bits */ macro
90 #define BIT_BUF_SIZE 32 /* size of buffer in bits */ macro
Djchuff.c93 #define BIT_BUF_SIZE 64 macro
95 #define BIT_BUF_SIZE 32 macro
231 entropy->saved.free_bits = BIT_BUF_SIZE; in start_pass_huff()
380 #if BIT_BUF_SIZE == 64
430 free_bits += BIT_BUF_SIZE; \
510 put_bits = BIT_BUF_SIZE - state->cur.free_bits; in flush_bits()
536 state->cur.free_bits = BIT_BUF_SIZE; in flush_bits()
Djdhuff.c280 #define MIN_GET_BITS (BIT_BUF_SIZE - 7)