/external/swiftshader/third_party/subzero/src/ |
D | IceRangeSpec.cpp | 101 std::string::size_type StartPos = 0; in tokenize() local 104 DelimPos = Spec.find(Delimiter, StartPos); in tokenize() 105 Tokens.emplace_back(Spec.substr(StartPos, DelimPos - StartPos)); in tokenize() 106 StartPos = DelimPos + 1; in tokenize()
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zOut.h | 74 UInt64 StartPos; member 134 CUInt64DefVector StartPos; member 166 StartPos.Clear(); in Clear() 189 StartPos.ReserveDown(); in ReserveDown() 214 && StartPos.CheckSize(size) in CheckNumFiles()
|
D | 7zIn.h | 117 CUInt64DefVector StartPos; member 149 StartPos.Clear(); in Clear()
|
D | 7zOut.cpp | 667 WriteUInt64DefVector(db.StartPos, NID::kStartPos); in WriteHeader() 893 StartPos.SetItem(index, file2.StartPosDefined, file2.StartPos); in AddFile()
|
D | 7zUpdate.cpp | 1454 UInt64 StartPos; member in NArchive::N7z::CThreadDecoder 1496 StartPos, in Execute() 1557 file2.StartPosDefined = inDb.StartPos.GetItem(index, file2.StartPos); in GetFile() 2108 … threadDecoder.StartPos = db->ArcInfo.DataStartPosition; // db->GetFolderStreamPos(folderIndex, 0); in Update()
|
D | 7zHandler.cpp | 580 …case kpidPosition: { UInt64 v; if (_db.StartPos.GetItem(index2, v)) PropVarEm_Set_UInt64(value, v… in GetProperty()
|
/external/llvm-project/clang/lib/Tooling/Refactoring/ |
D | AtomicChange.cpp | 91 auto StartPos = Code.rfind('\n', Start); in violatesColumnLimit() local 92 StartPos = (StartPos == llvm::StringRef::npos) ? 0 : StartPos + 1; in violatesColumnLimit() 99 Code.substr(StartPos, EndPos - StartPos).split(Lines, '\n'); in violatesColumnLimit()
|
/external/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 351 const_iterator StartPos) const { in overlapsFrom() 355 const_iterator j = StartPos; in overlapsFrom() 358 assert((StartPos->start <= i->start || StartPos == other.begin()) && in overlapsFrom() 359 StartPos != other.end() && "Bogus start position hint!"); in overlapsFrom() 365 ++StartPos; in overlapsFrom() 366 if (StartPos != other.end() && StartPos->start <= i->start) { in overlapsFrom() 367 assert(StartPos < other.end() && i < end()); in overlapsFrom()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 405 const_iterator StartPos) const { in overlapsFrom() 409 const_iterator j = StartPos; in overlapsFrom() 412 assert((StartPos->start <= i->start || StartPos == other.begin()) && in overlapsFrom() 413 StartPos != other.end() && "Bogus start position hint!"); in overlapsFrom() 419 ++StartPos; in overlapsFrom() 420 if (StartPos != other.end() && StartPos->start <= i->start) { in overlapsFrom() 421 assert(StartPos < other.end() && i < end()); in overlapsFrom()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 405 const_iterator StartPos) const { in overlapsFrom() 409 const_iterator j = StartPos; in overlapsFrom() 412 assert((StartPos->start <= i->start || StartPos == other.begin()) && in overlapsFrom() 413 StartPos != other.end() && "Bogus start position hint!"); in overlapsFrom() 419 ++StartPos; in overlapsFrom() 420 if (StartPos != other.end() && StartPos->start <= i->start) { in overlapsFrom() 421 assert(StartPos < other.end() && i < end()); in overlapsFrom()
|
/external/llvm/lib/Transforms/ObjCARC/ |
D | DependencyAnalysis.cpp | 229 BasicBlock::iterator StartPos = StartInst->getIterator(); in FindDependencies() local 232 Worklist.push_back(std::make_pair(StartBB, StartPos)); in FindDependencies()
|
/external/llvm-project/llvm/lib/Transforms/ObjCARC/ |
D | DependencyAnalysis.cpp | 216 BasicBlock::iterator StartPos = StartInst->getIterator(); in findDependencies() local 220 Worklist.push_back(std::make_pair(StartBB, StartPos)); in findDependencies()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
D | DependencyAnalysis.cpp | 225 BasicBlock::iterator StartPos = StartInst->getIterator(); in FindDependencies() local 228 Worklist.push_back(std::make_pair(StartBB, StartPos)); in FindDependencies()
|
/external/llvm-project/compiler-rt/lib/fuzzer/ |
D | FuzzerDriver.cpp | 555 auto StartPos = std::search(Data.begin(), Data.end(), in AnalyzeDictionary() local 558 if (StartPos == Data.end()) in AnalyzeDictionary() 562 while (StartPos != Data.end()) { in AnalyzeDictionary() 564 auto EndPos = StartPos + Dict[i].size(); in AnalyzeDictionary() 565 for (auto It = StartPos; It != EndPos; ++It) in AnalyzeDictionary() 568 StartPos = std::search(EndPos, Data.end(), in AnalyzeDictionary()
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerDriver.cpp | 555 auto StartPos = std::search(Data.begin(), Data.end(), in AnalyzeDictionary() local 558 if (StartPos == Data.end()) in AnalyzeDictionary() 562 while (StartPos != Data.end()) { in AnalyzeDictionary() 564 auto EndPos = StartPos + Dict[i].size(); in AnalyzeDictionary() 565 for (auto It = StartPos; It != EndPos; ++It) in AnalyzeDictionary() 568 StartPos = std::search(EndPos, Data.end(), in AnalyzeDictionary()
|
/external/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 1208 size_t StartPos = LastPos; in CheckDag() local 1225 StringRef MatchBuffer = Buffer.substr(StartPos); in CheckDag() 1234 MatchPos += StartPos; in CheckDag() 1257 StartPos = LastPos; in CheckDag()
|
/external/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 186 uint64_t StartPos = 0; in isDenselyPacked() local 191 if (StartPos != Layout->getElementOffsetInBits(i)) in isDenselyPacked() 193 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 796 uint64_t StartPos = 0; in isDenselyPacked() local 801 if (StartPos != Layout->getElementOffsetInBits(i)) in isDenselyPacked() 803 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | ArgumentPromotion.cpp | 798 uint64_t StartPos = 0; in isDenselyPacked() local 803 if (StartPos != Layout->getElementOffsetInBits(i)) in isDenselyPacked() 805 StartPos += DL.getTypeAllocSizeInBits(ElTy); in isDenselyPacked()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | FileCheck.cpp | 1587 size_t StartPos = 0; in CheckDag() local 1615 size_t MatchLen = 0, MatchPos = StartPos; in CheckDag() 1692 Buffer.slice(StartPos, MatchRanges.begin()->Pos); in CheckDag() 1700 StartPos = MatchRanges.rbegin()->End; in CheckDag() 1706 return StartPos; in CheckDag()
|
/external/llvm-project/llvm/lib/FileCheck/ |
D | FileCheck.cpp | 2289 size_t StartPos = 0; in CheckDag() local 2317 size_t MatchLen = 0, MatchPos = StartPos; in CheckDag() 2398 Buffer.slice(StartPos, MatchRanges.begin()->Pos); in CheckDag() 2406 StartPos = MatchRanges.rbegin()->End; in CheckDag() 2412 return StartPos; in CheckDag()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 997 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() local 1007 if (SeqPos == StartPos) in lookupAddressRangeImpl()
|
/external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugLine.cpp | 1297 SequenceIter StartPos = SeqPos; in lookupAddressRangeImpl() local 1307 if (SeqPos == StartPos) in lookupAddressRangeImpl()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 461 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 460 bool overlapsFrom(const LiveRange &Other, const_iterator StartPos) const;
|