HomeSort by relevance Sort by last modified time
    Searched refs:hash_value (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/components/variations/
metrics_util_unittest.cc 15 uint32 hash_value; member in struct:metrics::__anon11260
28 EXPECT_EQ(known_hashes[i].hash_value, HashName(known_hashes[i].name));
  /external/chromium_org/sdch/open-vcdiff/src/
blockhash.h 180 void AddOneIndexHash(int index, uint32_t hash_value) {
182 AddBlock(hash_value);
212 // beginning at that position (hash_value). It attempts to find a matching
245 // uint32_t hash_value =
247 // bh1.FindBestMatch(hash_value,
252 // bh2.FindBestMatch(hash_value,
262 // hash_value is passed as a separate parameter from target_candidate_start,
294 void FindBestMatch(uint32_t hash_value,
344 uint32_t GetHashTableIndex(uint32_t hash_value) const {
345 return hash_value & hash_table_mask_
    [all...]
vcdiffengine.cc 78 uint32_t hash_value,
90 hashed_dictionary_->FindBestMatch(hash_value,
98 target_hash->FindBestMatch(hash_value,
188 uint32_t hash_value = hasher.Hash(candidate_pos); local
192 hash_value,
206 hash_value = hasher.Hash(candidate_pos);
221 hash_value);
223 hash_value = hasher.UpdateHash(hash_value,
blockhash.cc 153 void BlockHash::AddBlock(uint32_t hash_value) {
177 const uint32_t hash_table_index = GetHashTableIndex(hash_value);
315 inline int BlockHash::FirstMatchingBlockInline(uint32_t hash_value,
317 return SkipNonMatchingBlocks(hash_table_[GetHashTableIndex(hash_value)],
321 int BlockHash::FirstMatchingBlock(uint32_t hash_value,
323 return FirstMatchingBlockInline(hash_value, block_ptr);
392 void BlockHash::FindBestMatch(uint32_t hash_value,
398 for (int block_number = FirstMatchingBlockInline(hash_value,
vcdiffengine.h 96 size_t EncodeCopyForBestMatch(uint32_t hash_value,
  /external/llvm/unittests/ADT/
HashingTest.cpp 37 friend hash_code hash_value(const NonPOD &obj) { function in struct:llvm::NonPOD
67 EXPECT_EQ(hash_value(42), hash_value(x));
68 EXPECT_EQ(hash_value(42), hash_value(TE_Foo));
69 EXPECT_NE(hash_value(42), hash_value(y));
70 EXPECT_NE(hash_value(42), hash_value(TE_Bar));
71 EXPECT_NE(hash_value(42), hash_value(p))
129 hash_code hash_value(HashableDummy dummy) { return dummy.value; } function in namespace:__anon30211
    [all...]
StringRefTest.cpp 352 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef()));
353 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef("")));
355 hash_code H = hash_value(S);
356 EXPECT_EQ(H, hash_value(StringRef("hello world")));
357 EXPECT_EQ(H, hash_value(StringRef(S)));
358 EXPECT_NE(H, hash_value(StringRef("hello worl")));
359 EXPECT_EQ(hash_value(std::string("hello worl")),
360 hash_value(StringRef("hello worl")))
    [all...]
  /external/chromium_org/net/dns/
dns_hosts.h 37 inline size_t hash_value(const net::DnsHostsKey& key) {
38 return hash_value(key.first) + key.second;
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
sha1.h 106 sha1_core(const uint32_t M[16], uint32_t hash_value[5]);
  /external/srtp/crypto/include/
sha1.h 106 sha1_core(const uint32_t M[16], uint32_t hash_value[5]);
  /external/chromium_org/third_party/libsrtp/srtp/crypto/test/
sha1_driver.c 100 uint32_t hash_value[5]; local
112 sha1_final(&ctx, hash_value);
113 if (0 == memcmp(test_case->hash, hash_value, 20)) {
118 octet_string_hex_string((const uint8_t *)hash_value, 20));
126 octet_string_hex_string((const uint8_t *)hash_value, 20));
  /external/chromium_org/tools/gn/
label.h 114 inline size_t hash_value(const Label& v) {
115 return ((hash_value(v.dir().value()) * 131 +
116 hash_value(v.name())) * 131 +
117 hash_value(v.toolchain_dir().value())) * 131 +
118 hash_value(v.toolchain_name());
source_dir.h 110 inline size_t hash_value(const SourceDir& v) {
111 return hash_value(v.value());
source_file.h 90 inline size_t hash_value(const SourceFile& v) {
91 return hash_value(v.value());
  /external/srtp/crypto/test/
sha1_driver.c 100 uint32_t hash_value[5]; local
112 sha1_final(&ctx, hash_value);
113 if (0 == memcmp(test_case->hash, hash_value, 20)) {
118 octet_string_hex_string((uint8_t *)hash_value, 20));
126 octet_string_hex_string((uint8_t *)hash_value, 20));
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
hash_table.c 114 const unsigned hash_value = (*ht->hash)(key); local
115 const unsigned bucket = hash_value % ht->num_buckets;
140 const unsigned hash_value = (*ht->hash)(key); local
141 const unsigned bucket = hash_value % ht->num_buckets;
155 const unsigned hash_value = (*ht->hash)(key); local
156 const unsigned bucket = hash_value % ht->num_buckets;
  /external/mesa3d/src/mesa/program/
hash_table.c 114 const unsigned hash_value = (*ht->hash)(key); local
115 const unsigned bucket = hash_value % ht->num_buckets;
140 const unsigned hash_value = (*ht->hash)(key); local
141 const unsigned bucket = hash_value % ht->num_buckets;
155 const unsigned hash_value = (*ht->hash)(key); local
156 const unsigned bucket = hash_value % ht->num_buckets;
  /external/chromium_org/third_party/libsrtp/srtp/crypto/hash/
hmac.c 172 uint32_t hash_value[5]; local
200 /* the result is returned in the array hash_value[] */
201 sha1_final(&state->ctx, hash_value);
203 /* copy hash_value to *result */
205 result[i] = ((uint8_t *)hash_value)[i];
208 octet_string_hex_string((uint8_t *)hash_value, tag_len));
sha1.c 77 sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) {
82 sha1_final(&ctx, hash_value);
99 sha1_core(const uint32_t M[16], uint32_t hash_value[5]) {
109 /* copy hash_value into H0, H1, H2, H3, H4 */
110 H0 = hash_value[0];
111 H1 = hash_value[1];
112 H2 = hash_value[2];
113 H3 = hash_value[3];
114 H4 = hash_value[4];
176 hash_value[0] = H0 + A
    [all...]
  /external/srtp/crypto/hash/
hmac.c 172 uint32_t hash_value[5]; local
200 /* the result is returned in the array hash_value[] */
201 sha1_final(&state->ctx, hash_value);
203 /* copy hash_value to *result */
205 result[i] = ((uint8_t *)hash_value)[i];
208 octet_string_hex_string((uint8_t *)hash_value, tag_len));
sha1.c 77 sha1(const uint8_t *msg, int octets_in_msg, uint32_t hash_value[5]) {
82 sha1_final(&ctx, hash_value);
99 sha1_core(const uint32_t M[16], uint32_t hash_value[5]) {
109 /* copy hash_value into H0, H1, H2, H3, H4 */
110 H0 = hash_value[0];
111 H1 = hash_value[1];
112 H2 = hash_value[2];
113 H3 = hash_value[3];
114 H4 = hash_value[4];
176 hash_value[0] = H0 + A
    [all...]
  /external/libsepol/include/sepol/policydb/
hashtab.h 37 unsigned int (*hash_value) (struct hashtab_val * h, hashtab_key_t key); /* hash function */ member in struct:hashtab_val
49 extern hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
  /external/libsepol/src/
hashtab.c 35 hashtab_t hashtab_create(unsigned int (*hash_value) (hashtab_t h,
53 p->hash_value = hash_value;
74 hvalue = h->hash_value(h, key);
113 hvalue = h->hash_value(h, key);
146 hvalue = h->hash_value(h, key);
187 hvalue = h->hash_value(h, key);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
symtab.h 34 unsigned int hash_value; variable
  /external/chromium_org/crypto/
symmetric_key_win.cc 271 std::vector<BYTE> hash_value(hash_size);
274 ok = CryptGetHashParam(safe_hash, HP_HASHVAL, &hash_value[0], &size, 0);
278 memcpy(output_buf, &hash_value[0], hash_size);
289 ok = CryptHashData(safe_hash, &hash_value[0], hash_size, 0);
294 ok = CryptGetHashParam(safe_hash, HP_HASHVAL, &hash_value[0], &size, 0);
299 output_buf[i] ^= hash_value[i];

Completed in 292 milliseconds

1 2 3