Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx_dsp/
Dbitwriter_buffer.c26 wb->bit_buffer[p] = bit << q; in vpx_wb_write_bit()
28 wb->bit_buffer[p] &= ~(1 << q); in vpx_wb_write_bit()
29 wb->bit_buffer[p] |= bit << q; in vpx_wb_write_bit()
Dbitreader_buffer.c21 if (rb->bit_buffer + p < rb->bit_buffer_end) { in vpx_rb_read_bit()
22 const int bit = (rb->bit_buffer[p] >> q) & 1; in vpx_rb_read_bit()
Dbitwriter_buffer.h21 uint8_t *bit_buffer; member
Dbitreader_buffer.h25 const uint8_t *bit_buffer; member
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jcphuff.c46 char * bit_buffer; /* buffer for correction bits (1 per char) */ member
132 if (entropy->bit_buffer == NULL) in start_pass_phuff()
133 entropy->bit_buffer = (char *) in start_pass_phuff()
336 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE); in emit_eobrun()
664 BR_buffer = entropy->bit_buffer + entropy->BE; /* Append bits to buffer */ in encode_mcu_AC_refine()
681 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
708 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
830 entropy->bit_buffer = NULL; /* needed only in AC refinement scan */ in jinit_phuff_encoder()
/external/libjpeg-turbo/
Djcphuff.c48 char * bit_buffer; /* buffer for correction bits (1 per char) */ member
134 if (entropy->bit_buffer == NULL) in start_pass_phuff()
135 entropy->bit_buffer = (char *) in start_pass_phuff()
336 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE); in emit_eobrun()
664 BR_buffer = entropy->bit_buffer + entropy->BE; /* Append bits to buffer */ in encode_mcu_AC_refine()
681 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
708 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
830 entropy->bit_buffer = NULL; /* needed only in AC refinement scan */ in jinit_phuff_encoder()
/external/opencv3/3rdparty/libjpeg/
Djchuff.c113 char * bit_buffer; /* buffer for correction bits (1 per char) */ member
479 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE); in emit_eobrun()
836 BR_buffer = entropy->bit_buffer + entropy->BE; /* Append bits to buffer */ in encode_mcu_AC_refine()
853 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
880 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */ in encode_mcu_AC_refine()
1480 if (entropy->bit_buffer == NULL) in start_pass_huff()
1481 entropy->bit_buffer = (char *) in start_pass_huff()
1575 entropy->bit_buffer = NULL; /* needed only in AC refinement scan */ in jinit_huff_encoder()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c2134 rb->bit_buffer = clear_data; in init_read_bit_buffer()
2137 rb->bit_buffer = data; in init_read_bit_buffer()