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

/art/tools/dexfuzz/src/dexfuzz/
H A DLog.java23 private static LogTag threshold = LogTag.ERROR; field in class:Log
37 threshold = tag;
41 return (threshold.ordinal() < LogTag.ERROR.ordinal());
65 if (tag.ordinal() >= threshold.ordinal()) {
/art/tools/dmtracedump/
H A Dtracedump.cc227 int32_t threshold; member in struct:Options
1417 /* check to make sure that the child method meets the threshold of the parent */
1422 return (percentage < gOptions.threshold) ? 0 : 1;
2528 " -t threshold - Threshold percentage for including nodes in "
2558 gOptions.threshold = atoi(optarg);
2571 gOptions.threshold = -1;
2578 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
2579 gOptions.threshold = 20;
/art/compiler/optimizing/
H A Dbounds_check_elimination.cc499 // Very large lengths are considered an anomaly. This is a threshold beyond which we don't
1365 size_t threshold = kThresholdForAddingDeoptimize + (base == nullptr ? 0 : 1); // extra test? local
1367 if (candidates.size() >= threshold &&

Completed in 310 milliseconds