/external/llvm/lib/Analysis/ |
CaptureTracking.cpp | 36 /// that path, and remove this threshold. 37 static int const Threshold = 20; 49 SmallVector<Use*, Threshold> Worklist; 50 SmallSet<Use*, Threshold> Visited; 57 if (Count++ >= Threshold)
|
/frameworks/base/media/libeffects/lvm/lib/Common/lib/ |
CompLim.h | 48 LVM_INT16 Threshold; /* Target threshold */
|
/external/llvm/lib/Transforms/Scalar/ |
LoopUnrollPass.cpp | 30 UnrollThreshold("unroll-threshold", cl::init(150), cl::Hidden, 40 "-unroll-threshold loop size is reached.")); 56 /// A magic value for use with the Threshold parameter to indicate 61 // Threshold to use when optsize is specified (and there is no 62 // explicit -unroll-threshold). 99 Pass *llvm::createLoopUnrollPass(int Threshold, int Count, int AllowPartial) { 100 return new LoopUnroll(Threshold, Count, AllowPartial); 129 // Determine the current unrolling threshold. While this is normally set 131 // function is marked as optimize-for-size, and the unroll threshold was 133 unsigned Threshold = CurrentThreshold [all...] |
/external/clang/lib/CodeGen/ |
BackendUtil.cpp | 151 unsigned Threshold = 225; 153 Threshold = 75; 155 Threshold = 25; 157 Threshold = 275; 158 PMBuilder.Inliner = createFunctionInliningPass(Threshold);
|
/external/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) {
|
/external/llvm/tools/opt/ |
opt.cpp | 416 unsigned Threshold = 225; 418 Threshold = 275; 419 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:__anon2243::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/lib/CodeGen/ |
RegisterCoalescer.cpp | [all...] |
/external/mesa3d/src/mesa/main/ |
mtypes.h | 1030 GLfloat Threshold; /**< GL_EXT_point_parameters */ [all...] |