/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
D | JITLinkMemoryManager.cpp | 28 MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) override { in allocate() argument 29 assert(SegBlocks.count(Seg) && "No allocation for segment"); in allocate() 30 return {static_cast<char *>(SegBlocks[Seg].base()), in allocate() 31 SegBlocks[Seg].allocatedSize()}; in allocate() 33 JITTargetAddress getTargetMemory(ProtectionFlags Seg) override { in allocate() argument 34 assert(SegBlocks.count(Seg) && "No allocation for segment"); in allocate() 35 return reinterpret_cast<JITTargetAddress>(SegBlocks[Seg].base()); in allocate() 88 const auto &Seg = KV.second; in allocate() local 90 if (Seg.getAlignment() > sys::Process::getPageSizeEstimate()) in allocate() 96 TotalSize += Seg.getContentSize(); in allocate() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveInterval.cpp | 1179 void LiveRangeUpdater::add(LiveRange::Segment Seg) { in add() argument 1185 LR->addSegmentToSet(Seg); in add() 1190 if (!LastStart.isValid() || LastStart > Seg.start) { in add() 1199 LastStart = Seg.start; in add() 1203 if (ReadI != E && ReadI->end <= Seg.start) { in add() 1209 ReadI = WriteI = LR->find(Seg.start); in add() 1211 while (ReadI != E && ReadI->end <= Seg.start) in add() 1215 assert(ReadI == E || ReadI->end > Seg.start); in add() 1218 if (ReadI != E && ReadI->start <= Seg.start) { in add() 1219 assert(ReadI->valno == Seg.valno && "Cannot overlap different values"); in add() [all …]
|
D | LiveRegMatrix.cpp | 213 LiveRange::Segment Seg(Start, End, &valno); in checkInterference() local 215 LR.addSegment(Seg); in checkInterference()
|
D | VirtRegMap.cpp | 332 for (const auto &Seg : LI) { in addMBBLiveIns() local 333 I = Indexes->advanceMBBIndex(I, Seg.start); in addMBBLiveIns() 334 for (; I != Indexes->MBBIndexEnd() && I->first < Seg.end; ++I) { in addMBBLiveIns()
|
D | LiveRangeCalc.cpp | 316 LiveRange::Segment &Seg = *std::prev(UB); in isDefOnEntry() local 317 if (Seg.end > Begin) { in isDefOnEntry() 322 if (LR.isUndefIn(Undefs, Seg.end, End)) in isDefOnEntry()
|
D | SplitKit.cpp | 1231 const LiveRange::Segment *Seg = LR.getSegmentContaining(Def); in removeDeadSegment() local 1232 if (Seg == nullptr) in removeDeadSegment() 1234 if (Seg->end != Def.getDeadSlot()) in removeDeadSegment() 1237 LR.removeSegment(*Seg, true); in removeDeadSegment()
|
D | RegisterCoalescer.cpp | 1577 LiveRange::Segment *Seg = DstLI.getSegmentContaining(RegIndex); in eliminateUndefCopy() local 1578 assert(Seg != nullptr && "No segment for defining instruction"); in eliminateUndefCopy() 1579 if (VNInfo *V = DstLI.getVNInfoAt(Seg->end)) { in eliminateUndefCopy()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 622 auto Seg = segments.begin(), EndSeg = segments.end(); in findIndexesLiveAt() local 624 while (Idx != EndIdx && Seg != EndSeg) { in findIndexesLiveAt() 627 if (Seg->end <= *Idx) { in findIndexesLiveAt() 628 Seg = std::upper_bound(++Seg, EndSeg, *Idx, in findIndexesLiveAt() 630 const typename std::remove_reference<decltype(*Seg)>::type &S) { in findIndexesLiveAt() 633 if (Seg == EndSeg) in findIndexesLiveAt() 636 auto NotLessStart = std::lower_bound(Idx, EndIdx, Seg->start); in findIndexesLiveAt() 639 auto NotLessEnd = std::lower_bound(NotLessStart, EndIdx, Seg->end); in findIndexesLiveAt() 645 ++Seg; in findIndexesLiveAt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/ |
D | JITLinkMemoryManager.h | 67 virtual MutableArrayRef<char> getWorkingMemory(ProtectionFlags Seg) = 0; 71 virtual JITTargetAddress getTargetMemory(ProtectionFlags Seg) = 0;
|
/third_party/boost/libs/geometry/index/test/algorithms/ |
D | path_intersection.cpp | 37 typedef bg::model::segment<P> Seg; in test_path_intersection() typedef 38 typename bgi::detail::default_path_intersection_distance_type<Box, Seg>::type dist; in test_path_intersection() 39 Seg seg(*::boost::begin(path), *(::boost::begin(path)+1)); in test_path_intersection()
|
/third_party/boost/libs/geometry/index/test/rtree/ |
D | rtree_intersects_geom.cpp | 19 typedef bg::model::segment<Point> Seg; in test_all() typedef 31 rt.query(bgi::intersects(Seg()), back_inserter(found)); in test_all()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonExpandCondsets.cpp | 416 for (auto &Seg : Range) { in updateDeadsInRange() local 417 if (!Seg.start.isRegister()) in updateDeadsInRange() 419 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange() 422 PredDefs.push_back(Seg.start); in updateDeadsInRange() 470 for (auto &Seg : Range) { in updateDeadsInRange() local 471 if (!Seg.start.isRegister()) in updateDeadsInRange() 473 MachineInstr *DefI = LIS->getInstructionFromIndex(Seg.start); in updateDeadsInRange() 476 if (P.second && Seg.end.isDead()) { in updateDeadsInRange() 487 for (auto &Seg : Range) { in updateDeadsInRange() local 488 if (!Seg.start.isRegister() || !Range.liveAt(Seg.start.getPrevSlot())) in updateDeadsInRange() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 1514 for (const auto Seg : Module->data_segments) { in translate() local 1515 LOG(out << Id << ": (" << Seg.source_offset << ", " << Seg.source_size in translate() 1516 << ") => " << Seg.dest_addr); in translate() 1517 if (Seg.init) { in translate() 1587 for (const auto Seg : Module->data_segments) { in translate() local 1589 if (Seg.dest_addr > WritePtr) { in translate() 1591 Globals.get(), Seg.dest_addr - WritePtr)); in translate() 1592 WritePtr = Seg.dest_addr; in translate() 1599 Seg.source_offset, in translate() 1600 Seg.source_size)); in translate() [all …]
|
/third_party/skia/third_party/externals/icu/source/data/brkitr/ |
D | es.txt | 122 "Seg.",
|
/third_party/flutter/skia/third_party/externals/icu/source/data/brkitr/ |
D | es.txt | 122 "Seg.",
|
/third_party/icu/icu4c/source/data/brkitr/ |
D | es.txt | 122 "Seg.",
|
/third_party/giflib/ |
D | ChangeLog | 561 * lib/dgif_lib.c: (DGifSlurp) Fix a Seg Fault when an image contains 618 a Seg Fault. It is now losing all extension data however. I know
|
/third_party/boost/libs/thread/doc/ |
D | changes.qbk | 187 * [@http://svn.boost.org/trac/boost/ticket/9118 #9118] Seg fault on thread join when llvm and libc+… 210 * [@http://svn.boost.org/trac/boost/ticket/9118 #9118] Seg fault on thread join when llvm and libc+… 271 * [@http://svn.boost.org/trac/boost/ticket/9118 #9118] Seg fault on thread join when llvm and libc+… 328 * [@http://svn.boost.org/trac/boost/ticket/9118 #9118] Seg fault on thread join when llvm and libc+…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86MCInstLower.cpp | 386 MCOperand Seg = Inst.getOperand(AddrBase + X86::AddrSegmentReg); in SimplifyShortMoveForm() local 390 Inst.addOperand(Seg); in SimplifyShortMoveForm()
|
/third_party/boost/libs/geometry/doc/ |
D | release_notes.qbk | 281 * [@https://github.com/boostorg/geometry/issues/370 370] Buffer Seg Faults with Ring as Input
|
/third_party/gstreamer/gstreamer/po/ |
D | hu.po | 90 msgstr "Segédfolyamat indításának letiltása a nyilvántartás elemzése közben"
|
/third_party/flutter/skia/ |
D | go.sum | 658 go.skia.org/infra v0.0.0-20190728052056-4089c303d398 h1:PM7lIbVP8M56MvuPumBJ+Seg+d2jKm6XMtgvwFRN9q4=
|
/third_party/eudev/hwdb/ |
D | 20-usb-vendor-model.hwdb | 50340 ID_MODEL_FROM_DATABASE=PV-D231U(RN)-F [PixelView PlayTV SBTVD Full-Seg]
|