HomeSort by relevance Sort by last modified time
    Searched refs:Threshold (Results 1 - 25 of 47) 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) : Cost(Cost), Threshold(Threshold) {}
67 static InlineCost get(int Cost, int Threshold) {
70 return InlineCost(Cost, Threshold);
81 return Cost < Threshold;
    [all...]
  /external/llvm/tools/llvm-cov/
CoverageFilters.h 54 /// \brief Matches numbers that pass a certain threshold.
61 T Threshold;
63 StatisticThresholdFilter(Operation Op, T Threshold)
64 : Op(Op), Threshold(Threshold) {}
67 /// or greater than the certain threshold.
71 return Value < Threshold;
73 return Value > Threshold;
84 RegionCoverageFilter(Operation Op, double Threshold)
85 : StatisticThresholdFilter(Op, Threshold) {}
    [all...]
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 47 SimpleInliner(int Threshold)
48 : Inliner(ID, Threshold, /*InsertLifetime*/ true), ICA(nullptr) {
87 Pass *llvm::createFunctionInliningPass(int Threshold) {
88 return new SimpleInliner(Threshold);
Inliner.cpp 51 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
55 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
56 cl::desc("Threshold for inlining functions with inline hint"));
58 // We instroduce this threshold to help performance of instrumentation based
62 ColdThreshold("inlinecold-threshold", cl::Hidden, cl::init(225),
63 cl::desc("Threshold for inlining functions with cold attribute"));
65 // Threshold to use when optsize is specified (and there is no -inline-limit).
71 Inliner::Inliner(char &ID, int Threshold, bool InsertLifetime)
73 InlineLimit : Threshold),
278 int Threshold = InlineThreshold; // -inline-threshold or else selected b
    [all...]
  /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/include/llvm/Transforms/
Scalar.h 103 FunctionPass *createScalarReplAggregatesPass(signed Threshold = -1,
183 Pass *createLoopUnrollPass(int Threshold = -1, int Count = -1,
242 // internal BB duplication default threshold.
244 FunctionPass *createJumpThreadingPass(int Threshold = -1);
252 int Threshold = -1, std::function<bool(const Function &)> Ftor = nullptr);
IPO.h 97 /// The Threshold can be passed directly, or asked to be computed from the
100 /// The -inline-threshold command line option takes precedence over the
101 /// threshold given here.
103 Pass *createFunctionInliningPass(int Threshold);
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 89 /// SumLinkWeights - Cached sum of the weights of all links + ThresHold.
102 // true when the RHS saturates. Note that SumLinkWeights includes Threshold.
108 void clear(const BlockFrequency &Threshold) {
110 SumLinkWeights = Threshold;
148 bool update(const Node nodes[], const BlockFrequency &Threshold) {
168 if (SumN >= SumP + Threshold)
170 else if (SumP >= SumN + Threshold)
209 nodes[n].clear(Threshold);
226 /// \brief Set the threshold for a given entry frequency.
228 /// Set the threshold relative to \c Entry. Since the threshold is used as
    [all...]
SpillPlacement.h 65 /// Decision threshold. A node gets the output value 0 if the weighted sum of
66 /// its inputs falls in the open interval (-Threshold;Threshold).
67 BlockFrequency Threshold;
  /external/llvm/lib/Target/X86/
X86PadShortFunction.cpp 54 , Threshold(4), STI(nullptr), TII(nullptr) {}
73 const unsigned int Threshold;
122 if (Cycles < Threshold) {
134 addPadding(MBB, ReturnLoc, Threshold - Cycles);
148 if (Cycles >= Threshold)
  /external/llvm/include/llvm-c/Transforms/
PassManagerBuilder.h 64 unsigned Threshold);
Scalar.h 115 int Threshold);
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 65 value Threshold, value PMB) {
66 LLVMPassManagerBuilderSetOptLevel(PMBuilder_val(PMB), Int_val(Threshold));
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 42 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden,
43 cl::desc("The baseline cost threshold for loop unrolling"));
46 "unroll-percent-dynamic-cost-saved-threshold", cl::init(20), cl::Hidden,
48 "unrolling to allow unrolling up to the max threshold."));
54 "the '-unroll-perecent-dynamic-cost-saved-threshold' flag)."));
69 "-unroll-threshold loop size is reached."));
76 PragmaUnrollThreshold("pragma-unroll-threshold", cl::init(16 * 1024), cl::Hidden,
106 /// A magic value for use with the Threshold parameter to indicate
111 // Threshold to use when optsize is specified (and there is no
112 // explicit -unroll-threshold)
    [all...]
Scalar.cpp 198 int Threshold) {
199 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold));
SimplifyCFGPass.cpp 47 UserBonusInstThreshold("bonus-inst-threshold", cl::Hidden, cl::init(1),
235 llvm::createCFGSimplificationPass(int Threshold,
237 return new CFGSimplifyPass(Threshold, Ftor);
  /external/llvm/lib/Analysis/
CaptureTracking.cpp 210 /// that path, and remove this threshold.
211 static int const Threshold = 20;
215 SmallVector<const Use *, Threshold> Worklist;
216 SmallSet<const Use *, Threshold> Visited;
222 if (Count++ >= Threshold)
284 if (Count++ >= Threshold)
InlineCost.cpp 62 int Threshold;
165 Function &Callee, int Threshold, CallSite CSArg)
166 : TTI(TTI), ACT(ACT), F(Callee), CandidateCS(CSArg), Threshold(Threshold),
179 int getThreshold() { return Threshold; }
833 // out. Pretend to inline the function, with a custom threshold.
837 // threshold to get the bonus we want to apply, but don't go below zero.
    [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 33 UP.Threshold = 300; // Twice the default.
55 // threshold. This will give SROA a better chance to eliminate these
60 UP.Threshold = 800;
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetTransformInfo.cpp 126 // threshold. This partially unrolls small loops which are often
130 UP.PartialThreshold = UP.Threshold / 4;
  /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 153 uint32_t Threshold = 1U << (NumBits-1);
156 while (Val >= Threshold) {
169 uint32_t Threshold = 1U << (NumBits-1);
172 while (Val >= Threshold) {
  /external/opencv3/modules/imgproc/test/ocl/
test_imgproc.cpp 97 void Near(double threshold = 0.0, bool relative = false)
100 OCL_EXPECT_MATS_NEAR_RELATIVE(dst, threshold);
102 OCL_EXPECT_MATS_NEAR(dst, threshold);
318 void Near2(double threshold = 0.0, bool relative = false)
321 OCL_EXPECT_MATS_NEAR_RELATIVE(dst2, threshold);
323 OCL_EXPECT_MATS_NEAR(dst2, threshold);
354 //////////////////////////////////////// threshold //////////////////////////////////////////////
356 struct Threshold :
369 OCL_TEST_P(Threshold, Mat)
378 OCL_OFF(cv::threshold(src_roi, dst_roi, thresh, maxVal, thresholdType))
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft

Completed in 761 milliseconds

1 2