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.cc91 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()
Dclass_table-inl.h35 return ComputeModifiedUtf8Hash(slot.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator()
39 DCHECK_EQ(ComputeModifiedUtf8Hash(pair.first), pair.second); in operator()
Dclass_table.cc124 DescriptorHashPair pair(descriptor, ComputeModifiedUtf8Hash(descriptor)); in Remove()
193 return ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp)); in HashDescriptor()
Ddebug_print.cc65 uint32_t hash = ComputeModifiedUtf8Hash(class_descriptor); in DescribeLoaders()
Dclass_linker.cc1147 virtual_method_hashes[i] = ComputeModifiedUtf8Hash(name); in InitializeObjectVirtualMethodHashes()
2520 size_t hash = ComputeModifiedUtf8Hash(descriptor); in FinishCoreArrayClassSetup()
2849 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in FindClass()
4184 ComputeModifiedUtf8Hash(descriptor)); in CreatePrimitiveClass()
4230 const size_t component_hash = ComputeModifiedUtf8Hash(descriptor + 1); in CreateArrayClass()
4414 return LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor), class_loader); in LookupClass()
4484 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in LookupClasses()
4939 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in CreateProxyClass()
6079 table->UpdateClass(descriptor, h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); in LinkClass()
6408 uint32_t hash = ComputeModifiedUtf8Hash(name); in Add()
[all …]
Ddebugger.cc794 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
Doat_file.cc2250 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash); in FindClassDef()
/art/libdexfile/dex/
Dtype_lookup_table.cc53 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()
Dtype_lookup_table_test.cc45 size_t hash = ComputeModifiedUtf8Hash(descriptor); in TEST_P()
Dutf.h92 uint32_t ComputeModifiedUtf8Hash(const char* chars);
Dutf.cc194 uint32_t ComputeModifiedUtf8Hash(const char* chars) { in ComputeModifiedUtf8Hash() function
Dutf_test.cc386 uint32_t hash = ComputeModifiedUtf8Hash(input); in TEST_F()
/art/runtime/native/
Djava_lang_VMClassLoader.cc82 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor.c_str()); in VMClassLoader_findLoadedClass()
Ddalvik_system_DexFile.cc418 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); in DexFile_defineClassNative()
/art/oatdump/
Doatdump.cc733 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()