Searched refs:match_byte (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c24 uint32_t match_byte, uint32_t symbol)
39 match_byte <<= 1;
41 const uint32_t match_bit = match_byte & offset;
48 offset &= ~(match_byte ^ symbol);
331 const uint8_t match_byte = *(buf - coder->reps[0] - 1); local
333 if (len_main < 2 && current_byte != match_byte
348 match_byte, current_byte);
357 if (match_byte == current_byte) {
520 const uint8_t match_byte = *(buf - reps[0] - 1); local
527 !is_literal_state(state), match_byte, current_byt
22 get_literal_price(const lzma_lzma1_encoder *const coder, const uint32_t pos, const uint32_t prev_byte, const bool match_mode, uint32_t match_byte, uint32_t symbol) argument
[all...]
H A Dlzma_encoder.c25 uint32_t match_byte, uint32_t symbol)
31 match_byte <<= 1;
32 const uint32_t match_bit = match_byte & offset;
39 offset &= ~(match_byte ^ symbol);
63 const uint8_t match_byte = mf->buffer[ local
66 literal_matched(&coder->rc, subcoder, match_byte, cur_byte);
24 literal_matched(lzma_range_encoder *rc, probability *subcoder, uint32_t match_byte, uint32_t symbol) argument
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c585 uint32_t match_byte; local
596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1;
600 match_bit = match_byte & offset;
601 match_byte <<= 1;
/freebsd-11-stable/usr.bin/gzip/
H A Dunlz.c246 lz_rd_decode_matched(struct lz_range_decoder *rd, int *bm, int match_byte) argument
251 const unsigned match_bit = (match_byte >> i) & 1;

Completed in 133 milliseconds