HomeSort by relevance Sort by last modified time
    Searched refs:Segments (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 10 // LiveIntervalUnion is a union of live segments across multiple live virtual
45 // A set of live virtual register segments that supports fast insertion,
63 LiveSegments Segments; // union of virtual reg segments
66 explicit LiveIntervalUnion(Allocator &a) : Tag(0), Segments(a) {}
68 // Iterate over all segments in the union of live virtual registers ordered
70 SegmentIter begin() { return Segments.begin(); }
71 SegmentIter end() { return Segments.end(); }
72 SegmentIter find(SlotIndex x) { return Segments.find(x); }
73 bool empty() const { return Segments.empty();
    [all...]
LiveInterval.h 143 /// The Segments are organized in a static single assignment form: At places
185 typedef SmallVector<Segment,4> Segments;
188 Segments segments; // the liveness segments
191 typedef Segments::iterator iterator;
192 iterator begin() { return segments.begin(); }
193 iterator end() { return segments.end(); }
195 typedef Segments::const_iterator const_iterator;
196 const_iterator begin() const { return segments.begin();
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
ELFSegmentFactory.h 28 typedef std::vector<ELFSegment*> Segments;
29 typedef Segments::const_iterator const_iterator;
30 typedef Segments::iterator iterator;
63 Segments m_Segments;
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgamma.c 30 // The curve is stored in segments, where each segment can be sampled or specified by parameters.
214 cmsInt32Number nSegments, const cmsCurveSegment* Segments,
227 cmsSignalError(ContextID, cmsERROR_RANGE, "Couldn't create tone curve with zero segments and no table");
235 // In this case, there are no segments
237 p ->Segments = NULL;
241 p ->Segments = (cmsCurveSegment*) _cmsCalloc(ContextID, nSegments, sizeof(cmsCurveSegment));
242 if (p ->Segments == NULL) goto Error;
269 // Initialize the segments stuff. The evaluator for each segment is located and a pointer to it
271 if (Segments != NULL && (nSegments > 0)) {
281 if (Segments[i].Type == 0
    [all...]
cmstypes.c     [all...]
lcms2_internal.h 776 cmsUInt32Number nSegments; // Number of segments in the curve. Zero for a 16-bit based tables
777 cmsCurveSegment* Segments; // The segments
778 cmsInterpParams** SegInterp; // Array of private optimizations for interpolation in table-based segments
    [all...]
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.cpp 28 // Merge a LiveInterval's segments. Guarantee no overlaps.
34 // Insert each of the virtual register's live segments into the map.
37 SegmentIter SegPos = Segments.find(RegPos->start);
46 // We have reached the end of Segments, so it is no longer necessary to search
55 // Remove a live virtual register's segments from this union.
61 // Remove each of the virtual register's live segments from the map.
64 SegmentIter SegPos = Segments.find(RegPos->start);
72 // Skip all segments that may have been coalesced.
87 for (LiveSegments::const_iterator SI = Segments.begin(); SI.valid(); ++SI) {
97 for (SegmentIter SI = Segments.begin(); SI.valid(); ++SI
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
lcms2.h     [all...]

Completed in 138 milliseconds