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

  /external/llvm/include/llvm/CodeGen/
Analysis.h 40 unsigned CurIndex = 0);
44 unsigned CurIndex = 0) {
45 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
  /external/clang/lib/Sema/
IdentifierResolver.cpp 45 unsigned int CurIndex;
48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {}
391 if (CurIndex == POOL_SIZE) {
393 CurIndex = 0;
395 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
399 ++CurIndex;
  /external/llvm/lib/CodeGen/
Analysis.cpp 37 unsigned CurIndex) {
40 return CurIndex;
49 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
50 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex);
52 return CurIndex;
59 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
60 CurIndex = ComputeLinearIndex(EltTy, nullptr, nullptr, CurIndex);
62 return CurIndex;
    [all...]

Completed in 221 milliseconds