Home
last modified time | relevance | path

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

/art/profman/
Dprofile_assistant.cc53 uint32_t number_of_methods = info.GetNumberOfMethods(); in ProcessProfilesInternal() local
94 (kMinNewMethodsPercentChangeForCompilation * number_of_methods) / 100, in ProcessProfilesInternal()
100 if (((info.GetNumberOfMethods() - number_of_methods) < min_change_in_methods_for_compilation) && in ProcessProfilesInternal()
Dprofile_assistant_test.cc87 uint16_t number_of_methods, in SetupProfile() argument
93 for (uint16_t i = start_method_index; i < start_method_index + number_of_methods; i++) { in SetupProfile()
/art/libprofile/profile/
Dprofile_compilation_info.cc1809 uint16_t number_of_methods = max_method * method_percentage / 100; in GenerateTestProfile() local
1824 for (uint16_t m = 0; m < number_of_methods; m++) { in GenerateTestProfile()
1826 if (m < (number_of_methods / kFavorSplit)) { in GenerateTestProfile()
1882 uint32_t number_of_methods = dex_file->NumMethodIds(); in GenerateTestProfile() local
1883 uint32_t methods_required_in_profile = (number_of_methods * method_percentage) / 100; in GenerateTestProfile()
1885 number_of_methods)) { in GenerateTestProfile()
/art/runtime/jit/
Djit_code_cache.h120 void Initialize(uint32_t number_of_methods) REQUIRES(!Locks::jit_lock_);
Djit_code_cache.cc1877 void ZygoteMap::Initialize(uint32_t number_of_methods) { in Initialize() argument
1881 size_t capacity = RoundUpToPowerOfTwo(number_of_methods * 100 / 80); in Initialize()