Searched defs:Count (Results 126 - 150 of 184) sorted by relevance

12345678

/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp612 Value *Count = Builder.CreateLoad(Counter); local
613 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
614 Builder.CreateStore(Count, Counter);
624 Value *Count = Builder.CreateLoad(Counter); local
625 Count = Builder.CreateAdd(Count, Builder.getInt64(1));
626 Builder.CreateStore(Count, Counter);
H A DDataFlowSanitizer.cpp711 Count = e - FnsToInstrument.begin(); local
714 e = FnsToInstrument.begin() + Count;
/external/llvm/lib/Transforms/Scalar/
H A DLoopRerollPass.cpp661 int PrevIter = 0, BaseCount = 0, Count = 0; local
676 if (Count != BaseCount) {
678 " reduction use count " << Count <<
684 Count = 0;
687 ++Count;
H A DScalarizer.cpp644 unsigned Count = Ty->getVectorNumElements(); local
648 for (unsigned I = 0; I < Count; ++I)
H A DIndVarSimplify.cpp1669 APInt Count = cast<SCEVConstant>(IVCount)->getValue()->getValue(); local
1672 if (IVCount != BackedgeTakenCount && Count == 0) {
1673 Count = APInt::getMaxValue(Count.getBitWidth()).zext(CmpIndVarSize);
1674 ++Count;
1677 Count = Count.zext(CmpIndVarSize);
1680 NewLimit = Start - Count;
1682 NewLimit = Start + Count;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.h89 unsigned Count; member in struct:rc_constant_list
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dcpplint.py820 def Count(self): member in class:_FunctionState
821 """Count line in current function body."""
1907 # Count parentheses. This is to avoid adding struct arguments to
2340 function_state.Count() # Count non-blank/non-comment lines.
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_context.h200 GLuint Count; /**< Number of vertices currently in buffer */ member in struct:vertex_buffer
/external/clang/lib/Format/
H A DFormat.cpp1078 unsigned Count = 0; local
1084 Queue.push(QueueItem(OrderedPenalty(0, Count), Node));
1085 ++Count;
1101 if (Count > 10000)
1110 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
1112 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
1126 DEBUG(llvm::dbgs() << "Total number of analyzed states: " << Count << "\n");
1160 bool NewLine, unsigned *Count, QueueType *Queue) {
1173 Queue->push(QueueItem(OrderedPenalty(Penalty, *Count), Node));
1174 ++(*Count);
1159 addNextStateToQueue(unsigned Penalty, StateNode *PreviousNode, bool NewLine, unsigned *Count, QueueType *Queue) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dcpplint.py695 def Count(self): member in class:_FunctionState
696 """Count line in current function body."""
1598 # Count parentheses. This is to avoid adding struct arguments to
2006 function_state.Count() # Count non-blank/non-comment lines.
/external/libvpx/libvpx/tools/
H A Dcpplint.py820 def Count(self): member in class:_FunctionState
821 """Count line in current function body."""
1907 # Count parentheses. This is to avoid adding struct arguments to
2340 function_state.Count() # Count non-blank/non-comment lines.
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1553 unsigned Count = 2; variable
1554 while (i+Count != e && Ops[i+Count] == Ops[i])
1555 ++Count;
1557 const SCEV *Scale = getConstant(Ty, Count);
1559 if (Ops.size() == Count)
1562 Ops.erase(Ops.begin()+i+1, Ops.begin()+i+Count);
1563 --i; e -= Count - 1;
4070 // Iteration Count Computation Code
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp270 unsigned Count = 0; local
275 Count++;
277 return Count;
1340 unsigned Count = GlobalCand[i].LiveBundles.count(); local
1341 if (Count < WorstCount)
1342 Worst = i, WorstCount = Count;
H A DScheduleDAGInstrs.cpp1114 unsigned Count = MBB->size(); local
1116 I != E; --Count) {
/external/llvm/lib/IR/
H A DDebugInfo.cpp1266 int64_t Count = getCount(); local
1267 if (Count != -1)
1268 OS << " [" << getLo() << ", " << Count - 1 << ']';
/external/llvm/lib/Target/ARM/
H A DARMLoadStoreOptimizer.cpp722 unsigned Count = 1; local
754 ((Count < Limit) && RegNum == PRegNum+1)) &&
757 (!STI->isSwift() || isNotVFP || Count != 1 || !(PRegNum & 0x1))) {
760 ++Count;
/external/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp684 uint64_t Count = Dist1; local
686 if (Count > 0xFFFFFFFFULL)
689 return new CountValue(CountValue::CV_Immediate, Count);
732 // Count = (End - Start + (IVBump-1)) / IVBump
734 // Count = (End - Start + (IVBump-1)+1) / IVBump
/external/llvm/lib/Target/R600/
H A DAMDILCFGStructurizer.cpp419 int Count = 0; local
422 ++Count;
425 return Count;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp607 ConstantInt *Count; local
609 Count = cast<ConstantInt>(CDV->getElementAsConstant(0));
611 Count = CInt;
615 if (Count->getZExtValue() >
639 auto VTCI = ConstantInt::get(VT->getElementType(), Count->getZExtValue());
/external/mesa3d/src/mesa/tnl/
H A Dt_context.h200 GLuint Count; /**< Number of vertices currently in buffer */ member in struct:vertex_buffer
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsio0.c741 cmsInt32Number Count = 0; local
792 Count++;
796 if (!_cmsWriteUInt32Number(Icc ->IOhandler, Count)) return FALSE;
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp1330 int Chapters::Count() const { return chapters_count_; } function in class:mkvmuxer::Chapters
2641 if (chapters_.Count() > 0) {
/external/chromium_org/third_party/skia/gm/
H A Dgmmain.cpp115 static int Count() { function in class:Iter
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp865 unsigned Count = C.blockCount(); local
868 DefinedSVal RetVal = svalBuilder.getConjuredHeapSymbolVal(CE, LCtx, Count)
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp386 unsigned Count,
393 const Expr *E, unsigned Count,
944 unsigned Count; member in class:__anon18283::invalidateRegionsWorker
960 Ex(ex), Count(count), LCtx(lctx), IS(is), ITraits(ITraitsIn), Regions(r){}
1051 svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, Ctx.IntTy, Count);
1073 Ctx.IntTy, Count);
1082 AT->getElementType(), Count);
1088 T,Count);
1096 unsigned Count,
1105 Count);
1094 invalidateGlobalRegion(MemRegion::Kind K, const Expr *Ex, unsigned Count, const LocationContext *LCtx, RegionBindingsRef B, InvalidatedRegions *Invalidated) argument
1149 invalidateRegions(Store store, ArrayRef<SVal> Values, const Expr *Ex, unsigned Count, const LocationContext *LCtx, const CallEvent *Call, InvalidatedSymbols &IS, RegionAndSymbolInvalidationTraits &ITraits, InvalidatedRegions *TopLevelRegions, InvalidatedRegions *Invalidated) argument
[all...]

Completed in 486 milliseconds

12345678