Searched refs:CurIndex (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DAnalysis.h40 unsigned CurIndex = 0);
44 unsigned CurIndex = 0) {
45 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp38 unsigned CurIndex) {
41 return CurIndex;
50 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex);
51 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex);
53 return CurIndex;
60 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex);
61 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex);
63 return CurIndex;
35 ComputeLinearIndex(Type *Ty, const unsigned *Indices, const unsigned *IndicesEnd, unsigned CurIndex) argument
[all...]
/external/clang/lib/Sema/
H A DIdentifierResolver.cpp46 unsigned int CurIndex; member in class:IdentifierResolver::IdDeclInfoMap
49 IdDeclInfoMap() : CurPool(0), CurIndex(POOL_SIZE) {}
421 if (CurIndex == POOL_SIZE) {
423 CurIndex = 0;
425 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
429 ++CurIndex;

Completed in 78 milliseconds