Searched refs:match_byte (Results 1 – 8 of 8) sorted by relevance
29 uint32_t match_byte = (uint32_t)__builtin_ctz(~mask); /* Invert bits so identical = 0 */ in compare256_unaligned_avx2_static() local30 return len + match_byte; in compare256_unaligned_avx2_static()40 uint32_t match_byte = (uint32_t)__builtin_ctz(~mask); in compare256_unaligned_avx2_static() local41 return len + match_byte; in compare256_unaligned_avx2_static()
117 uint32_t match_byte = __builtin_ctz(diff) / 8; in compare256_unaligned_32_static() local118 return len + match_byte; in compare256_unaligned_32_static()157 uint64_t match_byte = __builtin_ctzll(diff) / 8; in compare256_unaligned_64_static() local158 return len + match_byte; in compare256_unaligned_64_static()
75 pub fn match_byte(self, byte: u8) -> BitMask { in match_byte() method94 self.match_byte(EMPTY) in match_empty()
104 pub fn match_byte(self, byte: u8) -> BitMask { in match_byte() method
2187 let bitmask = group.match_byte(h2_hash).into_iter(); in new()2228 self.bitmask = self.group.match_byte(self.h2_hash).into_iter(); in next()
585 uint32_t match_byte; in lzma_literal() local596 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()600 match_bit = match_byte & offset; in lzma_literal()601 match_byte <<= 1; in lzma_literal()
1727 uint32_t match_byte; in lzma_literal() local1738 match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; in lzma_literal()1742 match_bit = match_byte & offset; in lzma_literal()1743 match_byte <<= 1; in lzma_literal()
279 - Fixed subtraction overflow in generic::Group::match_byte. (#28)