HomeSort by relevance Sort by last modified time
    Searched defs:Threshold (Results 1 - 15 of 15) sorted by null

  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
CompLim.h 48 LVM_INT16 Threshold; /* Target threshold */
  /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/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/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/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...]
Reassociate.cpp 400 // Any weight W >= Threshold can be replaced with W - CM.
401 APInt Threshold = CM + Bitwidth;
402 assert(LHS.ult(Threshold) && RHS.ult(Threshold) && "Weights not reduced!");
405 while (LHS.uge(Threshold))
411 unsigned Threshold = CM + Bitwidth;
412 assert(LHS.getZExtValue() < Threshold && RHS.getZExtValue() < Threshold &&
415 while (Total >= Threshold)
    [all...]
  /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/clang/lib/CodeGen/
BackendUtil.cpp 278 unsigned Threshold = 225;
280 Threshold = 75;
282 Threshold = 25;
284 Threshold = 275;
285 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
  /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/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:__anon1428::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 97 Threshold
101 type(Threshold),
104 threshold(2) {
110 size_t threshold; // Maximum difference from desired size. 2 by default. member in class:base::nix::__anon3574::IconTheme::SubDirInfo
300 else if (value == "Threshold")
301 current_info->type = SubDirInfo::Threshold;
306 } else if (key == "Threshold") {
307 current_info->threshold = atoi(value.c_str());
336 if (size + info->threshold < info->size)
337 return info->size - size - info->threshold;
    [all...]
  /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/third_party/mesa/src/src/mesa/main/
mtypes.h 1070 GLfloat Threshold; /**< GL_EXT_point_parameters */
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 1070 GLfloat Threshold; /**< GL_EXT_point_parameters */
    [all...]

Completed in 3236 milliseconds