HomeSort by: relevance | last modified time | path
    Searched refs:NumFunctions (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerDataFlowTrace.cpp 34 size_t NumFunctions = 0;
36 NumFunctions++;
38 FocusFuncIdx = NumFunctions - 1;
40 if (!NumFunctions || FocusFuncIdx == SIZE_MAX || Files.size() <= 1)
62 if (N >= NumFunctions)
87 NumTraceFiles, NumFunctions, NumTracesWithFocusFunction);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ProfileSummary.h 53 uint32_t NumCounts, NumFunctions;
74 uint32_t NumCounts, uint32_t NumFunctions,
79 NumCounts(NumCounts), NumFunctions(NumFunctions), Partial(Partial),
89 uint32_t getNumFunctions() { return NumFunctions; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageSummaryInfo.h 151 size_t NumFunctions;
154 FunctionCoverageInfo() : Executed(0), NumFunctions(0) {}
156 FunctionCoverageInfo(size_t Executed, size_t NumFunctions)
157 : Executed(Executed), NumFunctions(NumFunctions) {}
161 NumFunctions += RHS.NumFunctions;
168 ++NumFunctions;
173 size_t getNumFunctions() const { return NumFunctions; }
175 bool isFullyCovered() const { return Executed == NumFunctions; }
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
ElimAvailExtern.cpp 30 STATISTIC(NumFunctions, "Number of functions removed");
60 NumFunctions++;
Internalize.cpp 41 STATISTIC(NumFunctions, "Number of functions internalized");
191 ++NumFunctions;
GlobalDCE.cpp 41 STATISTIC(NumFunctions, "Number of functions removed");
411 NumFunctions += DeadFunctions.size();
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp 110 NumFunctions++;
181 MaxFunctionCount, NumCounts, NumFunctions);
187 assert(NumFunctions == 0 &&
217 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions);
221 NumFunctions++;
SampleProfReader.cpp 1255 auto NumFunctions = readNumber<uint64_t>();
1256 if (std::error_code EC = NumFunctions.getError())
1271 *MaxFunctionCount, *NumBlocks, *NumFunctions);
1384 uint32_t NumFunctions;
1385 if (!GcovBuffer.readInt(NumFunctions))
1389 for (uint32_t I = 0; I < NumFunctions; ++I)
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
ProfileCommon.h 54 uint32_t NumFunctions = 0;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ProfileSummary.cpp 93 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions()));
215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount,
231 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "NumFunctions",
232 NumFunctions))
248 NumCounts, NumFunctions, IsPartialProfile,
253 OS << "Total functions: " << NumFunctions << "\n";
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrOrderFile.cpp 69 int NumFunctions = 0;
72 NumFunctions++;
78 MapTy = ArrayType::get(Type::getInt8Ty(Ctx), NumFunctions);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
Statistics.cpp 757 unsigned NumFunctions = 0;
784 NumFunctions += Stats.IsFunction;
809 printDatum(J, "#functions", NumFunctions);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SafeStack.cpp 81 STATISTIC(NumFunctions, "Total number of functions");
759 ++NumFunctions;

Completed in 158 milliseconds