Home
last modified time | relevance | path

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

/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/mirror/
Ddex_cache.cc75 size_t num_types = kDexCacheTypeCacheSize; in InitializeDexCache() local
76 if (dex_file->NumTypeIds() < num_types) { in InitializeDexCache()
77 num_types = dex_file->NumTypeIds(); in InitializeDexCache()
126 for (size_t i = 0; i < num_types; ++i) { in InitializeDexCache()
166 num_types, in InitializeDexCache()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc480 uint32_t num_types; member
484 num_types(0), in DexCacheStats()
513 total->num_types += dex_file->NumTypeIds(); in PreloadDexCachesStatsTotal()
539 for (size_t j = 0, num_types = dex_cache->NumResolvedTypes(); j < num_types; ++j) { in PreloadDexCachesStatsFilled() local
542 filled->num_types++; in PreloadDexCachesStatsFilled()
629 total.num_types, before.num_types, after.num_types); in VMRuntime_preloadDexCaches()
/art/oatdump/
Doatdump.cc2317 size_t num_types = dex_cache->NumResolvedTypes(); in DumpObject() local
2318 if (num_types != 0u) { in DumpObject()
2319 os << "Types (size=" << num_types << "):\n"; in DumpObject()
2322 for (size_t i = 0; i < num_types; ++i) { in DumpObject()
2325 for (size_t j = i + 1; j != num_types; ++j) { in DumpObject()