| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 128 unsigned getCount() const { return Cnt; } in getCount() function 186 return RefVal(getKind(), getObjKind(), getCount() - i, 191 return RefVal(getKind(), getObjKind(), getCount() + i, 196 return RefVal(k, getObjKind(), getCount(), getAutoreleaseCount(), 201 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount()+1, in autorelease() 207 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(), in withIvarAccess() 213 return RefVal(getKind(), getObjKind(), getCount(), getAutoreleaseCount(), in releaseViaIvar()
|
| H A D | RetainCountDiagnostics.cpp | 68 if (PrevV.getCount() == CurrV.getCount()) { in shouldGenerateNote() 78 if (PrevV.getCount() > CurrV.getCount()) in shouldGenerateNote() 83 if (unsigned Count = CurrV.getCount()) in shouldGenerateNote() 324 unsigned CountBefore = CountBeforeCall->getCount(); in annotateConsumedSummaryMismatch() 325 unsigned CountAfter = CountAtExit->getCount(); in annotateConsumedSummaryMismatch() 682 "count of +" << RV->getCount(); in getEndPath()
|
| H A D | RetainCountChecker.cpp | 117 unsigned cnt = getCount(); in print() 124 unsigned cnt = getCount(); in print() 131 unsigned cnt = getCount(); in print() 138 unsigned cnt = getCount(); in print() 820 assert(V.getCount() > 0); in updateSymbol() 821 if (V.getCount() == 1) { in updateSymbol() 836 if (V.getCount() > 0) { in updateSymbol() 1006 unsigned cnt = X.getCount(); in processReturn() 1014 unsigned cnt = X.getCount(); in processReturn() 1257 unsigned Cnt = V.getCount(); in handleAutoreleaseCounts() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/ProfileData/ |
| H A D | GCOV.cpp | 342 return Blocks.front()->getCount(); in getEntryCount() 348 return Blocks.back()->getCount(); in getExitCount() 544 Count += Block->getCount(); in getLineCount() 772 if (Block->getCount()) { in print() 779 } else if (!LineExecs[Function] && Block->getCount()) { in print() 832 if (Block.getNumDstEdges() && Block.getCount()) in printFunctionSummary() 845 if (Block.getCount() == 0) in printBlockInfo() 848 OS << format("%9" PRIu64 ":", Block.getCount()); in printBlockInfo() 860 if (Block.getCount()) in printBranchInfo() 869 if (Block.getCount()) in printBranchInfo()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeVTShape.cpp | 23 dumpSymbolField(OS, "count", getCount(), Indent); in dump() 35 uint32_t NativeTypeVTShape::getCount() const { return Record.Slots.size(); } in getCount() function in NativeTypeVTShape
|
| H A D | NativeTypeArray.cpp | 40 dumpSymbolField(OS, "count", getCount(), Indent); in dump() 56 uint32_t NativeTypeArray::getCount() const { in getCount() function in NativeTypeArray
|
| H A D | NativeTypeFunctionSig.cpp | 120 dumpSymbolField(OS, "count", getCount(), Indent); in dump() 156 uint32_t NativeTypeFunctionSig::getCount() const { in getCount() function in NativeTypeFunctionSig
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ProfileSummaryInfo.cpp | 122 return FunctionCount && isHotCount(FunctionCount.getCount()); in isFunctionEntryHot() 135 if (isHotCount(FunctionCount.getCount())) in isFunctionHotInCallGraph() 164 if (!isColdCount(FunctionCount.getCount())) in isFunctionColdInCallGraph() 197 return FunctionCount && isColdCount(FunctionCount.getCount()); in isFunctionEntryCold()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | FileCheck.h | 78 int getCount() const { return Count; } in getCount() function 139 int getCount() const { return CheckTy.getCount(); } in getCount() function
|
| /freebsd-12.1/contrib/llvm/lib/Target/Mips/ |
| H A D | MipsOptimizePICCall.cpp | 106 unsigned getCount(ValueType Entry); 244 unsigned N = getCount(Entry); in visitNode() 305 unsigned OptimizePICCall::getCount(ValueType Entry) { in getCount() function in OptimizePICCall
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbolTypeVTableShape.h | 27 FORWARD_SYMBOL_METHOD(getCount)
|
| H A D | PDBSymbolTypeArray.h | 29 FORWARD_SYMBOL_METHOD(getCount)
|
| H A D | PDBSymbolTypeFunctionSig.h | 36 FORWARD_SYMBOL_METHOD(getCount)
|
| H A D | IPDBRawSymbol.h | 105 virtual uint32_t getCount() const = 0;
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | NativeTypeVTShape.h | 36 uint32_t getCount() const override;
|
| H A D | NativeTypeArray.h | 38 uint32_t getCount() const override;
|
| H A D | NativeTypeFunctionSig.h | 47 uint32_t getCount() const override;
|
| H A D | NativeRawSymbol.h | 81 uint32_t getCount() const override;
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | FileCheck.cpp | 918 if (Pat.getCount() > 1) in PrintMatch() 919 Message += formatv(" ({0} out of {1})", MatchedCount, Pat.getCount()).str(); in PrintMatch() 952 if (Pat.getCount() > 1) in PrintNoMatch() 953 Message += formatv(" ({0} out of {1})", MatchedCount, Pat.getCount()).str(); in PrintNoMatch() 1031 assert(Pat.getCount() != 0 && "pattern count can not be zero"); in Check() 1032 for (int i = 1; i <= Pat.getCount(); i++) { in Check()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | PrettyTypeDumper.cpp | 304 WithColor(Printer, PDB_ColorItem::LiteralValue).get() << Symbol.getCount(); in dump() 346 Printer.format("<vtshape ({0} methods)>", Symbol.getCount()); in dump()
|
| H A D | PrettyVariableDumper.cpp | 126 Printer << '[' << Symbol.getCount() << ']'; in dumpRight()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Utils/ |
| H A D | InlineFunction.cpp | 1448 CalleeEntryCount.getCount() < 1) in updateCallProfile() 1453 CalleeEntryCount.getCount()); in updateCallProfile() 1458 CI->updateProfWeight(CallCount, CalleeEntryCount.getCount()); in updateCallProfile() 1464 CI->updateProfWeight(CalleeEntryCount.getCount() - CallCount, in updateCallProfile() 1465 CalleeEntryCount.getCount()); in updateCallProfile() 1487 if (CallCount.getValue() > CalleeCount.getCount()) in updateCalleeCount() 1490 CalleeCount.setCount(CalleeCount.getCount() - CallCount.getValue()); in updateCalleeCount()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SymbolManager.h | 98 unsigned getCount() const { return Count; } in getCount() function 225 unsigned getCount() const { return Count; } in getCount() function
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/DIA/ |
| H A D | DIARawSymbol.h | 76 uint32_t getCount() const override;
|
| /freebsd-12.1/contrib/openmp/runtime/src/ |
| H A D | kmp_stats.cpp | 620 if (stat->getCount() != 0) { in printTimerStats() 645 if (stat->getCount() != 0) { in printCounterStats()
|