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

1 2

  /external/llvm/include/llvm/Analysis/
InlineCost.h 46 /// Objects of this type also provide the adjusted threshold for inlining
49 /// threshold for this cost metric.
59 /// \brief The adjusted threshold against which this cost was computed.
60 const int Threshold;
63 InlineCost(int Cost, int Threshold) : Cost(Cost), Threshold(Threshold) {}
66 static InlineCost get(int Cost, int Threshold) {
69 return InlineCost(Cost, Threshold);
80 return Cost < Threshold;
    [all...]
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 44 SimpleInliner(int Threshold)
45 : Inliner(ID, Threshold, /*InsertLifetime*/ true), ICA(0) {
71 Pass *llvm::createFunctionInliningPass(int Threshold) {
72 return new SimpleInliner(Threshold);
PassManagerBuilder.cpp 434 unsigned Threshold) {
436 Builder->Inliner = createFunctionInliningPass(Threshold);
Inliner.cpp 46 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
50 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
51 cl::desc("Threshold for inlining functions with inline hint"));
53 // Threshold to use when optsize is specified (and there is no -inline-limit).
59 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
61 InlineLimit : Threshold),
256 int thres = InlineThreshold; // -inline-threshold or else selected by
259 // If -inline-threshold is not given, listen to the optsize attribute when it
260 // would decrease the threshold.
269 // Listen to the inlinehint attribute when it would increase the threshold
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 32 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
42 "-unroll-threshold loop size is reached."));
62 /// A magic value for use with the Threshold parameter to indicate
67 // Threshold to use when optsize is specified (and there is no
68 // explicit -unroll-threshold).
113 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) {
114 return new LoopUnroll(Threshold, Count, AllowPartial);
148 // Determine the current unrolling threshold. While this is normally set
150 // function is marked as optimize-for-size, and the unroll threshold was
152 unsigned Threshold = CurrentThreshold
    [all...]
Scalar.cpp 147 int Threshold) {
148 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);
50 /// This method returns the value specified by the -inline-threshold value,
55 /// Calculate the inline threshold for given Caller. This threshold is lower
56 /// if the caller is marked with OptimizeForSize and -inline-threshold is not
64 /// returned is greater than the current inline threshold, the call site is
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 79 /// that path, and remove this threshold.
80 static int const Threshold = 20;
84 SmallVector<Use*, Threshold> Worklist;
85 SmallSet<Use*, Threshold> Visited;
92 if (Count++ >= Threshold)
  /external/llvm/include/llvm/Transforms/
Scalar.h 83 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
141 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/lib/Target/X86/
X86PadShortFunction.cpp 52 , Threshold(4), TM(0), TII(0) {}
71 const unsigned int Threshold;
121 if (Cycles < Threshold) {
133 addPadding(MBB, ReturnLoc, Threshold - Cycles);
147 if (Cycles >= Threshold)
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 65 unsigned Threshold);
Scalar.h 94 int Threshold);
  /external/llvm/lib/Analysis/IPA/
InlineCost.cpp 54 int Threshold;
138 Function &Callee, int Threshold)
139 : TD(TD), TTI(TTI), F(Callee), Threshold(Threshold), Cost(0),
151 int getThreshold() { return Threshold; }
777 // out. Pretend to inline the function, with a custom threshold.
807 /// aborts early if the threshold has been exceeded or an impossible to inline
845 // Check if we've past the threshold so we don't spin in huge basic
847 if (Cost > (Threshold + VectorBonus))
895 /// viable. It computes the cost and adjusts the threshold based on numerou
    [all...]
  /external/chromium_org/remoting/host/
audio_silence_detector_unittest.cc 36 // Check that silence threshold is between 0.5 and 2 seconds.
58 TEST(AudioSilenceDetectorTest, Threshold) {
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 62 /// Decision threshold. A node gets the output value 0 if the weighted sum of
63 /// its inputs falls in the open interval (-Threshold;Threshold).
64 static const BlockFrequency Threshold = 2;
92 /// SumLinkWeights - Cached sum of the weights of all links + ThresHold.
105 // true when the RHS saturates. Note that SumLinkWeights includes Threshold.
113 SumLinkWeights = Threshold;
171 if (SumN >= SumP + Threshold)
173 else if (SumP >= SumN + Threshold)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
points.c 164 if (ctx->Point.Threshold == params[0])
167 ctx->Point.Threshold = params[0];
250 ctx->Point.Threshold = 1.0;
  /external/mesa3d/src/mesa/main/
points.c 164 if (ctx->Point.Threshold == params[0])
167 ctx->Point.Threshold = params[0];
250 ctx->Point.Threshold = 1.0;
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 159 uint32_t Threshold = 1U << (NumBits-1);
162 while (Val >= Threshold) {
175 uint32_t Threshold = 1U << (NumBits-1);
178 while (Val >= Threshold) {
  /external/clang/lib/CodeGen/
BackendUtil.cpp 278 unsigned Threshold = 225;
280 Threshold = 75;
282 Threshold = 25;
284 Threshold = 275;
285 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft
  /external/llvm/tools/opt/
opt.cpp 438 unsigned Threshold = 225;
440 Threshold = 75;
442 Threshold = 25;
444 Threshold = 275;
445 Builder.Inliner = createFunctionInliningPass(Threshold);
  /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:__anon4141::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/chromium_org/base/nix/
mime_util_xdg.cc 98 Threshold
102 type(Threshold),
105 threshold(2) {
111 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:base::nix::__anon6242::IconTheme::SubDirInfo
301 else if (value == "Threshold")
302 current_info->type = SubDirInfo::Threshold;
307 } else if (key == "Threshold") {
308 current_info->threshold = atoi(value.c_str());
337 if (size + info->threshold < info->size)
338 return info->size - size - info->threshold;
    [all...]

Completed in 454 milliseconds

1 2