Home
last modified time | relevance | path

Searched refs:match_byte (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/xz/src/liblzma/rangecoder/
H A Drange_decoder.h343 #define rc_matched_literal(probs_base_var, match_byte) \ argument
345 uint32_t t_match_byte = (match_byte); \
911 [match_byte] "+&r"(t_match_byte), \
/freebsd/contrib/llvm-project/libc/src/__support/HashTable/sse2/
H A Dbitmask_impl.inc36 LIBC_INLINE IteratableBitMask match_byte(uint8_t byte) const {
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c617 uint32_t match_byte; in lzma_literal() local
628 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()
632 match_bit = match_byte & offset; in lzma_literal()
633 match_byte <<= 1; in lzma_literal()
/freebsd/usr.bin/gzip/
H A Dunlz.c244 lz_rd_decode_matched(struct lz_range_decoder *rd, int *bm, int match_byte) in lz_rd_decode_matched() argument
249 const unsigned match_bit = (match_byte >> i) & 1; in lz_rd_decode_matched()
/freebsd/contrib/llvm-project/libc/src/__support/HashTable/generic/
H A Dbitmask_impl.inc62 LIBC_INLINE IteratableBitMask match_byte(uint8_t byte) const {
/freebsd/contrib/llvm-project/libc/src/__support/HashTable/
H A Dtable.h156 IteratableBitMask masks = ctrls.match_byte(secondary); in find()