Home
last modified time | relevance | path

Searched refs:NextIndex (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/
Didentity-map.h51 V8_EXPORT_PRIVATE int NextIndex(int index) const;
125 index_ = map_->NextIndex(index_);
131 index_ = map_->NextIndex(index_); in DeleteAndIncrement()
159 Iterator begin() { return Iterator(map_, map_->NextIndex(-1)); } in begin()
Didentity-map.cc210 int IdentityMapBase::NextIndex(int index) const { in NextIndex() function in v8::internal::IdentityMapBase
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/
DJITEventListenerTest.cpp48 unsigned NextIndex; member
50 RecordingJITEventListener() : NextIndex(0) {} in RecordingJITEventListener()
55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details}; in NotifyFunctionEmitted()
60 FunctionFreedEvent Event = {NextIndex++, OldPtr}; in NotifyFreeingMachineCode()
/external/swiftshader/third_party/subzero/src/
DIceLoopAnalyzer.cpp112 IndexT NextIndex = FirstDefinedIndex; member in Ice::LoopAnalyzer
161 assert(NextIndex == FirstDefinedIndex); in computeLoopNestDepth()
192 Node.visit(NextIndex++); in processNode()
/external/llvm/lib/Analysis/
DStratifiedSets.h334 auto NextIndex = Links[CurrentIndex].Below; in propagateAttrs() local
335 auto &NextBits = Links[NextIndex].Attrs; in propagateAttrs()
337 CurrentIndex = NextIndex; in propagateAttrs()
/external/eigen/Eigen/src/Core/
DAssignEvaluator.h275 enum { NextIndex = Index + unpacket_traits<PacketType>::size };
276 copy_using_evaluator_innervec_CompleteUnrolling<Kernel, NextIndex, Stop>::run(kernel);
293 enum { NextIndex = Index_ + unpacket_traits<PacketType>::size };
294 …copy_using_evaluator_innervec_InnerUnrolling<Kernel, NextIndex, Stop, SrcAlignment, DstAlignment>:…
/external/clang/lib/AST/
DCommentSema.cpp959 unsigned NextIndex; member in clang::comments::__anonc4b2504b0211::SimpleTypoCorrector
965 BestIndex(0), NextIndex(0) in SimpleTypoCorrector()
984 unsigned CurrIndex = NextIndex++; in addDecl()
DVTableBuilder.cpp2038 uint64_t NextIndex = Index + 1; in dumpLayout() local
2039 if (AddressPointsByIndex.count(NextIndex)) { in dumpLayout()
2040 if (AddressPointsByIndex.count(NextIndex) == 1) { in dumpLayout()
2042 AddressPointsByIndex.find(NextIndex)->second; in dumpLayout()
2050 AddressPointsByIndex.lower_bound(NextIndex)->second.getBaseOffset(); in dumpLayout()
2055 llvm::make_range(AddressPointsByIndex.equal_range(NextIndex))) { in dumpLayout()
/external/llvm/lib/IR/
DMetadata.cpp167 UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex))) in addRef()
172 ++NextIndex; in addRef()
173 assert(NextIndex != 0 && "Unexpected overflow"); in addRef()
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DMetadata.h272 uint64_t NextIndex; variable
277 : Context(Context), NextIndex(0) {} in ReplaceableMetadataImpl()
/external/llvm/include/llvm/IR/
DMetadata.h260 uint64_t NextIndex; variable
265 : Context(Context), NextIndex(0) {} in ReplaceableMetadataImpl()
/external/clang/lib/Serialization/
DASTReader.cpp1458 unsigned NextIndex = 1; // Skip identifier ID. in ReadMacroRecord() local
1459 SubmoduleID SubModID = getGlobalSubmoduleID(F, Record[NextIndex++]); in ReadMacroRecord()
1460 SourceLocation Loc = ReadSourceLocation(F, Record, NextIndex); in ReadMacroRecord()
1462 MI->setDefinitionEndLoc(ReadSourceLocation(F, Record, NextIndex)); in ReadMacroRecord()
1463 MI->setIsUsed(Record[NextIndex++]); in ReadMacroRecord()
1464 MI->setUsedForHeaderGuard(Record[NextIndex++]); in ReadMacroRecord()
1468 bool isC99VarArgs = Record[NextIndex++]; in ReadMacroRecord()
1469 bool isGNUVarArgs = Record[NextIndex++]; in ReadMacroRecord()
1470 bool hasCommaPasting = Record[NextIndex++]; in ReadMacroRecord()
1472 unsigned NumArgs = Record[NextIndex++]; in ReadMacroRecord()
[all …]