Home
last modified time | relevance | path

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

/third_party/rust/crates/regex/src/
H A Dcompile.rs1143 const FNV_PRIME: u64 = 1_099_511_628_211; in hash() consts
1145 h = (h ^ (suffix.from_inst as u64)).wrapping_mul(FNV_PRIME); in hash()
1146 h = (h ^ (suffix.start as u64)).wrapping_mul(FNV_PRIME); in hash()
1147 h = (h ^ (suffix.end as u64)).wrapping_mul(FNV_PRIME); in hash()

Completed in 3 milliseconds