HomeSort by relevance Sort by last modified time
    Searched refs:Cnt (Results 1 - 8 of 8) sorted by null

  /external/clang/tools/scan-build/
c++-analyzer 458 my $Cnt = $CompileOptionMap{$ArgKey};
460 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
466 my $Cnt = $LinkerOptionMap{$ArgKey};
468 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
475 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
481 $i += $Cnt;
490 while ($Cnt > 0) {
491 ++$i; --$Cnt;
    [all...]
ccc-analyzer 458 my $Cnt = $CompileOptionMap{$ArgKey};
460 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
466 my $Cnt = $LinkerOptionMap{$ArgKey};
468 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
475 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
481 $i += $Cnt;
490 while ($Cnt > 0) {
491 ++$i; --$Cnt;
    [all...]
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 162 iterator insert(iterator I, size_t Cnt, const_reference E,
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/
CFG.h 284 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E,
286 return Impl.insert(I, Cnt, E, C);
514 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt,
516 return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 324 unsigned Cnt; // Block counter. Used to distinguish different pieces of
328 AllocaRegion(const Expr* ex, unsigned cnt, const MemRegion *superRegion)
329 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
342 unsigned Cnt, const MemRegion *superRegion);
954 const AllocaRegion *getAllocaRegion(const Expr* Ex, unsigned Cnt,
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CFRefCount.cpp 237 unsigned Cnt;
241 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
242 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
249 unsigned getCount() const { return Cnt; }
251 unsigned getCombinedCounts() const { return Cnt + ACnt; }
252 void clearCounts() { Cnt = 0; ACnt = 0; }
253 void setCount(unsigned i) { Cnt = i; }
287 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt
328 unsigned cnt = getCount(); local
329 if (cnt) Out << " (+ " << cnt << ")"; local
335 unsigned cnt = getCount(); local
336 if (cnt) Out << " (+ " << cnt << ")"; local
342 unsigned cnt = getCount(); local
343 if (cnt) Out << " (+ " << cnt << ")"; local
349 unsigned cnt = getCount(); local
350 if (cnt) Out << " (+ " << cnt << ")"; local
1651 const unsigned *cnt = (*cnts).lookup(sym); local
2953 unsigned cnt = X.getCount(); local
2961 unsigned cnt = X.getCount(); local
    [all...]
MemRegion.cpp 253 const Expr* Ex, unsigned cnt,
257 ID.AddInteger(cnt);
261 ProfileRegion(ID, Ex, Cnt, superRegion);
406 os << "alloca{" << (void*) Ex << ',' << Cnt << '}';
727 MemRegionManager::getAllocaRegion(const Expr* E, unsigned cnt,
731 return getSubRegion<AllocaRegion>(E, cnt, getStackLocalsRegion(STC));
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 142 milliseconds