Home
last modified time | relevance | path

Searched refs:CurIndex (Results 1 – 9 of 9) 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-7.0/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp167 TypeIndex CurIndex{TypeIndex::FirstNonSimpleIndex}; member in __anon34cadeca0111::TypeStreamMerger
211 assert(IndexMap.size() == slotForIndex(CurIndex) && in addMapping()
215 assert(slotForIndex(CurIndex) < IndexMap.size()); in addMapping()
216 IndexMap[slotForIndex(CurIndex)] = Idx; in addMapping()
320 CurIndex = TypeIndex(TypeIndex::FirstNonSimpleIndex); in doit()
357 GloballyHashedType H = GlobalHashes[CurIndex.toArrayIndex()]; in remapType()
370 ++CurIndex; in remapType()
371 assert((IsSecondPass || IndexMap.size() == slotForIndex(CurIndex)) && in remapType()
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DAnalysis.h57 unsigned CurIndex = 0);
61 unsigned CurIndex = 0) {
62 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/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/llvm-7.0/llvm/lib/CodeGen/
DAnalysis.cpp39 unsigned CurIndex) { in ComputeLinearIndex() argument
42 return CurIndex; in ComputeLinearIndex()
51 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
52 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex); in ComputeLinearIndex()
55 return CurIndex; in ComputeLinearIndex()
67 CurIndex += EltLinearOffset* *Indices; in ComputeLinearIndex()
68 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
70 CurIndex += EltLinearOffset*NumElts; in ComputeLinearIndex()
71 return CurIndex; in ComputeLinearIndex()
74 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()