Home
last modified time | relevance | path

Searched refs:hash_type (Results 1 – 3 of 3) sorted by relevance

/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_chained_origin_depot.cpp25 using hash_type = u32; typedef
32 bool eq(hash_type hash, const args_type &args) const;
36 static hash_type hash(const args_type &args);
40 void store(u32 id, const args_type &args, hash_type other_hash);
63 bool ChainedOriginDepotNode::eq(hash_type hash, const args_type &args) const { in eq()
80 ChainedOriginDepotNode::hash_type ChainedOriginDepotNode::hash( in hash()
109 hash_type other_hash) { in store()
H A Dsanitizer_stackdepot.cpp25 using hash_type = u64; typedef
26 hash_type stack_hash;
33 bool eq(hash_type hash, const args_type &args) const { in eq()
37 static hash_type hash(const args_type &args) { in hash()
46 void store(u32 id, const args_type &args, hash_type hash);
191 void StackDepotNode::store(u32 id, const args_type &args, hash_type hash) { in store()
H A Dsanitizer_stackdepotbase.h38 typedef typename Node::hash_type hash_type; typedef
66 u32 find(u32 s, args_type args, hash_type hash) const;
80 u32 s, args_type args, hash_type hash) const { in find()
121 hash_type h = Node::hash(args); in Put()