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_test.cc | 96 EXPECT_OBJ_PTR_EQ(table.Lookup(descriptor_x, ComputeModifiedUtf8Hash(descriptor_x)), h_X.Get()); in TEST_F() 97 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 | class_table-inl.h | 42 DCHECK_EQ(ComputeModifiedUtf8Hash(pair.first), pair.second); in operator()
|
D | debugger.cc | 789 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
|
D | class_linker.cc | 1269 return ComputeModifiedUtf8Hash(name); in ComputeMethodHash() 2866 size_t hash = ComputeModifiedUtf8Hash(descriptor); in FinishCoreArrayClassSetup() 3218 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in FindClass() 4548 ComputeModifiedUtf8Hash(descriptor)); in CreatePrimitiveClass() 4595 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1); in CreateArrayClass() 4773 return LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor), class_loader); in LookupClass() 4843 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in LookupClasses() 5274 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in CreateProxyClass() 6409 table->UpdateClass(h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); in LinkClass() 9965 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in LookupResolvedType()
|
/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
D | type_lookup_table.cc | 49 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringView(str_id)); in Create() 64 const uint32_t hash = ComputeModifiedUtf8Hash(dex_file.GetStringView(str_id)); in Create() 126 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.cc | 160 uint32_t ComputeModifiedUtf8Hash(const char* chars) { in ComputeModifiedUtf8Hash() function 169 uint32_t ComputeModifiedUtf8Hash(std::string_view 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 | 86 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); in VMClassLoader_findLoadedClass()
|
D | dalvik_system_DexFile.cc | 491 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); in DexFile_defineClassNative()
|
/art/runtime/mirror/ |
D | class-inl.h | 873 CHECK_EQ(hash, ComputeModifiedUtf8Hash(GetDescriptor(&temp))); in DescriptorHash()
|
/art/runtime/oat/ |
D | oat_file.cc | 2344 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash); in FindClassDef()
|
/art/oatdump/ |
D | oatdump.cc | 753 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()
|