HomeSort by relevance Sort by last modified time
    Searched refs:kDexCacheMethodCacheSize (Results 1 - 8 of 8) sorted by null

  /art/tools/cpp-define-generator/
constant_dexcache.def 30 art::mirror::DexCache::kDexCacheMethodCacheSize - 1)
32 art::LeastSignificantBit(art::mirror::DexCache::kDexCacheMethodCacheSize))
  /art/runtime/
art_method-inl.h 115 uint32_t slot_idx = method_index % mirror::DexCache::kDexCacheMethodCacheSize;
136 uint32_t slot_idx = method_index % mirror::DexCache::kDexCacheMethodCacheSize;
386 uint32_t slot_idx = method_index % mirror::DexCache::kDexCacheMethodCacheSize;
class_linker.cc     [all...]
  /art/runtime/mirror/
dex_cache.h 160 static constexpr size_t kDexCacheMethodCacheSize = 1024;
161 static_assert(IsPowerOfTwo(kDexCacheMethodCacheSize),
183 return kDexCacheMethodCacheSize;
dex_cache.cc 85 size_t num_methods = kDexCacheMethodCacheSize;
dex_cache-inl.h 213 const uint32_t slot_idx = method_idx % kDexCacheMethodCacheSize;
  /art/runtime/generated/
asm_support_gen.h 82 DEFINE_CHECK_EQ(static_cast<int32_t>(METHOD_DEX_CACHE_SIZE_MINUS_ONE), (static_cast<int32_t>(art::mirror::DexCache::kDexCacheMethodCacheSize - 1)))
84 DEFINE_CHECK_EQ(static_cast<int32_t>(METHOD_DEX_CACHE_HASH_BITS), (static_cast<int32_t>(art::LeastSignificantBit(art::mirror::DexCache::kDexCacheMethodCacheSize))))
  /art/runtime/utils/
dex_cache_arrays_layout-inl.h 99 size_t cache_size = mirror::DexCache::kDexCacheMethodCacheSize;

Completed in 80 milliseconds