Home
last modified time | relevance | path

Searched refs:Segments (Results 1 – 25 of 29) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DLiveIntervalUnion.h62 LiveSegments Segments; // union of virtual reg segments variable
65 explicit LiveIntervalUnion(Allocator &a) : Segments(a) {} in LiveIntervalUnion()
69 SegmentIter begin() { return Segments.begin(); } in begin()
70 SegmentIter end() { return Segments.end(); } in end()
71 SegmentIter find(SlotIndex x) { return Segments.find(x); } in find()
72 ConstSegmentIter begin() const { return Segments.begin(); } in begin()
73 ConstSegmentIter end() const { return Segments.end(); } in end()
74 ConstSegmentIter find(SlotIndex x) const { return Segments.find(x); } in find()
76 bool empty() const { return Segments.empty(); } in empty()
77 SlotIndex startIndex() const { return Segments.start(); } in startIndex()
[all …]
DLiveInterval.h199 using Segments = SmallVector<Segment, 2>; variable
202 Segments segments; // the liveness segments
211 using iterator = Segments::iterator;
212 using const_iterator = Segments::const_iterator;
DLiveIntervals.h475 void extendSegmentsToUses(LiveRange &Segments,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp368 std::vector<CoverageSegment> &Segments; member in __anon795d4b670311::SegmentBuilder
371 SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {} in SegmentBuilder() argument
383 if (!Segments.empty() && !IsRegionEntry && !EmitSkippedRegion) { in startSegment()
384 const auto &Last = Segments.back(); in startSegment()
391 Segments.emplace_back(StartLoc.first, StartLoc.second, in startSegment()
395 Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry); in startSegment()
398 const auto &Last = Segments.back(); in startSegment()
568 std::vector<CoverageSegment> Segments; in buildSegments() local
569 SegmentBuilder Builder(Segments); in buildSegments()
585 for (unsigned I = 1, E = Segments.size(); I < E; ++I) { in buildSegments()
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
Dimport.go162 Segments []segment `json:"segments"`
188 for sIdx := 0; sIdx+1 < len(f.Segments); sIdx++ {
189 start := Location{(int)(f.Segments[sIdx][0].(float64)), (int)(f.Segments[sIdx][1].(float64))}
190 end := Location{(int)(f.Segments[sIdx+1][0].(float64)), (int)(f.Segments[sIdx+1][1].(float64))}
191 if covered := f.Segments[sIdx][2].(float64) != 0; covered {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveIntervalUnion.cpp37 SegmentIter SegPos = Segments.find(RegPos->start); in unify()
64 SegmentIter SegPos = Segments.find(RegPos->start); in extract()
87 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) { in print()
97 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI) in verify()
DLiveIntervals.cpp365 void LiveIntervals::extendSegmentsToUses(LiveRange &Segments, in extendSegmentsToUses() argument
398 if (VNInfo *ExtVNI = Segments.extendInBlock(BlockStart, Idx)) { in extendSegmentsToUses()
419 Segments.addSegment(LiveRange::Segment(BlockStart, Idx, VNI)); in extendSegmentsToUses()
DLiveInterval.cpp284 LiveRange::Segments>;
293 LiveRange::Segments &segmentsColl() { return LR->segments; } in segmentsColl()
/third_party/boost/boost/fusion/support/detail/
Dsegmented_fold_until_impl.hpp110 template <typename Segments, typename State, typename Context, typename Fun>
376 template <typename Segments, typename State, typename Context, typename Fun>
381 typename result_of::begin<Segments>::type
382 , typename result_of::end<Segments>::type
393 … static type call(Segments& segs, State const& state, Context const& context, Fun const& fun) in call()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h482 std::vector<CoverageSegment> Segments; variable
496 return Segments.begin(); in begin()
500 return Segments.end(); in end()
503 bool empty() const { return Segments.empty(); } in empty()
642 Line(Line), Segments(), Stats() { in LineCoverageIterator()
669 SmallVector<const CoverageSegment *, 4> Segments; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkGeneric.cpp190 JITLinkMemoryManager::SegmentsRequestMap Segments; in allocateSegments() local
214 Segments[Prot] = {SegAlign, SegContentSize, in allocateSegments()
227 if (auto AllocOrErr = Ctx->getMemoryManager().allocate(Segments)) in allocateSegments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/DIA/
DDIATable.cpp40 return PDB_TableType::Segments; in getTableType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp450 encodeULEB128(Section.Segments.size(), OS); in writeSectionContent()
451 for (auto &Segment : Section.Segments) { in writeSectionContent()
491 encodeULEB128(Section.Segments.size(), OS); in writeSectionContent()
492 for (auto &Segment : Section.Segments) { in writeSectionContent()
DWasmYAML.cpp143 IO.mapOptional("Segments", Section.Segments); in sectionMapping()
153 IO.mapRequired("Segments", Section.Segments); in sectionMapping()
/third_party/curl/packages/TPF/
Dcurl.mak50 # Segments to be compiled with gcc compiler
/third_party/elfio/elfio/
Delfio.hpp928 friend class Segments;
929 class Segments class in ELFIO::elfio
933 Segments( elfio* parent ) : parent( parent ) {} in Segments() function in ELFIO::elfio::Segments
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h359 std::vector<ElemSegment> Segments; member
379 std::vector<DataSegment> Segments; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/
DPDBTypes.h90 Segments, enumerator
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_shader_noperspective_interpolation.txt205 System Specification, section 13.4 "Line Segments".
/third_party/openGLES/extensions/NV/
DNV_shader_noperspective_interpolation.txt205 System Specification, section 13.4 "Line Segments".
/third_party/boost/libs/locale/doc/
Dboundary_analysys.txt70 \section boundary_analysys_segments Iterating Over Segments
260 \subsection boundary_analysys_segments_search Locating Segments
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/
DOES_fixed_point.txt270 Section 3.4 Line Segments
/third_party/openGLES/extensions/OES/
DOES_fixed_point.txt280 Section 3.4 Line Segments
/third_party/openGLES/extensions/EXT/
DEXT_clip_cull_distance.txt212 algorithms described in sections 13.6 (Line Segments) and 13.7
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_clip_cull_distance.txt212 algorithms described in sections 13.6 (Line Segments) and 13.7

12