Searched refs:ComputeModifiedUtf8Hash (Results 1 – 16 of 16) sorted by relevance
/art/runtime/ |
D | imtable-inl.h | 52 *class_hash = ComputeModifiedUtf8Hash(dex_file->GetMethodDeclaringClassDescriptor(method_id)); in GetImtHashComponents() 55 *name_hash = ComputeModifiedUtf8Hash(dex_file->GetMethodName(method_id)); in GetImtHashComponents() 60 uint32_t tmp = ComputeModifiedUtf8Hash( in GetImtHashComponents() 70 tmp = 31 * tmp + ComputeModifiedUtf8Hash( in GetImtHashComponents()
|
D | class_table.cc | 173 DescriptorHashPair pair(descriptor, ComputeModifiedUtf8Hash(descriptor)); in Remove() 190 return ComputeModifiedUtf8Hash(slot.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator ()() 220 return ComputeModifiedUtf8Hash(pair.first); in operator ()() 300 return ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp)); in HashDescriptor()
|
D | class_table_test.cc | 91 EXPECT_OBJ_PTR_EQ(table.Lookup(descriptor_x, ComputeModifiedUtf8Hash(descriptor_x)), h_X.Get()); in TEST_F() 92 EXPECT_TRUE(table.Lookup("NOT_THERE", ComputeModifiedUtf8Hash("NOT_THERE")) == nullptr); in TEST_F()
|
D | debug_print.cc | 65 uint32_t hash = ComputeModifiedUtf8Hash(class_descriptor); in DescribeLoaders()
|
D | debugger.cc | 794 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
|
D | class_linker.cc | 2734 size_t hash = ComputeModifiedUtf8Hash(descriptor); in FinishCoreArrayClassSetup() 3052 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in FindClass() 4344 ComputeModifiedUtf8Hash(descriptor)); in CreatePrimitiveClass() 4390 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1); in CreateArrayClass() 4574 return LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor), class_loader); in LookupClass() 4644 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in LookupClasses() 5064 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in CreateProxyClass() 6202 table->UpdateClass(descriptor, h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); in LinkClass() 6454 uint32_t hash = ComputeModifiedUtf8Hash(name); in Add() 6468 uint32_t hash = ComputeModifiedUtf8Hash(name); in FindAndRemove() [all …]
|
D | oat_file.cc | 2028 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash); in FindClassDef()
|
/art/libdexfile/dex/ |
D | type_lookup_table.cc | 53 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringData(str_id)); in Create() 68 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringData(str_id)); in Create() 130 if (((ComputeModifiedUtf8Hash(first_checked_str) ^ hash) & mask) != 0u) { in Lookup()
|
D | type_lookup_table_test.cc | 45 size_t hash = ComputeModifiedUtf8Hash(descriptor); in TEST_P()
|
D | utf.h | 92 uint32_t ComputeModifiedUtf8Hash(const char* chars);
|
D | utf.cc | 194 uint32_t ComputeModifiedUtf8Hash(const char* chars) { in ComputeModifiedUtf8Hash() function
|
D | utf_test.cc | 386 uint32_t hash = ComputeModifiedUtf8Hash(input); in TEST_F()
|
/art/runtime/native/ |
D | java_lang_VMClassLoader.cc | 82 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); in VMClassLoader_findLoadedClass()
|
D | dalvik_system_DexFile.cc | 440 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); in DexFile_defineClassNative()
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 1249 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in VerifyInternalClasses()
|
/art/oatdump/ |
D | oatdump.cc | 718 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()
|