Home
last modified time | relevance | path

Searched defs:Hasher (Results 1 – 25 of 89) sorted by relevance

1234

/external/stg/
Dfingerprint.cc39 struct Hasher { struct
40 Hasher(Runtime& runtime, const Graph& graph, in Hasher() argument
47 HashValue operator()(const Special& x) { in operator ()()
58 HashValue operator()(const PointerReference& x) { in operator ()()
62 HashValue operator()(const PointerToMember& x) { in operator ()()
66 HashValue operator()(const Typedef& x) { in operator ()()
71 HashValue operator()(const Qualified& x) { in operator ()()
76 HashValue operator()(const Primitive& x) { in operator ()()
80 HashValue operator()(const Array& x) { in operator ()()
84 HashValue operator()(const BaseClass& x) { in operator ()()
[all …]
/external/rust/crates/syn/src/gen/
Dhash.rs13 H: Hasher, in hash()
23 H: Hasher, in hash()
34 H: Hasher, in hash()
48 H: Hasher, in hash()
60 H: Hasher, in hash()
72 H: Hasher, in hash()
89 H: Hasher, in hash()
100 H: Hasher, in hash()
112 H: Hasher, in hash()
124 H: Hasher, in hash()
[all …]
/external/cronet/base/types/
Dtoken_type.h54 struct Hasher { struct
55 using argument_type = TokenType;
56 using result_type = size_t;
57 result_type operator()(const argument_type& token) const { in operator()
Dstrong_alias.h133 struct Hasher { struct
134 using argument_type = StrongAlias;
135 using result_type = std::size_t;
136 result_type operator()(const argument_type& id) const { in operator()
/external/cronet/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/types/
Dstrong_alias.h128 struct Hasher { struct
129 using argument_type = StrongAlias;
130 using result_type = std::size_t;
131 result_type operator()(const argument_type& id) const { in operator()
/external/rust/crates/crc32fast/src/
Dlib.rs79 pub struct Hasher { struct
86 impl Hasher { argument
173 impl fmt::Debug for Hasher { implementation
179 impl Default for Hasher { implementation
185 impl hash::Hasher for Hasher { implementation
/external/pigweed/pw_tokenizer/rust/
Dpw_tokenizer_core.rs30 pub struct Hasher { struct
37 impl Hasher { argument
/external/perfetto/src/trace_processor/importers/common/
Dstack_profile_tracker.h42 struct Hasher { struct
43 size_t operator()(const NameInPackage& o) const { in operator()
80 struct Hasher { struct
81 size_t operator()(const FrameKey& o) const { in operator()
Dcreate_mapping_params.h55 struct Hasher { struct
56 size_t operator()(const CreateMappingParams& p) const { in operator()
Dmapping_tracker.h121 struct Hasher { struct
134 NameAndBuildId::Hasher>
Djit_cache.h94 struct Hasher { struct
95 size_t operator()(const FrameKey& k) const { in operator()
Dvirtual_memory_mapping.h117 struct Hasher { struct
124 base::FlatHashMap<FrameKey, FrameId, FrameKey::Hasher> interned_frames_;
/external/rust/crates/openssl/src/
Dhash.rs235 pub struct Hasher { struct
242 unsafe impl Sync for Hasher {} argument
243 unsafe impl Send for Hasher {} implementation
245 impl Hasher { impl
247 pub fn new(ty: MessageDigest) -> Result<Hasher, ErrorStack> { in new()
336 impl Write for Hasher { implementation
348 impl Clone for Hasher { implementation
349 fn clone(&self) -> Hasher { in clone()
366 impl Drop for Hasher { implementation
489 fn hash_recycle_test(h: &mut Hasher, hashtest: &(&str, &str)) { in hash_recycle_test()
/external/perfetto/src/trace_processor/importers/proto/
Dstack_profile_sequence_state.h69 struct Hasher { struct
70 size_t operator()(const OptionalUniquePidAndIid& o) const { in operator()
89 struct Hasher { struct
99 base::FlatHashMap<UniquePidAndIid, FrameId, UniquePidAndIid::Hasher>
Dprofile_packet_sequence_state.h105 struct Hasher { struct
106 size_t operator()(const SourceAllocationIndex& o) const { in operator()
136 struct Hasher { struct
139 base::Hasher::Combine(p.first, p.second.value)); in operator() argument
/external/tensorflow/tensorflow/core/graph/
Dtensor_id.h52 struct Hasher { struct
54 std::size_t operator()(const TensorId& x) const { in operator()
84 struct Hasher { struct
86 std::size_t operator()(const TensorId& x) const { in operator()
/external/rust/crates/twox-hash/src/
Dstd_support.rs23 type Hasher = XxHash64; typedef
53 type Hasher = XxHash32; typedef
83 type Hasher = Hash64; typedef
107 type Hasher = Hash128; typedef
/external/rust/crates/siphasher/src/
Dsip128.rs73 struct Hasher<S: Sip> { struct
74 k0: u64,
75 k1: u64,
76 length: usize, // how many bytes we've processed
77 state: State, // hash State
78 tail: u64, // unprocessed bytes le
79 ntail: usize, // how many bytes in tail are valid
80 _marker: PhantomData<S>,
333 impl<S: Sip> Hasher<S> { implementation
402 impl<S: Sip> Hasher<S> { implementation
[all …]
Dsip.rs57 struct Hasher<S: Sip> { struct
58 k0: u64,
59 k1: u64,
60 length: usize, // how many bytes we've processed
61 state: State, // hash State
62 tail: u64, // unprocessed bytes le
63 ntail: usize, // how many bytes in tail are valid
64 _marker: PhantomData<S>,
288 impl<S: Sip> Hasher<S> { implementation
468 impl<S: Sip> hash::Hasher for Hasher<S> { implementation
[all …]
/external/tensorflow/tensorflow/core/grappler/graph_analyzer/
Dgen_node.h104 struct Hasher { struct
105 size_t operator()(const Port& port) const noexcept { in operator()
108 std::hash<int32_t> hasher;
/external/tensorflow/tensorflow/core/lib/gtl/
Dint_type.h194 struct Hasher { struct
195 size_t operator()(const IntType& arg) const { in operator()
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/
DHashBuilder.h76 explicit HashBuilderBase(HasherT &Hasher) : Hasher(Hasher) {} in HashBuilderBase()
85 HasherT &Hasher; variable
99 explicit HashBuilderImpl(HasherT &Hasher) in HashBuilderImpl()
/external/perfetto/src/trace_processor/importers/perf/
Dperf_session.h88 struct Hasher { struct
89 size_t operator()(const BuildIdMapKey& k) const { in operator()
/external/grpc-grpc/src/cpp/server/load_reporter/
Dload_data_store.h102 struct Hasher { struct
103 void hash_combine(size_t* seed, const std::string& k) const { in hash_combine()
108 size_t operator()(const LoadRecordKey& k) const { in operator()
/external/rust/crates/grpcio-sys/grpc/src/cpp/server/load_reporter/
Dload_data_store.h102 struct Hasher { struct
103 void hash_combine(size_t* seed, const std::string& k) const { in hash_combine()
108 size_t operator()(const LoadRecordKey& k) const { in operator()

1234