Searched defs: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/compiler/optimizing/
H A Dbounds_check_elimination.cc513 // Very large lengths are considered an anomaly. This is a threshold beyond which we don't
1263 size_t threshold = kThresholdForAddingDeoptimize + (base == nullptr ? 0 : 1); // extra test? local
1265 if (candidates.size() >= threshold &&
/art/tools/dmtracedump/
H A Dtracedump.cc227 int32_t threshold; member in struct:Options
1413 /* check to make sure that the child method meets the threshold of the parent */
1418 return (percentage < gOptions.threshold) ? 0 : 1;
2524 " -t threshold - Threshold percentage for including nodes in "
2554 gOptions.threshold = atoi(optarg);
2567 gOptions.threshold = -1;
2574 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) {
2575 gOptions.threshold = 20;

Completed in 139 milliseconds