Home
last modified time | relevance | path

Searched refs:hash_fn (Results 1 – 6 of 6) sorted by relevance

/aosp12/system/apex/apexd/
H A Dapexd_verity.cpp72 auto hash_fn = HashTreeBuilder::HashFunction(verity_data.hash_algorithm); in GenerateHashTree() local
73 if (hash_fn == nullptr) { in GenerateHashTree()
78 auto builder = std::make_unique<HashTreeBuilder>(block_size, hash_fn); in GenerateHashTree()
135 auto hash_fn = HashTreeBuilder::HashFunction(verity_data.hash_algorithm); in CalculateRootDigest() local
136 if (hash_fn == nullptr) { in CalculateRootDigest()
140 auto builder = std::make_unique<HashTreeBuilder>(block_size, hash_fn); in CalculateRootDigest()
/aosp12/system/bt/vendor_libs/test_vendor_lib/types/bluetooth/
H A Duuid.h134 std::hash<std::string> hash_fn;
135 … return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()), uuid_bytes.size()));
/aosp12/system/bt/types/bluetooth/
H A Duuid.h137 std::hash<std::string> hash_fn;
138 return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()),
/aosp12/system/bt/gd/hci/
H A Duuid.h148 std::hash<std::string> hash_fn;
149 … return hash_fn(std::string(reinterpret_cast<const char*>(uuid_bytes.data()), uuid_bytes.size()));
/aosp12/system/update_engine/payload_generator/
H A Dblock_mapping.cc36 std::hash<string> hash_fn; in HashValue() local
37 return hash_fn(string(blob.begin(), blob.end())); in HashValue()
/aosp12/packages/modules/StatsD/statsd/src/packages/
H A DUidMap.h175 std::hash<std::string> hash_fn; in operator() local
176 return hash_fn(std::to_string(p.first) + p.second); in operator()