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

1 2

  /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());
  /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());
  /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());
  /art/runtime/
intern_table.cc 62 uint32_t hash_code) {
64 for (auto it = table.find(hash_code), end = table.end(); it != end; ++it) {
74 uint32_t hash_code) {
76 table.insert(std::make_pair(hash_code, s));
81 uint32_t hash_code) {
83 for (auto it = table.find(hash_code), end = table.end(); it != end; ++it) {
134 uint32_t hash_code = s->GetHashCode(); local
142 mirror::String* strong = Lookup(strong_interns_, s, hash_code);
153 return Insert(strong_interns_, image, hash_code);
157 mirror::String* weak = Lookup(weak_interns_, s, hash_code);
    [all...]
intern_table.h 78 mirror::String* Lookup(Table& table, mirror::String* s, uint32_t hash_code)
80 mirror::String* Insert(Table& table, mirror::String* s, uint32_t hash_code);
81 void Remove(Table& table, const mirror::String* s, uint32_t hash_code);
  /external/clang/test/PCH/
cxx-typeid.h 17 unsigned long hash_code() const;
  /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
74 /// In order to obtain the hash_code for an object 'x':
77 /// llvm::hash_code code = hash_value(x);
79 class hash_code { class in namespace:llvm
83 /// \brief Default construct a hash_code.
85 hash_code() {} function in class:llvm::hash_code
88 hash_code(size_t value) : value(value) { function in class:llvm::hash_code
    [all...]
APFloat.h 424 friend hash_code hash_value(const APFloat &Arg);
577 hash_code hash_value(const APFloat &Arg);
StringRef.h 25 class hash_code;
544 /// \brief Compute a hash_code for a StringRef.
545 hash_code hash_value(StringRef S);
APInt.h 32 class hash_code;
564 /// \brief Overload to compute a hash_code for an APInt value.
565 friend hash_code hash_value(const APInt &Arg);
    [all...]
  /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...]
StringRefTest.cpp 327 hash_code H = hash_value(S);
  /art/runtime/mirror/
string.cc 118 int32_t hash_code) {
132 if (hash_code != 0) {
133 string->SetHashCode(hash_code);
string.h 69 int32_t hash_code = 0)
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 32 class hash_code;
524 friend hash_code hash_value(const MachineOperand &MO);
695 hash_code hash_value(const MachineOperand &MO);
  /external/llvm/lib/IR/
LLVMContextImpl.h 55 friend hash_code hash_value(const KeyTy &Key) {
79 friend hash_code hash_value(const KeyTy &Key) {
  /external/chromium_org/third_party/libwebp/enc/
backward_references.c 141 const uint64_t hash_code = GetPixPairHash64(argb); local
142 p->chain_[pos] = p->hash_to_first_index_[hash_code];
143 p->hash_to_first_index_[hash_code] = pos;
  /external/webp/src/enc/
backward_references.c 141 const uint64_t hash_code = GetPixPairHash64(argb); local
142 p->chain_[pos] = p->hash_to_first_index_[hash_code];
143 p->hash_to_first_index_[hash_code] = pos;
  /external/llvm/lib/Support/
StringRef.cpp 465 hash_code llvm::hash_value(StringRef S) {
APFloat.cpp     [all...]
APInt.cpp 663 hash_code llvm::hash_value(const APInt &Arg) {
    [all...]
  /external/sfntly/cpp/src/sample/chromium/
subsetter_impl.cc 119 int32_t hash_code = HashCode(name_table->PlatformId(i), local
123 ConstructName(name_part, &(names[hash_code]), name_table->NameId(i));
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp 213 hash_code llvm::hash_value(const MachineOperand &MO) {
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 50 friend hash_code hash_value(const TableGenStringKey &Value) {
    [all...]

Completed in 618 milliseconds

1 2