Searched refs:Cnt (Results 1 - 8 of 8) sorted by relevance

/external/clang/tools/scan-build/
H A Dc++-analyzer486 my $Cnt = $CompileOptionMap{$ArgKey};
488 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
494 my $Cnt = $LinkerOptionMap{$ArgKey};
496 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
503 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
509 $i += $Cnt;
518 while ($Cnt > 0) {
519 ++$i; --$Cnt;
[all...]
H A Dccc-analyzer486 my $Cnt = $CompileOptionMap{$ArgKey};
488 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
494 my $Cnt = $LinkerOptionMap{$ArgKey};
496 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
503 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
509 $i += $Cnt;
518 while ($Cnt > 0) {
519 ++$i; --$Cnt;
[all...]
/external/clang/include/clang/Analysis/Support/
H A DBumpVector.h162 iterator insert(iterator I, size_t Cnt, const_reference E, argument
165 if (End + Cnt <= Capacity) {
167 move_range_right(I, End, Cnt);
168 construct_range(I, I + Cnt, E);
169 End += Cnt;
170 return I + Cnt;
173 grow(C, size() + Cnt);
/external/clang/include/clang/Analysis/
H A DCFG.h283 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E, argument
285 return Impl.insert(I, Cnt, E, C);
538 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt, argument
540 return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h435 unsigned Cnt; // Block counter. Used to distinguish different pieces of member in class:clang::ento::AllocaRegion
440 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
453 unsigned Cnt, const MemRegion *superRegion);
1140 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DRetainCountChecker.cpp177 unsigned Cnt; member in class:__anon3913::RefVal
182 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
189 unsigned getCount() const { return Cnt; }
191 unsigned getCombinedCounts() const { return Cnt + ACnt; }
192 void clearCounts() { Cnt = 0; ACnt = 0; }
193 void setCount(unsigned i) { Cnt = i; }
227 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt;
252 ID.AddInteger(Cnt);
3505 unsigned Cnt local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8517 static bool getVShiftImm(SDValue Op, unsigned ElementBits, int64_t &Cnt) { argument
8529 Cnt = SplatBits.getSExtValue();
8537 static bool isVShiftLImm(SDValue Op, EVT VT, bool isLong, int64_t &Cnt) { argument
8540 if (! getVShiftImm(Op, ElementBits, Cnt))
8542 return (Cnt >= 0 && (isLong ? Cnt-1 : Cnt) < ElementBits);
8552 int64_t &Cnt) {
8555 if (! getVShiftImm(Op, ElementBits, Cnt))
8558 Cnt
8551 isVShiftRImm(SDValue Op, EVT VT, bool isNarrow, bool isIntrinsic, int64_t &Cnt) argument
8593 int64_t Cnt; local
8698 int64_t Cnt; local
8750 int64_t Cnt; local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp282 ProfileRegion(ID, Ex, Cnt, superRegion);
447 os << "alloca{" << (const void*) Ex << ',' << Cnt << '}'; local

Completed in 175 milliseconds