Home
last modified time | relevance | path

Searched refs:CurIndex (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/CodeGen/
DAnalysis.cpp37 unsigned CurIndex) { in ComputeLinearIndex() argument
40 return CurIndex; in ComputeLinearIndex()
49 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
50 CurIndex = ComputeLinearIndex(*EI, 0, 0, CurIndex); in ComputeLinearIndex()
52 return CurIndex; in ComputeLinearIndex()
59 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
60 CurIndex = ComputeLinearIndex(EltTy, 0, 0, CurIndex); in ComputeLinearIndex()
62 return CurIndex; in ComputeLinearIndex()
65 return CurIndex + 1; in ComputeLinearIndex()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DAnalysis.h39 unsigned CurIndex = 0);
43 unsigned CurIndex = 0) {
44 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/external/llvm/include/llvm/CodeGen/
DAnalysis.h57 unsigned CurIndex = 0);
61 unsigned CurIndex = 0) {
62 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/external/clang/lib/Sema/
DIdentifierResolver.cpp45 unsigned int CurIndex; member in IdentifierResolver::IdDeclInfoMap
48 IdDeclInfoMap() : CurPool(nullptr), CurIndex(POOL_SIZE) {} in IdDeclInfoMap()
399 if (CurIndex == POOL_SIZE) { in operator []()
401 CurIndex = 0; in operator []()
403 IdDeclInfo *IDI = &CurPool->Pool[CurIndex]; in operator []()
407 ++CurIndex; in operator []()
/external/llvm/lib/CodeGen/
DAnalysis.cpp40 unsigned CurIndex) { in ComputeLinearIndex() argument
43 return CurIndex; in ComputeLinearIndex()
52 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
53 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex); in ComputeLinearIndex()
56 return CurIndex; in ComputeLinearIndex()
68 CurIndex += EltLinearOffset* *Indices; in ComputeLinearIndex()
69 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
71 CurIndex += EltLinearOffset*NumElts; in ComputeLinearIndex()
72 return CurIndex; in ComputeLinearIndex()
75 return CurIndex + 1; in ComputeLinearIndex()
/external/swiftshader/third_party/subzero/src/
DIceTimerTree.cpp138 TTindex CurIndex = 0; in findPath() local
142 CurIndex = getChildIndex(CurIndex, Index); in findPath()
144 assert(CurIndex); // shouldn't be the sentinel node in findPath()
145 return CurIndex; in findPath()