HomeSort by relevance Sort by last modified time
    Searched defs:hash_code (Results 1 - 25 of 29) sorted by null

1 2

  /art/runtime/jdwp/
object_registry.cc 269 int32_t hash_code = entry->identity_hash_code; local
270 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end();
271 inner_it != end && inner_it->first == hash_code; ++inner_it) {
  /external/v8/src/inspector/
string-16.h 25 : m_impl(other.m_impl), hash_code(other.hash_code) {}
27 : m_impl(std::move(other.m_impl)), hash_code(other.hash_code) {}
41 hash_code = other.hash_code;
46 hash_code = other.hash_code;
76 std::swap(hash_code, other.hash_code);
112 mutable std::size_t hash_code = 0; member in class:v8_inspector::String16
    [all...]
  /art/runtime/mirror/
string.cc 64 int32_t hash_code = 0; local
66 hash_code = ComputeUtf16Hash(GetValueCompressed(), GetLength());
68 hash_code = ComputeUtf16Hash(GetValue(), GetLength());
70 SetHashCode(hash_code);
71 return hash_code;
object_test.cc 726 int32_t hash_code = mirror::Object::GenerateIdentityHashCode(); local
727 EXPECT_NE(hash_code, 0);
  /toolchain/binutils/binutils-2.25/gold/
stringpool.h 339 size_t hash_code; member in struct:gold::Stringpool_template::Hashkey
344 : string(NULL), length(0), hash_code(0)
350 : string(s), length(string_length(s)), hash_code(string_hash(s, length))
354 : string(s), length(len), hash_code(string_hash(s, len))
364 { return hk.hash_code; }
  /art/compiler/optimizing/
gvn.cc 87 size_t hash_code = HashCode(instruction); local
88 size_t index = BucketIndex(hash_code);
93 buckets_[index] = new (allocator_) Node(instruction, hash_code, buckets_[index]);
100 size_t hash_code = HashCode(instruction); local
101 size_t index = BucketIndex(hash_code);
104 if (node->GetHashCode() == hash_code) {
116 size_t hash_code = HashCode(instruction); local
117 size_t index = BucketIndex(hash_code);
203 Node(HInstruction* instruction, size_t hash_code, Node* next)
204 : instruction_(instruction), hash_code_(hash_code), next_(next) {
312 size_t hash_code = instruction->ComputeHashCode(); local
    [all...]
  /external/f2fs-tools/fsck/
fsck.c 677 u32 hash_code, ino; local
735 hash_code = f2fs_dentry_hash((const unsigned char *)name,
738 /* fix hash_code made by old buggy code */
739 if (le32_to_cpu(dentry[i].hash_code) != hash_code) {
740 dentry[i].hash_code = hash_code;
742 FIX_MSG("hash_code[%d] of %s", i, name);
  /external/llvm/include/llvm/ADT/
Hashing.h 17 // -- 'hash_code' class is an opaque type representing the hash code for some
21 // to assume much about the internals of a hash_code. In particular, each
23 // hash_code for a given input. Thus their values are not stable to save or
34 // a single hash_code for their object. They should only logically be used
67 /// In order to obtain the hash_code for an object 'x':
70 /// llvm::hash_code code = hash_value(x);
72 class hash_code { class in namespace:llvm
76 /// \brief Default construct a hash_code.
78 hash_code() = default;
81 hash_code(size_t value) : value(value) { function in class:llvm::hash_code
    [all...]
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 121 int32_t hash_code = HashCode(name_table->PlatformId(i), local
125 ConstructName(name_part, &(names[hash_code]), name_table->NameId(i));
  /external/ImageMagick/coders/
gif.c 583 *hash_code,
616 hash_code=(short *) AcquireQuantumMemory(MaxHashTable,sizeof(*hash_code));
620 if ((packet == (unsigned char *) NULL) || (hash_code == (short *) NULL) ||
626 if (hash_code != (short *) NULL)
627 hash_code=(short *) RelinquishMagickMemory(hash_code);
637 (void) ResetMagickMemory(hash_code,0,MaxHashTable*sizeof(*hash_code));
683 if (hash_code[k] > 0
577 *hash_code, local
    [all...]
  /external/webp/src/enc/
backward_references_enc.c 276 uint32_t hash_code; local
304 hash_code = GetPixPairHash64(tmp);
305 chain[pos] = hash_to_first_index[hash_code];
306 hash_to_first_index[hash_code] = pos++;
311 hash_code = GetPixPairHash64(argb + pos);
312 chain[pos] = hash_to_first_index[hash_code];
313 hash_to_first_index[hash_code] = pos++;
    [all...]
  /external/f2fs-tools/include/
f2fs_fs.h 697 __le32 hash_code; /* hash code of file name */ member in struct:f2fs_dir_entry
  /external/guice/lib/build/
cglib-3.1.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 
  /external/guice/extensions/persist/lib/
cglib-nodep-3.0.jar 
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.1_3/
cglib-nodep-2.1_3.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/2.2.2/
cglib-nodep-2.2.2.jar 
  /prebuilts/tools/common/m2/repository/cglib/cglib-nodep/3.1/
cglib-nodep-3.1.jar 
  /external/testng/lib-supplied/
guice-2.0.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0.jar 
  /external/junit-params/lib/
assertj-core-1.7.1.jar 
  /external/robolectric/v1/lib/test/
mockito-core-1.8.5.jar 
  /prebuilts/misc/common/robolectric/lib/
mockito-core-1.10.19.jar 

Completed in 657 milliseconds

1 2