Searched defs:CurIndex (Results 1 - 2 of 2) sorted by relevance
/external/clang/lib/Sema/ |
H A D | IdentifierResolver.cpp | 45 unsigned int CurIndex; member in class:IdentifierResolver::IdDeclInfoMap 48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {} 399 if (CurIndex == POOL_SIZE) { 401 CurIndex = 0; 403 IdDeclInfo *IDI = &CurPool->Pool[CurIndex]; 407 ++CurIndex;
|
/external/llvm/lib/CodeGen/ |
H A D | Analysis.cpp | 34 /// by recursing and accumulating CurIndex as long as there are indices in the 39 unsigned CurIndex) { 42 return CurIndex; 51 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); 52 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex); 55 return CurIndex; 67 CurIndex += EltLinearOffset* *Indices; 68 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); 70 CurIndex 36 ComputeLinearIndex(Type *Ty, const unsigned *Indices, const unsigned *IndicesEnd, unsigned CurIndex) argument [all...] |
Completed in 158 milliseconds