Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 3 of 3) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/
DLog.java23 private static LogTag threshold = LogTag.ERROR; field in Log
37 threshold = tag; in setLoggingLevel()
41 return (threshold.ordinal() < LogTag.ERROR.ordinal()); in likelyToLog()
65 if (tag.ordinal() >= threshold.ordinal()) { in log()
/art/tools/dmtracedump/
Dtracedump.cc227 int32_t threshold; member
1418 return (percentage < gOptions.threshold) ? 0 : 1; in checkThreshold()
2554 gOptions.threshold = atoi(optarg); in parseOptions()
2567 gOptions.threshold = -1; in main()
2574 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) { in main()
2575 gOptions.threshold = 20; in main()
/art/compiler/optimizing/
Dbounds_check_elimination.cc1263 size_t threshold = kThresholdForAddingDeoptimize + (base == nullptr ? 0 : 1); // extra test? in AddComparesWithDeoptimization() local
1265 if (candidates.size() >= threshold && in AddComparesWithDeoptimization()