HomeSort by relevance Sort by last modified time
    Searched refs:Threshold (Results 26 - 50 of 77) sorted by null

12 3 4

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/StatusCodeDataTypeId/
StatusCodeDataTypeId.h 161 EFI_EXP_DATA Threshold;
211 EFI_EXP_DATA Threshold;
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
StatusCodeDataTypeId.h 263 /// the threshold value indicating the minimum or maximum voltage that is considered
264 /// an error. If the voltage is less then the threshold, the error indicates that the
265 /// voltage fell below the minimum acceptable value. If the voltage is greater then the threshold,
282 /// The voltage threshold.
284 EFI_EXP_BASE10_DATA Threshold;
373 /// This structure provides the temperature at the time of error. It also provides the threshold value
390 /// The thermal threshold.
392 EFI_EXP_BASE10_DATA Threshold;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
Scalar.cpp 150 int Threshold) {
151 unwrap(PM)->add(createScalarReplAggregatesPass(Threshold));
LoopUnswitch.cpp 22 // smaller than a threshold.
63 Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"),
450 if (Metrics.NumInsts > Threshold ||
451 Metrics.NumBlocks * 5 > Threshold ||
    [all...]
  /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/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamWriter.h 135 uint32_t Threshold = 1U << (NumBits-1);
138 while (Val >= Threshold) {
150 uint64_t Threshold = 1U << (NumBits-1);
153 while (Val >= Threshold) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c     [all...]
TftpServer.h 203 UINT32 Threshold; ///< Size of window when ACK count becomes logrithmic
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueReportStatusCodeLib.h 61 EFI_EXP_BASE10_DATA Threshold;
91 EFI_EXP_BASE10_DATA Threshold;
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 35 UP.Threshold = 300; // Twice the default.
57 // threshold. This will give SROA a better chance to eliminate these
62 UP.Threshold = 800;
  /external/llvm/lib/Transforms/Scalar/
SimplifyCFGPass.cpp 49 UserBonusInstThreshold("bonus-inst-threshold", cl::Hidden, cl::init(1),
242 llvm::createCFGSimplificationPass(int Threshold,
244 return new CFGSimplifyPass(Threshold, std::move(Ftor));
Scalar.cpp 207 int Threshold) {
Reassociate.cpp 336 // Any weight W >= Threshold can be replaced with W - CM.
337 APInt Threshold = CM + Bitwidth;
338 assert(LHS.ult(Threshold) && RHS.ult(Threshold) && "Weights not reduced!");
341 while (LHS.uge(Threshold))
347 unsigned Threshold = CM + Bitwidth;
348 assert(LHS.getZExtValue() < Threshold && RHS.getZExtValue() < Threshold &&
351 while (Total >= Threshold)
    [all...]
JumpThreading.cpp 52 BBDuplicateThreshold("jump-threading-threshold",
58 "jump-threading-implication-search-threshold",
111 FunctionPass *llvm::createJumpThreadingPass(int Threshold) { return new JumpThreading(Threshold); }
259 /// thread across it. Stop scanning the block when passing the threshold.
261 unsigned Threshold) {
279 // Bump the threshold up so the early exit from the loop doesn't skip the
281 Threshold += Bonus;
288 // Stop scanning the block if we've reached the threshold.
289 if (Size > Threshold)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
PassManagerBuilder.cpp 314 unsigned Threshold) {
316 Builder->Inliner = createFunctionInliningPass(Threshold);
Inliner.cpp 40 InlineLimit("inline-threshold", cl::Hidden, cl::init(225), cl::ZeroOrMore,
44 HintThreshold("inlinehint-threshold", cl::Hidden, cl::init(325),
45 cl::desc("Threshold for inlining functions with inline hint"));
47 // Threshold to use when optsize is specified (and there is no -inline-limit).
53 Inliner::Inliner(char &ID, int Threshold)
55 InlineLimit : Threshold) {}
207 // Listen to inlinehint when it would increase the threshold.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PlatformMemTest/
PlatformMemTest.h 131 UINT32 Threshold;
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 25 ATTRIBUTE MS-Link-Utilization-Threshold 14 integer Microsoft
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 416 unsigned Threshold = 225;
418 Threshold = 275;
419 Builder.Inliner = createFunctionInliningPass(Threshold);
  /external/llvm/lib/Target/ARM/
ThumbRegisterInfo.cpp 289 unsigned Threshold = (DestReg == ARM::SP) ? 3 : 2;
292 if (RequiredInstrs > Threshold) {
  /external/llvm/lib/Transforms/IPO/
PassManagerBuilder.cpp 841 unsigned Threshold) {
843 Builder->Inliner = createFunctionInliningPass(Threshold);
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_points.c 262 if (vert->pointSize >= ctx->Point.Threshold) {
266 GLfloat dsize = vert->pointSize / ctx->Point.Threshold;
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tris.c 460 if (psz[0] >= ctx->Point.Threshold) {
464 GLfloat dsize = psz[0] / ctx->Point.Threshold;
465 psz[0] = MAX2(ctx->Point.Threshold, ctx->Point.MinSize);
    [all...]

Completed in 1238 milliseconds

12 3 4