Home
last modified time | relevance | path

Searched refs:hash_2pow (Results 1 - 2 of 2) sorted by relevance

/third_party/rust/crates/aho-corasick/src/packed/
H A Drabinkarp.rs51 hash_2pow: usize,
74 let mut hash_2pow = 1usize; in new() variables
76 hash_2pow = hash_2pow.wrapping_shl(1); in new()
82 hash_2pow, in new()
181 prev.wrapping_sub((old_byte as usize).wrapping_mul(self.hash_2pow)) in update_hash()
/third_party/rust/crates/memchr/src/memmem/
H A Drabinkarp.rs112 hash_2pow: u32,
119 let mut nh = NeedleHash { hash: Hash::new(), hash_2pow: 1 };
126 nh.hash_2pow = nh.hash_2pow.wrapping_shl(1);
134 let mut nh = NeedleHash { hash: Hash::new(), hash_2pow: 1 };
141 nh.hash_2pow = nh.hash_2pow.wrapping_shl(1);
199 let factor = nhash.hash_2pow; in del()

Completed in 2 milliseconds