Home | History | Annotate | Download | only in dex2oat

Lines Matching defs:threshold

172   UsageError("  --huge-method-max=<method-instruction-count>: the threshold size for a huge");
177 UsageError(" --huge-method-max=<method-instruction-count>: threshold size for a huge");
182 UsageError(" --large-method-max=<method-instruction-count>: threshold size for a large");
187 UsageError(" --small-method-max=<method-instruction-count>: threshold size for a small");
192 UsageError(" --tiny-method-max=<method-instruction-count>: threshold size for a tiny");
197 UsageError(" --num-dex-methods=<method-count>: threshold size for a small dex file for");
968 const char* threshold = option.substr(strlen("--huge-method-max=")).data();
969 if (!ParseInt(threshold, &huge_method_threshold)) {
970 Usage("Failed to parse --huge-method-max '%s' as an integer", threshold);
976 const char* threshold = option.substr(strlen("--large-method-max=")).data();
977 if (!ParseInt(threshold, &large_method_threshold)) {
978 Usage("Failed to parse --large-method-max '%s' as an integer", threshold);
984 const char* threshold = option.substr(strlen("--small-method-max=")).data();
985 if (!ParseInt(threshold, &small_method_threshold)) {
986 Usage("Failed to parse --small-method-max '%s' as an integer", threshold);
992 const char* threshold = option.substr(strlen("--tiny-method-max=")).data();
993 if (!ParseInt(threshold, &tiny_method_threshold)) {
994 Usage("Failed to parse --tiny-method-max '%s' as an integer", threshold);
1000 const char* threshold = option.substr(strlen("--num-dex-methods=")).data();
1001 if (!ParseInt(threshold, &num_dex_methods_threshold)) {
1002 Usage("Failed to parse --num-dex-methods '%s' as an integer", threshold);
1033 } else if (option.starts_with("--top-k-profile-threshold=")) {
1376 VLOG(compiler) << "Below method threshold, compiling anyways";