Home
last modified time | relevance | path

Searched refs:prev_byte (Results 1 – 5 of 5) sorted by relevance

/src/contrib/xz/src/liblzma/lzma/
H A Dlzma_common.h141 #define literal_subcoder(probs, lc, literal_mask, pos, prev_byte) \ argument
143 (((((pos) << 8) + (prev_byte)) & (literal_mask)) << (lc)))
H A Dlzma_encoder_optimum_normal.c22 const uint32_t prev_byte, const bool match_mode, in get_literal_price() argument
27 pos, prev_byte); in get_literal_price()
/src/usr.bin/gzip/
H A Dunlz.c441 const uint8_t prev_byte = lz_peek(lz, 0); in lz_decode_member() local
443 prev_byte >> (8 - LITERAL_CONTEXT_BITS); in lz_decode_member()
/src/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c606 uint32_t prev_byte = dict_get(&s->dict, 0); in lzma_literal_probs() local
607 uint32_t low = prev_byte >> (8 - s->lzma.lc); in lzma_literal_probs()
/src/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c566 uint8_t prev_byte = 0; in run_delta_filter() local
577 prev_byte -= byte; in run_delta_filter()
578 rar->cstate.filtered_buf[dest_pos] = prev_byte; in run_delta_filter()