HomeSort by relevance Sort by last modified time
    Searched refs:Span (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/swiftshader/src/Renderer/
Primitive.hpp 66 struct Span
72 Span outlineUnderflow;
73 Span outline[OUTLINE_RESOLUTION];
74 Span outlineOverflow;
QuadRasterizer.cpp 120 Int x0a = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->left) + (y + 0) * sizeof(Primitive::Span)));
121 Int x0b = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->left) + (y + 1) * sizeof(Primitive::Span)));
126 x0a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->left) + (y + 0) * sizeof(Primitive::Span)));
127 x0b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->left) + (y + 1) * sizeof(Primitive::Span)));
133 Int x1a = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->right) + (y + 0) * sizeof(Primitive::Span)));
134 Int x1b = Int(*Pointer<Short>(primitive + OFFSET(Primitive,outline->right) + (y + 1) * sizeof(Primitive::Span)));
139 x1a = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->right) + (y + 0) * sizeof(Primitive::Span)));
140 x1b = Int(*Pointer<Short>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline->right) + (y + 1) * sizeof(Primitive::Span)));
271 xLeft[q] = *Pointer<Short4>(primitive + q * sizeof(Primitive) + OFFSET(Primitive,outline) + y * sizeof(Primitive::Span));
  /prebuilts/tools/linux-x86_64/kythe/proto/
common.proto 44 // A Span represents an inclusive-exclusive range inside of a file or buffer.
45 message Span {
  /external/skia/src/core/
SkLinearBitmapPipeline_core.h 18 // span then becomes a normal span except in special cases where an extra Y is given. The bilerp
21 // - edge span predicate.
46 // The Span class enables efficient processing horizontal spans of pixels.
47 // * start - the point where to start the span.
57 class Span {
59 Span(SkPoint start, SkScalar length, int count)
77 Span emptySpan() { return Span{{0.0, 0.0}, 0.0f, 0}; }
89 Span breakAt(SkScalar breakX, SkScalar dx)
    [all...]
SkLinearBitmapPipeline_matrix.h 26 bool maybeProcessSpan(Span span, Next* next) const {
28 std::tie(start, length, count) = span;
29 next->pointSpan(Span{start + SkPoint{fXOffset, fYOffset}, length, count});
48 bool maybeProcessSpan(Span span, Next* next) const {
50 std::tie(start, length, count) = span;
54 next->pointSpan(Span{newStart, newLength, count});
78 bool maybeProcessSpan(Span span, Next* next) const
    [all...]
SkLinearBitmapPipeline_tile.h 30 * value should be a border color. For this case, create the span using clampToSinglePixel.
44 bool maybeProcessSpan(Span originalSpan, Next* next) {
50 Span span{{x, y}, length, count};
52 if (span.completelyWithin(0.0f, fXMax)) {
53 next->pointSpan(span);
79 // corresponding to 5 samples specified in the A, B span. The distance from A to the next
80 // span starting at C is 5 * dx, so count * dx.
84 // * Under - for portions of the span < xMin, take the color at pixel {xMin, y} and use it
86 // * Middle - for the portion of the span between xMin and xMax sample normally
    [all...]
SkLinearBitmapPipeline_sample.h 295 static void src_strategy_blend(Span span, Next* next, Strategy* strategy) {
299 std::tie(start, length, count) = span;
361 void pointSpan(Span span) override {
362 SkASSERT(!span.isEmpty());
366 std::tie(start, length, count) = span;
369 this->spanSlowRate(span);
371 src_strategy_blend(span, fNext, &fAccessor);
373 this->spanFastRate(span);
    [all...]
SkLinearBitmapPipeline.cpp 31 // * maybeProcessSpan(span, next) - This represents a horizontal series of pixels
33 // span - encapsulation of span.
35 // maybeProcessSpan - returns false if it can not process the span and needs to fallback to
59 // The span you pass must not be empty.
60 void pointSpan(Span span) override {
61 SkASSERT(!span.isEmpty());
62 if (!fStrategy.maybeProcessSpan(span, fNext)) {
63 span_fallback(span, this)
    [all...]
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator_test.cpp 28 original_style.spans = {Span{"i", 1, 10}, Span{"b", 2, 3}, Span{"b", 6, 7}};
49 original_style.spans.insert(original_style.spans.begin(), Span{"em", 0, 11u});
75 original_style.spans = {Span{"b", 0, 3}, Span{"i", 0, 3}};
97 original_style.spans = {Span{"i", 2, 3}, Span{"b", 0, 1}};
119 original_style.spans = {Span{"b", 16u, 19u}, Span{"em", 29u, 47u}, Span{"i", 38u, 40u}
    [all...]
  /frameworks/base/tools/aapt2/
StringPool.h 34 struct Span {
42 std::vector<Span> spans;
128 struct Span {
137 std::vector<Span> spans;
StringPool_test.cpp 146 StyleString str{{"android"}, {Span{{"b"}, 2, 6}}};
154 const StringPool::Span& span = ref->spans.front(); local
155 EXPECT_EQ(*(span.name), "b");
156 EXPECT_EQ(2u, span.first_char);
157 EXPECT_EQ(6u, span.last_char);
218 StyleString{{"style"}, {Span{{"b"}, 0, 1}, Span{{"i"}, 2, 3}}});
253 const ResStringPool_span* span = test.styleAt(4); local
254 ASSERT_NE(nullptr, span);
    [all...]
StringPool.cpp 130 for (const Span& span : entry_->spans) {
131 const Span& rhs_span = *rhs_iter;
132 if (span.first_char != rhs_span.first_char || span.last_char != rhs_span.last_char ||
133 span.name != rhs_span.name) {
200 for (const aapt::Span& span : str.spans) {
202 Span{MakeRef(span.name), span.first_char, span.last_char})
416 android::ResStringPool_span* span = local
    [all...]
  /external/skia/tests/
SkLinearBitmapPipelineTest.cpp 25 static SkString dump(SkScalar cut, Span prefix, Span remainder) {
38 Span span, SkScalar dx, SkScalar cut, SkPoint start, SkScalar len, int count) {
40 std::tie(originalStart, originalLen, originalCount) = span;
42 Span prefix = span.breakAt(cut, dx);
47 REPORTER_ASSERT_MESSAGE(reporter, prefixStart == start, dump(cut, prefix, span));
48 REPORTER_ASSERT_MESSAGE(reporter, prefixLen == len, dump(cut, prefix, span));
49 REPORTER_ASSERT_MESSAGE(reporter, prefixCount == count, dump(cut, prefix, span));
    [all...]
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 231 *Pointer<Short>(leftEdge + y * sizeof(Primitive::Span)) = x;
232 *Pointer<Short>(rightEdge + y * sizeof(Primitive::Span)) = x;
254 For(yMin, yMin < yMax && *Pointer<Short>(leftEdge + yMin * sizeof(Primitive::Span)) == *Pointer<Short>(rightEdge + yMin * sizeof(Primitive::Span)), yMin++)
259 For(yMax, yMax > yMin && *Pointer<Short>(leftEdge + (yMax - 1) * sizeof(Primitive::Span)) == *Pointer<Short>(rightEdge + (yMax - 1) * sizeof(Primitive::Span)), yMax--)
269 *Pointer<Short>(leftEdge + (yMin - 1) * sizeof(Primitive::Span)) = *Pointer<Short>(leftEdge + yMin * sizeof(Primitive::Span));
270 *Pointer<Short>(rightEdge + (yMin - 1) * sizeof(Primitive::Span)) = *Pointer<Short>(leftEdge + yMin * sizeof(Primitive::Span));
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
dumper.go 101 // this permits printing of the unexported span and
103 // calling the Span() and Comment() instead of using
161 // if span, ok := x.Interface().(lexical.Span); ok {
162 // p.printf("%s", &span)
173 // p.printf("Span: %s\n", n.Span())
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
dumper.go 101 // this permits printing of the unexported span and
103 // calling the Span() and Comment() instead of using
161 // if span, ok := x.Interface().(lexical.Span); ok {
162 // p.printf("%s", &span)
173 // p.printf("Span: %s\n", n.Span())
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-impl/0.13.0/
opentracing-impl-0.13.0.jar 
  /prebuilts/tools/common/m2/repository/io/opentracing/opentracing-api/0.13.0/
opentracing-api-0.13.0.jar 
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
StaggeredGridLayoutManager.java 80 * check if there are gaps in the because of full span items. If it finds, it will re-layout
112 Span[] mSpans;
126 * The width or height per span, depending on the orientation.
200 * If a full span item is invalid / or created in reverse direction; it may create gaps in
266 * When a full span item is laid out in reverse direction, it sets a flag which we check when
334 * Intermediate gaps created by full span items are tracked via mLaidOutInvalidFullSpan field.
388 // equal, check span indices.
400 private boolean checkSpanForGap(Span span) {
402 if (span.getEndLine() < mPrimaryOrientation.getEndAfterPadding())
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
shadow.go 59 // Span stores the minimum range of byte positions in the file in which a
63 // shadowing variable is declared within the span of the shadowed variable.
69 // One wrinkle: A "naked return" is a silent use of a variable that the Span
79 type Span struct {
84 // contains reports whether the position is inside the span.
85 func (s Span) contains(pos token.Pos) bool {
89 // growSpan expands the span for the object to contain the instance represented
97 span, ok := pkg.spans[obj]
99 if span.min > pos {
100 span.min = po
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
shadow.go 59 // Span stores the minimum range of byte positions in the file in which a
63 // shadowing variable is declared within the span of the shadowed variable.
69 // One wrinkle: A "naked return" is a silent use of a variable that the Span
79 type Span struct {
84 // contains reports whether the position is inside the span.
85 func (s Span) contains(pos token.Pos) bool {
89 // growSpan expands the span for the object to contain the instance represented
97 span, ok := pkg.spans[obj]
99 if span.min > pos {
100 span.min = po
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 158 // How many Span tags (e.g. animations) to report.
2301 Span span = null; local
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 188 * \brief Returns the span within the knot vector in which u is falling.
189 * \param u The site for which the span is determined.
191 DenseIndex span(Scalar u) const;
196 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots);
234 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span(
255 const DenseIndex i = Spline::Span(u, degree, knots);
291 DenseIndex Spline<_Scalar, _Dim, _Degree>::span(Scalar u) const function in class:Eigen::Spline
293 return Spline::Span(u, degree(), knots());
301 const DenseIndex span = this->span(u) local
324 const DenseIndex span = spline.span(u); local
386 const DenseIndex span = SplineType::Span(u, p, U); local
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/width/
transform.go 17 func (foldTransform) Span(src []byte, atEOF bool) (n int, err error) {
99 func (narrowTransform) Span(src []byte, atEOF bool) (n int, err error) {
182 func (wideTransform) Span(src []byte, atEOF bool) (n int, err error) {

Completed in 731 milliseconds

1 2 3