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

1 2 3

  /external/libcxx/test/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 21 assert(t1.hash_code() == t2.hash_code());
22 assert(t1.hash_code() != t3.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 21 assert(t1.hash_code() == t2.hash_code());
22 assert(t1.hash_code() != t3.hash_code());
  /external/libcxx/test/utilities/type.index/type.index.members/
hash_code.pass.cpp 14 // size_t hash_code() const;
23 assert(t1.hash_code() == ti.hash_code());
Android.mk 19 test_name := utilities/type.index/type.index.members/hash_code
20 test_src := hash_code.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
hash_code.pass.cpp 14 // size_t hash_code() const;
23 assert(t1.hash_code() == ti.hash_code());
  /external/libcxx/test/utilities/type.index/type.index.hash/
hash.pass.cpp 27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.hash/
hash.pass.cpp 27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /external/clang/test/PCH/
cxx-typeid.h 17 unsigned long hash_code() const;
  /art/runtime/
lock_word.h 96 static LockWord FromHashCode(uint32_t hash_code) {
97 CHECK_LE(hash_code, static_cast<uint32_t>(kHashMask));
98 return LockWord((hash_code << kHashShift) | (kStateHash << kStateShift));
monitor_pool.h 45 static Monitor* CreateMonitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
48 return new Monitor(self, owner, obj, hash_code);
50 return GetMonitorPool()->CreateMonitorInPool(self, owner, obj, hash_code);
110 Monitor* CreateMonitorInPool(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
monitor_pool.cc 92 int32_t hash_code)
110 Monitor* monitor = new(mon_uninitialized) Monitor(self, owner, obj, hash_code, id);
monitor.h 125 uint32_t hash_code) NO_THREAD_SAFETY_ANALYSIS;
131 explicit Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
133 explicit Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code,
151 static void Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
monitor.cc 83 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
91 hash_code_(hash_code),
105 Monitor::Monitor(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code,
114 hash_code_(hash_code),
653 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) {
657 Monitor* m = MonitorPool::CreateMonitor(self, owner, obj, hash_code);
664 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code
675 uint32_t hash_code) {
680 Inflate(self, self, obj.Get(), hash_code);
699 Inflate(self, owner, obj.Get(), hash_code);
    [all...]
instrumentation.cc 737 int32_t hash_code = method->IdentityHashCode(); local
738 deoptimized_methods_.insert(std::make_pair(hash_code, GcRoot<mirror::ArtMethod>(method)));
743 int32_t hash_code = method->IdentityHashCode(); local
744 auto range = deoptimized_methods_.equal_range(hash_code);
766 int32_t hash_code = method->IdentityHashCode(); local
767 auto range = deoptimized_methods_.equal_range(hash_code);
    [all...]
  /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
73 /// In order to obtain the hash_code for an object 'x':
76 /// llvm::hash_code code = hash_value(x);
78 class hash_code { class in namespace:llvm
82 /// \brief Default construct a hash_code.
84 hash_code() {} function in class:llvm::hash_code
87 hash_code(size_t value) : value(value) { function in class:llvm::hash_code
    [all...]
APFloat.h 426 friend hash_code hash_value(const APFloat &Arg);
580 hash_code hash_value(const APFloat &Arg);
StringRef.h 24 class hash_code;
556 /// \brief Compute a hash_code for a StringRef.
557 hash_code hash_value(StringRef S);
  /art/runtime/mirror/
string.cc 66 const int32_t hash_code = ComputeUtf16Hash(GetCharArray(), GetOffset(), GetLength()); local
67 SetHashCode(hash_code);
68 return hash_code;
78 int32_t hash_code) {
89 if (hash_code != 0) {
90 DCHECK_EQ(hash_code, ComputeUtf16Hash(utf16_data_in, utf16_length));
91 string->SetHashCode(hash_code);
string.h 81 int32_t hash_code = 0)
  /external/llvm/unittests/ADT/
HashingTest.cpp 25 void PrintTo(const hash_code &code, std::ostream *os) {
37 friend hash_code hash_value(const NonPOD &obj) {
129 hash_code hash_value(HashableDummy dummy) { return dummy.value; }
134 hash_code dummy_hash = hash_combine_range(&dummy, &dummy);
135 EXPECT_NE(hash_code(0), dummy_hash);
138 hash_code arr1_hash = hash_combine_range(begin(arr1), end(arr1));
152 hash_code arr2_hash = hash_combine_range(begin(arr2), end(arr2));
157 hash_code arr3_hash = hash_combine_range(begin(arr3), end(arr3));
162 hash_code arr4_hash = hash_combine_range(begin(arr4), end(arr4));
168 hash_code arr5_hash = hash_combine_range(begin(arr5), end(arr5))
    [all...]
  /art/runtime/jdwp/
object_registry.cc 215 int32_t hash_code = entry->identity_hash_code; local
216 for (auto it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end();
217 it != end && it->first == hash_code; ++it) {
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 32 class hash_code;
540 friend hash_code hash_value(const MachineOperand &MO);
725 hash_code hash_value(const MachineOperand &MO);
  /external/llvm/lib/IR/
LLVMContextImpl.h 58 friend hash_code hash_value(const KeyTy &Key) {
82 friend hash_code hash_value(const KeyTy &Key) {
  /external/f2fs-tools/fsck/
fsck.c 632 u32 hash_code; local
671 hash_code = f2fs_dentry_hash((const unsigned char *)name,
674 /* fix hash_code made by old buggy code */
675 if (le32_to_cpu(dentry[i].hash_code) != hash_code) {
676 dentry[i].hash_code = hash_code;
678 FIX_MSG("hash_code[%d] of %s", i, name);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
KeyFactory.java 59 private static final Signature HASH_CODE =
203 e = ce.begin_method(Constants.ACC_PUBLIC, HASH_CODE, null);
210 EmitUtils.hash_code(e, parameterTypes[i], hm, customizer);

Completed in 900 milliseconds

1 2 3