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.cc173 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()
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()
Ddebug_print.cc65 uint32_t hash = ComputeModifiedUtf8Hash(class_descriptor); in DescribeLoaders()
Ddebugger.cc794 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
Dclass_linker.cc2734 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 …]
Doat_file.cc2028 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.cc440 const size_t hash(ComputeModifiedUtf8Hash(descriptor.c_str())); in DexFile_defineClassNative()
/art/runtime/verifier/
Dverifier_deps.cc1249 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in VerifyInternalClasses()
/art/oatdump/
Doatdump.cc718 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()