Home
last modified time | relevance | path

Searched defs:SipHasher13 (Results 1 – 2 of 2) sorted by relevance

/build/make/tools/aconfig/aconfig_storage_file/src/
Dsip_hasher13.rs29 pub struct SipHasher13 { struct
30 k0: u64,
31 k1: u64,
32 length: usize, // how many bytes we've processed
33 state: State, // hash State
34 tail: u64, // unprocessed bytes le
35 ntail: usize, // how many bytes in tail are valid
115 impl SipHasher13 { impl
124 pub fn new_with_keys(key0: u64, key1: u64) -> SipHasher13 { in new_with_keys()
195 impl Hasher for SipHasher13 { implementation
/build/make/tools/aconfig/aconfig_storage_file/srcs/android/aconfig/storage/
DSipHasher13.java19 public class SipHasher13 { class