/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
Region.h | 67 struct Span { 68 Span(int y, size_t segmentIndex) 86 typedef const Span* SpanIterator; 127 Vector<Span, 16> m_spans; 137 friend bool operator==(const Span&, const Span&); 174 inline bool operator==(const Region::Span& a, const Region::Span& b)
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
span.h | 33 // A Span is a contiguous run of pages. 43 // Information kept for a span (a contiguous run of pages). 44 struct Span { 46 Length length; // Number of pages in span 47 Span* next; // Used when in link list 48 Span* prev; // Used when in link list 52 unsigned int location : 2; // Is the span on a freelist, and if so, which? 57 // For debugging, we can keep a log events per span 63 // What freelist the span is on: IN_USE if on none, or normal or returned 68 void Event(Span* span, char op, int v = 0) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
span.h | 33 // A Span is a contiguous run of pages. 43 // Information kept for a span (a contiguous run of pages). 44 struct Span { 46 Length length; // Number of pages in span 47 Span* next; // Used when in link list 48 Span* prev; // Used when in link list 52 unsigned int location : 2; // Is the span on a freelist, and if so, which? 57 // For debugging, we can keep a log events per span 63 // What freelist the span is on: IN_USE if on none, or normal or returned 68 void Event(Span* span, char op, int v = 0) [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
dfa.h | 43 typedef struct Span { 46 } Span; 48 unsigned int Span_show(Span*, FILE *, unsigned int); 52 Span *span; member in struct:Go
|
/external/eigen/unsupported/Eigen/src/Splines/ |
Spline.h | 167 * \brief Returns the span within the knot vector in which u is falling. 168 * \param u The site for which the span is determined. 170 DenseIndex span(Scalar u) const; 175 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots); 198 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span( 219 const DenseIndex i = Spline::Span(u, degree, knots); 255 DenseIndex Spline<_Scalar, _Dim, _Degree>::span(Scalar u) const function in class:Eigen::Spline 257 return Spline::Span(u, degree(), knots()); 265 const DenseIndex span = this->span(u) local 292 const DenseIndex span = spline.span(u); local 351 const DenseIndex span = spline.span(u); local [all...] |
/frameworks/base/core/java/android/os/ |
StrictMode.java | 144 // How many Span tags (e.g. animations) to report. 1870 Span span = null; local [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyCFG.cpp | 374 ConstantRange Span = 382 Span = Span.subtract(RHSC->getValue()); 387 Span = Span.inverse(); 390 if (Span.getSetSize().ugt(8) || Span.isEmptySet()) 393 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) [all...] |