Home
last modified time | relevance | path

Searched refs:num_types (Results 1 – 5 of 5) sorted by relevance

/art/runtime/mirror/
Ddex_cache.cc73 size_t num_types = kDexCacheTypeCacheSize; in InitializeDexCache() local
74 if (dex_file->NumTypeIds() < num_types) { in InitializeDexCache()
75 num_types = dex_file->NumTypeIds(); in InitializeDexCache()
124 for (size_t i = 0; i < num_types; ++i) { in InitializeDexCache()
164 num_types, in InitializeDexCache()
/art/test/626-const-class-linking/
Dclear_dex_cache_types.cc30 for (size_t i = 0, num_types = dex_cache->NumResolvedTypes(); i != num_types; ++i) { in Java_Main_nativeClearResolvedTypes() local
/art/runtime/native/
Ddalvik_system_VMRuntime.cc475 uint32_t num_types; member
479 num_types(0), in DexCacheStats()
508 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
534 for (size_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; ++j) { in PreloadDexCachesStatsFilled() local
537 filled->num_types++; in PreloadDexCachesStatsFilled()
624 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
/art/oatdump/
Doatdump.cc2313 size_t num_types = dex_cache->NumResolvedTypes(); in DumpObject() local
2314 if (num_types != 0u) { in DumpObject()
2315 os << "Types (size=" << num_types << "):\n"; in DumpObject()
2318 for (size_t i = 0; i < num_types; ++i) { in DumpObject()
2321 for (size_t j = i + 1; j != num_types; ++j) { in DumpObject()
/art/runtime/
Dclass_linker.cc1490 const size_t num_types = dex_cache->NumResolvedTypes(); in Update() local
1491 for (size_t j = 0; j != num_types; ++j) { in Update()
1975 for (int32_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; j++) { in VerifyAppImage() local
2066 for (int32_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; j++) { in AddImageSpace() local
5631 uint32_t num_types = types1->Size(); in HasSameSignatureWithDifferentClassLoaders() local
5632 if (UNLIKELY(num_types != types2->Size())) { in HasSameSignatureWithDifferentClassLoaders()
5638 for (uint32_t i = 0; i < num_types; ++i) { in HasSameSignatureWithDifferentClassLoaders()