Home
last modified time | relevance | path

Searched refs:ComputeModifiedUtf8Hash (Results 1 – 16 of 16) sorted by relevance

/art/runtime/
Dimtable-inl.h52 *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()
Dclass_table_test.cc96 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()
Ddebug_print.cc65 uint32_t hash = ComputeModifiedUtf8Hash(class_descriptor); in DescribeLoaders()
Dclass_table-inl.h42 DCHECK_EQ(ComputeModifiedUtf8Hash(pair.first), pair.second); in operator()
Ddebugger.cc789 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
Dclass_linker.cc1269 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/
Dutf.h116 uint32_t ComputeModifiedUtf8Hash(const char* chars);
117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
Dtype_lookup_table.cc49 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()
Dtype_lookup_table_test.cc45 size_t hash = ComputeModifiedUtf8Hash(descriptor); in TEST_P()
Dutf.cc160 uint32_t ComputeModifiedUtf8Hash(const char* chars) { in ComputeModifiedUtf8Hash() function
169 uint32_t ComputeModifiedUtf8Hash(std::string_view chars) { in ComputeModifiedUtf8Hash() function
Dutf_test.cc386 uint32_t hash = ComputeModifiedUtf8Hash(input); in TEST_F()
/art/runtime/native/
Djava_lang_VMClassLoader.cc86 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); in VMClassLoader_findLoadedClass()
Ddalvik_system_DexFile.cc491 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); in DexFile_defineClassNative()
/art/runtime/mirror/
Dclass-inl.h873 CHECK_EQ(hash, ComputeModifiedUtf8Hash(GetDescriptor(&temp))); in DescriptorHash()
/art/runtime/oat/
Doat_file.cc2344 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash); in FindClassDef()
/art/oatdump/
Doatdump.cc753 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()