HomeSort by: relevance | last modified time | path
    Searched defs:Count (Results 1 - 25 of 253) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/apache2/llvm/dist/llvm/tools/llvm-reduce/deltas/
ReduceAliases.cpp 40 int Count = 0;
42 errs() << "\t" << ++Count << ": " << GA.getName() << "\n";
45 return Count;
ReduceSpecialGlobals.cpp 48 int Count = 0;
51 errs() << "\t" << ++Count << ": " << Used->getName() << "\n";
54 return Count;
  /src/external/apache2/llvm/dist/clang/include/clang-c/
CXString.h 44 unsigned Count;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
LEB128.h 26 unsigned Count = 0;
33 Count++;
34 if (More || Count < PadTo)
40 if (Count < PadTo) {
42 for (; Count < PadTo - 1; ++Count)
45 Count++;
47 return Count;
54 unsigned Count = 0;
62 Count++
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIATable.cpp 18 LONG Count = 0;
19 return (S_OK == Table->get_Count(&Count)) ? Count : 0;
DIADataStream.cpp 19 LONG Count = 0;
20 return (S_OK == StreamData->get_Count(&Count)) ? Count : 0;
DIAEnumDebugStreams.cpp 21 LONG Count = 0;
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumFrameData.cpp 19 LONG Count = 0;
20 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumInjectedSources.cpp 21 LONG Count = 0;
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumLineNumbers.cpp 21 LONG Count = 0;
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumSectionContribs.cpp 22 LONG Count = 0;
23 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumSourceFiles.cpp 21 LONG Count = 0;
22 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumSymbols.cpp 22 LONG Count = 0;
23 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
DIAEnumTables.cpp 19 LONG Count = 0;
20 return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCLinkerOptimizationHint.cpp 45 uint64_t Count = 0;
47 void write_impl(const char *, size_t size) override { Count += size; }
49 uint64_t current_pos() const override { return Count; }
  /src/external/apache2/llvm/dist/llvm/utils/count/
count.c 1 /*===- count.c - The 'count' testing tool ---------------------------------===*\
13 unsigned Count, NumLines, NumRead;
17 fprintf(stderr, "usage: %s <expected line count>\n", argv[0]);
21 Count = strtol(argv[1], &End, 10);
23 fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]);
43 if (Count != NumLines) {
44 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeIndexDiscovery.h 23 uint32_t Count;
LazyRandomTypeCollection.h 92 uint32_t Count = 0;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
IndirectCallPromotionAnalysis.cpp 32 // remaining call count) for it to be considered as the promotion target.
36 "call count for the promotion"));
39 // total call count) for it to be considered as the promotion target.
44 "count for the promotion"));
57 bool ICallPromotionAnalysis::isPromotionProfitable(uint64_t Count,
60 return Count * 100 >= ICPRemainingPercentThreshold * RemainingCount &&
61 Count * 100 >= ICPTotalPercentThreshold * TotalCount;
65 // the count. Stop at the first target that is not promoted. Returns the
77 uint64_t Count = ValueDataRef[I].Count;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineSizeOpts.cpp 34 auto Count = MBFI->getBlockProfileCount(MBB);
35 return Count && PSI->isColdCount(*Count);
41 auto Count = MBFI->getProfileCountFromFreq(BlockFreq.getFrequency());
42 return Count && PSI->isColdCount(*Count);
50 auto Count = MBFI->getBlockProfileCount(MBB);
51 return Count && PSI->isHotCountNthPercentile(PercentileCutoff, *Count);
58 auto Count = MBFI->getProfileCountFromFreq(BlockFreq.getFrequency())
    [all...]
MachineFunctionSplitter.cpp 57 "mfs-count-threshold",
84 Optional<uint64_t> Count = MBFI->getBlockProfileCount(&MBB);
85 if (!Count.hasValue())
89 return PSI->isColdCountNthPercentile(PercentileCutoff, *Count);
91 return (*Count < ColdCountThreshold);
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
MCAsmParserExtension.cpp 44 int64_t Count;
46 Count, "expected integer count in '.cg_profile' directive"))
60 Count);
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
StringToOffsetTable.h 86 int Count = 0;
92 Count++;
93 if (Count > 14) {
95 Count = 0;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAddr.cpp 36 size_t Count = DataSize / AddrSize;
37 Addrs.reserve(Count);
38 while (Count--)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SampleProfileLoaderBaseUtil.cpp 48 /// sample count with the hot cutoff computed by ProfileSummaryInfo, it is
49 /// regarded as hot if the count is above the cutoff value.
78 unsigned &Count = SampleCoverage[FS][Loc];
79 bool FirstTime = (++Count == 1);
87 /// This count does not include records from cold inlined callsites.
95 unsigned Count = (I != SampleCoverage.end()) ? I->second.size() : 0;
97 // If there are inlined callsites in this function, count the samples found
104 Count += countUsedRecords(CalleeSamples, PSI);
107 return Count;
112 /// This count does not include records from cold inlined callsites
    [all...]

Completed in 34 milliseconds

1 2 3 4 5 6 7 8 91011