HomeSort by relevance Sort by last modified time
    Searched refs:Threshold (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/include/llvm/Analysis/
InlineCost.h 47 /// Objects of this type also provide the adjusted threshold for inlining
50 /// threshold for this cost metric.
60 /// \brief The adjusted threshold against which this cost was computed.
61 const int Threshold;
64 InlineCost(int Cost, int Threshold)
65 : Cost(Cost), Threshold(Threshold) {}
68 static InlineCost get(int Cost, int Threshold) {
71 return InlineCost(Cost, Threshold);
82 return Cost < Threshold;
    [all...]
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 37 SimpleInliner(int Threshold) : Inliner(ID, Threshold,
58 Pass *llvm::createFunctionInliningPass(int Threshold) {
59 return new SimpleInliner(Threshold);
PassManagerBuilder.cpp 339 unsigned Threshold) {
341 Builder->Inliner = createFunctionInliningPass(Threshold);
Inliner.cpp 45 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
49 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
50 cl::desc("Threshold for inlining functions with inline hint"));
52 // Threshold to use when optsize is specified (and there is no -inline-limit).
58 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
60 InlineLimit : Threshold),
213 // Listen to inlinehint when it would increase the threshold.
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 31 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
41 "-unroll-threshold loop size is reached."));
61 /// A magic value for use with the Threshold parameter to indicate
66 // Threshold to use when optsize is specified (and there is no
67 // explicit -unroll-threshold).
110 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) {
111 return new LoopUnroll(Threshold, Count, AllowPartial);
142 // Determine the current unrolling threshold. While this is normally set
144 // function is marked as optimize-for-size, and the unroll threshold was
146 unsigned Threshold = CurrentThreshold
    [all...]
Scalar.cpp 151 int Threshold) {
152 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold));
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 48 LVM_INT16 Threshold; /* Target threshold */
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 34 explicit Inliner(char &ID, int Threshold, bool InsertLifetime);
49 /// This method returns the value specified by the -inline-threshold value,
54 /// Calculate the inline threshold for given Caller. This threshold is lower
55 /// if the caller is marked with OptimizeForSize and -inline-threshold is not
63 /// returned is greater than the current inline threshold, the call site is
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 74 /// that path, and remove this threshold.
75 static int const Threshold = 20;
79 SmallVector<Use*, Threshold> Worklist;
80 SmallSet<Use*, Threshold> Visited;
87 if (Count++ >= Threshold)
InlineCost.cpp 50 int Threshold;
126 CallAnalyzer(const TargetData *TD, Function &Callee, int Threshold)
127 : TD(TD), F(Callee), Threshold(Threshold), Cost(0),
139 int getThreshold() { return Threshold; }
697 // out. Pretend to inline the function, with a custom threshold.
722 /// aborts early if the threshold has been exceeded or an impossible to inline
753 // Check if we've past the threshold so we don't spin in huge basic
755 if (!AlwaysInline && Cost > (Threshold + VectorBonus))
803 /// viable. It computes the cost and adjusts the threshold based on numerou
    [all...]
  /external/llvm/include/llvm/Transforms/
Scalar.h 76 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
133 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1, int AllowPartial = -1);
IPO.h 88 /// The -inline-threshold command line option takes precedence over the
89 /// threshold given here.
91 Pass *createFunctionInliningPass(int Threshold);
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 65 unsigned Threshold);
Scalar.h 94 int Threshold);
  /hardware/ti/wlan/wl1271/stad/src/Data_link/
TrafficMonitor.h 137 int Threshold;
TrafficMonitorAPI.h 91 int Threshold;
TrafficMonitor.c 139 /* Create the base threshold timer that will serve all the down thresholds*/
305 this reset element will be with the same threshold but opposite in direction
338 TrafficAlertElement->Threshold = TrafficAlertRegParm->Threshold;
507 have to check the that threshold is bigger or smaller according to the direction
533 3.The threshold is bigger or smaller according to the direction
699 DESCRIPTION: Evaluate if alert element as crossed his threshold
702 If the threshold is passed in the req time interval or less. then
715 RETURN: If threshold crossed TI_TRUE else False
728 if (AlertElement->EventCounter > AlertElement->Threshold)
    [all...]
Ctrl.c 188 /* Initialize traffic intensity threshold parameters */
546 /* save last non-protection mode fragmentation threshold */
549 /* set fragmentation threshold to max (disable) */
    [all...]
  /external/clang/lib/CodeGen/
BackendUtil.cpp 187 unsigned Threshold = 225;
189 Threshold = 75;
191 Threshold = 25;
193 Threshold = 275;
194 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 158 uint32_t Threshold = 1U << (NumBits-1);
161 while (Val >= Threshold) {
173 uint64_t Threshold = 1U << (NumBits-1);
176 while (Val >= Threshold) {
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft
  /external/chromium/base/
mime_util_xdg.cc 97 Threshold
101 type(Threshold),
104 threshold(2) {
110 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:__anon2722::IconTheme::SubDirInfo
303 else if (value == "Threshold")
304 current_info->type = SubDirInfo::Threshold;
309 } else if (key == "Threshold") {
310 current_info->threshold = atoi(value.c_str());
337 if (size >= info->size - info->threshold &&
338 size <= info->size + info->threshold) {
    [all...]
  /external/llvm/tools/opt/
opt.cpp 421 unsigned Threshold = 225;
423 Threshold = 275;
424 Builder.Inliner = createFunctionInliningPass(Threshold);
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
PowerMgr.c 224 register threshold in the traffic monitor.
239 tmRegParam.Threshold = pPowerMgrInitParams->BetEnableThreshold;
247 tmRegParam.Threshold = pPowerMgrInitParams->BetDisableThreshold;
281 /* Active threshold */
284 tmRegParam.Threshold = pPowerMgr->autoModeActiveTH;
288 /* Doze threshold */
290 tmRegParam.Threshold = pPowerMgr->autoModeDozeTH;
398 if in auto mode then need to refer to the threshold cross indication from the traffic monitor,
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.cpp 224 unsigned Threshold = (DestReg == ARM::SP) ? 3 : 2;
225 if (NumMIs > Threshold) {

Completed in 297 milliseconds

1 2