Home
last modified time | relevance | path

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

/external/rust/crates/libz-sys/src/zlib-ng/arch/x86/
Dcompare258_avx.c29 uint32_t match_byte = (uint32_t)__builtin_ctz(~mask); /* Invert bits so identical = 0 */ in compare256_unaligned_avx2_static() local
30 return len + match_byte; in compare256_unaligned_avx2_static()
40 uint32_t match_byte = (uint32_t)__builtin_ctz(~mask); in compare256_unaligned_avx2_static() local
41 return len + match_byte; in compare256_unaligned_avx2_static()
/external/rust/crates/libz-sys/src/zlib-ng/
Dcompare258.c117 uint32_t match_byte = __builtin_ctz(diff) / 8; in compare256_unaligned_32_static() local
118 return len + match_byte; in compare256_unaligned_32_static()
157 uint64_t match_byte = __builtin_ctzll(diff) / 8; in compare256_unaligned_64_static() local
158 return len + match_byte; in compare256_unaligned_64_static()
/external/rust/crates/hashbrown/src/raw/
Dsse2.rs75 pub fn match_byte(self, byte: u8) -> BitMask { in match_byte() method
94 self.match_byte(EMPTY) in match_empty()
Dgeneric.rs104 pub fn match_byte(self, byte: u8) -> BitMask { in match_byte() method
Dmod.rs2187 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()
/external/xz-embedded/linux/lib/xz/
Dxz_dec_lzma2.c585 uint32_t match_byte; in lzma_literal() local
596 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()
/external/toybox/toys/pending/
Dxzcat.c1727 uint32_t match_byte; in lzma_literal() local
1738 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()
/external/rust/crates/hashbrown/
DCHANGELOG.md279 - Fixed subtraction overflow in generic::Group::match_byte. (#28)