/aosp_15_r20/art/runtime/ |
H A 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()
|
H A D | class_table_test.cc | 94 EXPECT_OBJ_PTR_EQ(table.Lookup(descriptor_x, ComputeModifiedUtf8Hash(descriptor_x)), h_X.Get()); in TEST_F() 95 EXPECT_TRUE(table.Lookup("NOT_THERE", ComputeModifiedUtf8Hash("NOT_THERE")) == nullptr); in TEST_F()
|
H A D | debug_print.cc | 65 uint32_t hash = ComputeModifiedUtf8Hash(class_descriptor); in DescribeLoaders()
|
H A D | class_table-inl.h | 42 DCHECK_EQ(ComputeModifiedUtf8Hash(pair.first), pair.second); in operator()
|
H A D | debugger.cc | 789 : data(data_in), hash(ComputeModifiedUtf8Hash(data_in)), index(0) { in Entry()
|
H A D | class_linker.cc | 1283 return ComputeModifiedUtf8Hash(name); in ComputeMethodHash() 2885 size_t hash = ComputeModifiedUtf8Hash(descriptor); in FinishCoreArrayClassSetup() 3273 const size_t hash = ComputeModifiedUtf8Hash(sv_descriptor); in FindClass() 4603 ComputeModifiedUtf8Hash(descriptor)); in CreatePrimitiveClass() 4653 const size_t component_hash = ComputeModifiedUtf8Hash(component_descriptor); in CreateArrayClass() 4832 return LookupClass(self, descriptor, ComputeModifiedUtf8Hash(descriptor), class_loader); in LookupClass() 5293 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in CreateProxyClass() 6433 table->UpdateClass(h_new_class.Get(), ComputeModifiedUtf8Hash(descriptor)); in LinkClass() 9962 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in LookupResolvedType()
|
/aosp_15_r20/art/libdexfile/dex/ |
H A 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()
|
H A D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
H A D | utf.cc | 160 uint32_t ComputeModifiedUtf8Hash(const char* chars) { in ComputeModifiedUtf8Hash() function 169 uint32_t ComputeModifiedUtf8Hash(std::string_view chars) { in ComputeModifiedUtf8Hash() function
|
H A D | type_lookup_table_test.cc | 45 size_t hash = ComputeModifiedUtf8Hash(descriptor); in TEST_P()
|
H A D | utf_test.cc | 386 uint32_t hash = ComputeModifiedUtf8Hash(input); in TEST_F()
|
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/common_os/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/13/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/7/common_os/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/3/common_os/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/13/common_os/include/art/libdexfile/dex/ |
D | utf.h | 116 uint32_t ComputeModifiedUtf8Hash(const char* chars); 117 uint32_t ComputeModifiedUtf8Hash(std::string_view chars);
|
/aosp_15_r20/prebuilts/module_sdk/art/1/common_os/include/art/libdexfile/dex/ |
D | utf.h | 92 uint32_t ComputeModifiedUtf8Hash(const char* chars);
|
/aosp_15_r20/art/runtime/native/ |
H A D | java_lang_VMClassLoader.cc | 88 const size_t descriptor_hash = ComputeModifiedUtf8Hash(descriptor); in VMClassLoader_findLoadedClass()
|
H A D | dalvik_system_DexFile.cc | 491 const size_t hash = ComputeModifiedUtf8Hash(descriptor); in DexFile_defineClassNative()
|
/aosp_15_r20/art/runtime/mirror/ |
H A D | class-inl.h | 1007 CHECK_EQ(hash, ComputeModifiedUtf8Hash(GetDescriptor(&temp))); in DescriptorHash()
|
/aosp_15_r20/art/runtime/oat/ |
H A D | oat_file.cc | 2364 DCHECK_EQ(ComputeModifiedUtf8Hash(descriptor), hash); in FindClassDef()
|
/aosp_15_r20/art/oatdump/ |
H A D | oatdump.cc | 762 OatDexFile::FindClassDef(*dex_file, descriptor, ComputeModifiedUtf8Hash(descriptor)); in GetQuickOatCode()
|
/aosp_15_r20/out/soong/.intermediates/art/libdexfile/libdexfile/android_arm64_armv8-2a_cortex-a55_shared_apex31/obj/art/libdexfile/dex/ |
D | utf.sdump | 1476 "function_name" : "art::ComputeModifiedUtf8Hash", 1488 "function_name" : "art::ComputeModifiedUtf8Hash",
|