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

1 2

  /external/chromium/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 81 uint32_t hash_value,
93 hashed_dictionary_->FindBestMatch(hash_value,
101 target_hash->FindBestMatch(hash_value,
191 uint32_t hash_value = hasher.Hash(candidate_pos); local
195 hash_value,
209 hash_value = hasher.Hash(candidate_pos);
224 hash_value);
226 hash_value = hasher.UpdateHash(hash_value,
blockhash.cc 152 void BlockHash::AddBlock(uint32_t hash_value) {
176 const uint32_t hash_table_index = GetHashTableIndex(hash_value);
314 inline int BlockHash::FirstMatchingBlockInline(uint32_t hash_value,
316 return SkipNonMatchingBlocks(hash_table_[GetHashTableIndex(hash_value)],
320 int BlockHash::FirstMatchingBlock(uint32_t hash_value,
322 return FirstMatchingBlockInline(hash_value, block_ptr);
391 void BlockHash::FindBestMatch(uint32_t hash_value,
397 for (int block_number = FirstMatchingBlockInline(hash_value,
vcdiffengine.h 96 size_t EncodeCopyForBestMatch(uint32_t hash_value,
blockhash_test.cc 50 uint32_t hash_value,
52 return block_hash.FirstMatchingBlock(hash_value, block_ptr);
    [all...]
  /frameworks/compile/mclinker/lib/Support/
HandleToArea.cpp 23 bucket.hash_value = HashFunction()(
43 unsigned int hash_value = HashFunction()( local
49 if (bucket->hash_value == hash_value && bucket->handle->path() == pPath) {
61 unsigned int hash_value = HashFunction()(llvm::StringRef(pPath.native().c_str(), local
67 if (bucket->hash_value == hash_value) {
79 unsigned int hash_value = HashFunction()(llvm::StringRef(pPath.native().c_str(), local
85 if (bucket->hash_value == hash_value) {
    [all...]
  /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:__anon10778
    [all...]
StringRefTest.cpp 324 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef()));
325 EXPECT_EQ(hash_value(std::string()), hash_value(StringRef("")));
327 hash_code H = hash_value(S);
328 EXPECT_EQ(H, hash_value(StringRef("hello world")));
329 EXPECT_EQ(H, hash_value(StringRef(S)));
330 EXPECT_NE(H, hash_value(StringRef("hello worl")));
331 EXPECT_EQ(hash_value(std::string("hello worl")),
332 hash_value(StringRef("hello worl")))
    [all...]
  /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;
133 const unsigned hash_value = (*ht->hash)(key); local
134 const unsigned bucket = hash_value % ht->num_buckets;
148 const unsigned hash_value = (*ht->hash)(key); local
149 const unsigned bucket = hash_value % ht->num_buckets;
  /external/srtp/crypto/include/
sha1.h 106 sha1_core(const uint32_t M[16], uint32_t hash_value[5]);
  /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/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/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
symtab.h 35 unsigned int hash_value; variable
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
symtab.h 35 unsigned int hash_value; variable
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
symtab.h 35 unsigned int hash_value; variable
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
symtab.h 35 unsigned int hash_value; variable
  /external/chromium/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];
  /external/chromium/base/
file_path.h 400 inline size_t hash_value(const FilePath& f) {
401 return hash_value(f.value());
  /external/llvm/lib/VMCore/
LLVMContextImpl.h 55 friend hash_code hash_value(const KeyTy &Key) { function in struct:llvm::DenseMapAPIntKeyInfo::KeyTy
62 return static_cast<unsigned>(hash_value(Key));
80 friend hash_code hash_value(const KeyTy &Key) { function in struct:llvm::DenseMapAPFloatKeyInfo::KeyTy
91 return static_cast<unsigned>(hash_value(Key));
  /frameworks/compile/mclinker/include/mcld/Support/
HandleToArea.h 41 unsigned int hash_value; member in struct:mcld::HandleToArea::Bucket
  /external/llvm/include/llvm/ADT/
Hashing.h 27 // -- 'hash_value' is a function designed to be overloaded for each
35 // within the implementation of a 'hash_value' routine or similar context.
76 /// using llvm::hash_value;
77 /// llvm::hash_code code = hash_value(x);
100 /// \brief Allow a hash_code to be directly run through hash_value.
101 friend size_t hash_value(const hash_code &code) { return code.value; } function in class:llvm::hash_code
112 typename enable_if<is_integral_or_enum<T>, hash_code>::type hash_value(T value);
117 template <typename T> hash_code hash_value(const T *ptr);
121 hash_code hash_value(const std::pair<T, U> &arg);
125 hash_code hash_value(const std::basic_string<T> &arg)
738 hash_value(T value) { function in namespace:llvm
744 template <typename T> hash_code hash_value(const T *ptr) { function in namespace:llvm
752 hash_code hash_value(const std::pair<T, U> &arg) { function in namespace:llvm
759 hash_code hash_value(const std::basic_string<T> &arg) { function in namespace:llvm
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-hash.js 12 a.hash = "#hash_value";
13 shouldBe("a.href", "'file:///path/testurl.html#hash_value'");

Completed in 1718 milliseconds

1 2