Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DAnalysis.h57 unsigned CurIndex = 0);
61 unsigned CurIndex = 0) {
62 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp72 CurIndex += SourceToDest.size(); in TypeStreamMerger()
177 TypeIndex CurIndex{TypeIndex::FirstNonSimpleIndex}; member in __anoncd3ab5720111::TypeStreamMerger
208 assert(IndexMap.size() == slotForIndex(CurIndex) && in addMapping()
212 assert(slotForIndex(CurIndex) < IndexMap.size()); in addMapping()
213 IndexMap[slotForIndex(CurIndex)] = Idx; in addMapping()
325 CurIndex = TypeIndex(TypeIndex::FirstNonSimpleIndex); in doit()
366 GloballyHashedType H = GlobalHashes[CurIndex.toArrayIndex()]; in remapType()
380 ++CurIndex; in remapType()
381 assert((IsSecondPass || IndexMap.size() == slotForIndex(CurIndex)) && in remapType()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeStreamMerger.cpp72 CurIndex += SourceToDest.size(); in TypeStreamMerger()
177 TypeIndex CurIndex{TypeIndex::FirstNonSimpleIndex}; member in __anon70fef67e0111::TypeStreamMerger
208 assert(IndexMap.size() == slotForIndex(CurIndex) && in addMapping()
212 assert(slotForIndex(CurIndex) < IndexMap.size()); in addMapping()
213 IndexMap[slotForIndex(CurIndex)] = Idx; in addMapping()
325 CurIndex = TypeIndex(TypeIndex::FirstNonSimpleIndex); in doit()
368 GloballyHashedType H = GlobalHashes[CurIndex.toArrayIndex()]; in remapType()
382 ++CurIndex; in remapType()
383 assert((IsSecondPass || IndexMap.size() == slotForIndex(CurIndex)) && in remapType()
/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-project/llvm/include/llvm/CodeGen/
DAnalysis.h53 unsigned CurIndex = 0);
57 unsigned CurIndex = 0) {
58 return ComputeLinearIndex(Ty, Indices.begin(), Indices.end(), CurIndex);
/external/swiftshader/third_party/llvm-10.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-10.0/llvm/lib/CodeGen/
DAnalysis.cpp38 unsigned CurIndex) { in ComputeLinearIndex() argument
41 return CurIndex; in ComputeLinearIndex()
50 return ComputeLinearIndex(*EI, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
51 CurIndex = ComputeLinearIndex(*EI, nullptr, nullptr, CurIndex); in ComputeLinearIndex()
54 return CurIndex; in ComputeLinearIndex()
66 CurIndex += EltLinearOffset* *Indices; in ComputeLinearIndex()
67 return ComputeLinearIndex(EltTy, Indices+1, IndicesEnd, CurIndex); in ComputeLinearIndex()
69 CurIndex += EltLinearOffset*NumElts; in ComputeLinearIndex()
70 return CurIndex; in ComputeLinearIndex()
73 return CurIndex + 1; in ComputeLinearIndex()
/external/llvm-project/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/llvm-project/clang/lib/Sema/
DIdentifierResolver.cpp50 unsigned int CurIndex = POOL_SIZE; member in IdentifierResolver::IdDeclInfoMap
403 if (CurIndex == POOL_SIZE) { in operator []()
405 CurIndex = 0; in operator []()
407 IdDeclInfo *IDI = &CurPool->Pool[CurIndex]; in operator []()
411 ++CurIndex; in operator []()
/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()