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 482 my $Cnt = $CompileOptionMap{$ArgKey};
484 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
490 my $Cnt = $LinkerOptionMap{$ArgKey};
492 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
499 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
505 $i += $Cnt;
514 while ($Cnt > 0) {
515 ++$i; --$Cnt;
    [all...]
ccc-analyzer 482 my $Cnt = $CompileOptionMap{$ArgKey};
484 while ($Cnt > 0) { ++$i; --$Cnt; push @CompileOpts, $ARGV[$i]; }
490 my $Cnt = $LinkerOptionMap{$ArgKey};
492 while ($Cnt > 0) { ++$i; --$Cnt; push @LinkOpts, $ARGV[$i]; }
499 my $Cnt = $CompilerLinkerOptionMap{$ArgKey};
505 $i += $Cnt;
514 while ($Cnt > 0) {
515 ++$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 282 reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E,
284 return Impl.insert(I, Cnt, E, C);
537 iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt,
539 return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 408 unsigned Cnt; // Block counter. Used to distinguish different pieces of
412 AllocaRegion(const Expr *ex, unsigned cnt, const MemRegion *superRegion)
413 : SubRegion(superRegion, AllocaRegionKind), Cnt(cnt), Ex(ex) {}
426 unsigned Cnt, const MemRegion *superRegion);
1095 const AllocaRegion *getAllocaRegion(const Expr *Ex, unsigned Cnt
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 171 unsigned Cnt;
175 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t)
176 : kind(k), okind(o), Cnt(cnt), ACnt(acnt), T(t) {}
183 unsigned getCount() const { return Cnt; }
185 unsigned getCombinedCounts() const { return Cnt + ACnt; }
186 void clearCounts() { Cnt = 0; ACnt = 0; }
187 void setCount(unsigned i) { Cnt = i; }
221 return kind == X.kind && Cnt == X.Cnt && T == X.T && ACnt == X.ACnt
262 unsigned cnt = getCount(); local
263 if (cnt) Out << " (+ " << cnt << ")"; local
269 unsigned cnt = getCount(); local
270 if (cnt) Out << " (+ " << cnt << ")"; local
276 unsigned cnt = getCount(); local
277 if (cnt) Out << " (+ " << cnt << ")"; local
283 unsigned cnt = getCount(); local
284 if (cnt) Out << " (+ " << cnt << ")"; local
1600 const unsigned *cnt = (*cnts).lookup(sym); local
3187 unsigned cnt = X.getCount(); local
3195 unsigned cnt = X.getCount(); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 274 const Expr *Ex, unsigned cnt,
278 ID.AddInteger(cnt);
282 ProfileRegion(ID, Ex, Cnt, superRegion);
447 os << "alloca{" << (void*) Ex << ',' << Cnt << '}';
840 MemRegionManager::getAllocaRegion(const Expr *E, unsigned cnt,
844 return getSubRegion<AllocaRegion>(E, cnt, getStackLocalsRegion(STC));
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 230 milliseconds