Home
last modified time | relevance | path

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

/aosp12/art/profman/
H A Dprofile_assistant.cc51 uint32_t number_of_methods = info.GetNumberOfMethods(); in ProcessProfilesInternal() local
85 (options.GetMinNewMethodsPercentChangeForCompilation() * number_of_methods) / 100, in ProcessProfilesInternal()
91 if (((info.GetNumberOfMethods() - number_of_methods) < min_change_in_methods_for_compilation) && in ProcessProfilesInternal()
H A Dprofile_assistant_test.cc65 uint16_t number_of_methods, in SetupProfile() argument
71 for (uint16_t i = start_method_index; i < start_method_index + number_of_methods; i++) { in SetupProfile()
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.cc2141 uint16_t number_of_methods = max_methods * method_percentage / 100; in GenerateTestProfile() local
2157 for (uint16_t m = 0; m < number_of_methods; m++) { in GenerateTestProfile()
2159 if (m < (number_of_methods / kFavorSplit)) { in GenerateTestProfile()
2215 uint32_t number_of_methods = dex_file->NumMethodIds(); in GenerateTestProfile() local
2216 uint32_t methods_required_in_profile = (number_of_methods * method_percentage) / 100; in GenerateTestProfile()
2218 number_of_methods)) { in GenerateTestProfile()
/aosp12/art/runtime/jit/
H A Djit_code_cache.h122 void Initialize(uint32_t number_of_methods) REQUIRES(!Locks::jit_lock_);
H A Djit_code_cache.cc1863 void ZygoteMap::Initialize(uint32_t number_of_methods) { in Initialize() argument
1867 size_t capacity = RoundUpToPowerOfTwo(number_of_methods * 100 / 80); in Initialize()