HomeSort by relevance Sort by last modified time
    Searched refs:MaxCount (Results 1 - 13 of 13) sorted by null

  /external/llvm/include/llvm/Transforms/
Instrumentation.h 161 static inline uint64_t calculateCountScale(uint64_t MaxCount) {
162 return MaxCount < UINT32_MAX ? 1 : MaxCount / UINT32_MAX + 1;
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 430 void applyFunctionAttributes(uint64_t EntryCount, uint64_t MaxCount) {
439 else if (MaxCount <= ColdFunctionThreshold.scale(ProgramMaxCount))
640 uint64_t MaxCount = 0;
649 if (EdgeCount > MaxCount)
650 MaxCount = EdgeCount;
653 assert(MaxCount > 0 && "Bad max count");
654 uint64_t Scale = calculateCountScale(MaxCount);
  /external/clang/lib/ASTMatchers/Dynamic/
Marshallers.h 565 VariadicOperatorMatcherDescriptor(unsigned MinCount, unsigned MaxCount,
567 : MinCount(MinCount), MaxCount(MaxCount), Op(Op),
573 if (Args.size() < MinCount || MaxCount < Args.size()) {
575 (MaxCount == UINT_MAX ? "" : Twine(MaxCount)).str();
613 const unsigned MaxCount;
702 template <unsigned MinCount, unsigned MaxCount>
705 MinCount, MaxCount> Func,
707 return new VariadicOperatorMatcherDescriptor(MinCount, MaxCount, Func.Op
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 156 static const unsigned MaxCount = UINT_MAX;
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.cpp 34 UP.MaxCount = UINT_MAX;
  /external/ImageMagick/coders/
pict.c 601 #define MaxCount 128
650 if (count == MaxCount)
652 *q++=(unsigned char) (MaxCount-1);
653 count-=MaxCount;
682 if (count == MaxCount)
684 *q++=(unsigned char) (MaxCount-1);
685 count-=MaxCount;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnrollPass.cpp 171 UP.MaxCount = UINT_MAX;
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 441 Max = Directive::MaxCount;
456 Max = Directive::MaxCount;
  /external/llvm/include/llvm/Analysis/
TargetTransformInfo.h 262 unsigned MaxCount;
    [all...]
ScalarEvolution.h 468 bool Complete, const SCEV *MaxCount);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcndr.h 261 ULONG_PTR MaxCount;
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]

Completed in 1115 milliseconds