Home
last modified time | relevance | path

Searched refs:threshold (Results 1 – 7 of 7) 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/
Dboot-image-profile-generate.sh137 --method-threshold=0 \
138 --class-threshold=0
/art/profman/
Dboot_image_profile.cc180 uint32_t threshold = MaybeIsClassClean(type_ref) in IncludeClassInProfile() local
183 return IncludeItemInProfile(max_aggregation_count, threshold, metadata, options); in IncludeClassInProfile()
Dprofman.cc367 uint32_t threshold; in ParseArgs() local
368 ParseUintValue("special-package", values[1], &threshold, 0u, 100u); in ParseArgs()
369 boot_image_options_.special_packages_thresholds.Overwrite(values[0], threshold); in ParseArgs()
/art/tools/dmtracedump/
Dtracedump.cc227 int32_t threshold; member
1422 return (percentage < gOptions.threshold) ? 0 : 1; in checkThreshold()
2558 gOptions.threshold = atoi(optarg); in parseOptions()
2571 gOptions.threshold = -1; in main()
2578 if (gOptions.threshold < 0 || 100 <= gOptions.threshold) { in main()
2579 gOptions.threshold = 20; in main()
/art/runtime/jit/
Djit.h158 static uint32_t RoundUpThreshold(uint32_t threshold);
/art/compiler/optimizing/
Dbounds_check_elimination.cc1468 size_t threshold = kThresholdForAddingDeoptimize + (base == nullptr ? 0 : 1); // extra test? in AddComparesWithDeoptimization() local
1470 if (candidates.size() >= threshold && in AddComparesWithDeoptimization()