Searched refs:pts (Results 276 - 300 of 530) sorted by relevance

<<11121314151617181920>>

/external/libvpx/libvpx/vpx/
H A Dsvc_context.h88 struct vpx_image *rawimg, vpx_codec_pts_t pts,
/external/skia/experimental/Intersection/
H A DSkAntiEdge.h56 int build(const SkPoint pts[], int count);
H A DEdgeWalker.cpp292 SkPoint pts[4]; local
297 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
303 bounds.set(pts[0].fX, pts[0].fY, pts[0].fX, pts[0].fY);
323 bounds.growToInclude(pts[i].fX, pts[i].fY);
777 void dump(const SkPoint* pts, SkPath::Verb verb) {
784 LineXYAtT(pts, fT
1879 int pts; local
1920 debugShowLineIntersection(int pts, const WorkEdge& wt, const WorkEdge& wn, const double wtTs[2], const double wnTs[2]) argument
1972 int pts; local
[all...]
H A DConvexHull_Test.cpp245 char pts = 0; local
249 if (pts & 1 << order[pt]) {
269 pts |= 1 << order[pt];
273 if (pts & 1 << bit) {
281 pts |= 1 << bit;
298 if (pts != cmpPts) {
H A DDataTypes.h395 const Cubic& first() const { return (const Cubic&) pts[0]; }
396 const Cubic& second() const { return (const Cubic&) pts[3]; }
397 _Point pts[7]; member in struct:CubicPair
401 const Quadratic& first() const { return (const Quadratic&) pts[0]; }
402 const Quadratic& second() const { return (const Quadratic&) pts[2]; }
403 _Point pts[5]; member in struct:QuadraticPair
/external/skia/src/effects/gradients/
H A DSkLinearGradient.h15 SkLinearGradient(const SkPoint pts[2], const Descriptor&, const SkMatrix* localMatrix);
/external/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp527 const SkPoint pts[], const SkPaint& paint) {
528 this->addDrawCommand(new SkDrawPointsCommand(mode, count, pts, paint));
649 void SkDebugCanvas::outputPointsCommon(const SkPoint* pts, int count) { argument
651 this->outputScalar(pts[index].fX);
653 this->outputScalar(pts[index].fY);
660 void SkDebugCanvas::outputPoints(const SkPoint* pts, int count) { argument
661 this->outputPointsCommon(pts, count);
665 void SkDebugCanvas::outputConicPoints(const SkPoint* pts, SkScalar weight) { argument
666 this->outputPointsCommon(pts, 2);
680 SkPoint pts[ local
526 drawPoints(PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) argument
[all...]
H A DSkDebugCanvas.h192 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
328 void outputConicPoints(const SkPoint* pts, SkScalar weight);
329 void outputPoints(const SkPoint* pts, int count);
330 void outputPointsCommon(const SkPoint* pts, int count);
H A DSkObjectParser.h72 @param pts[] Array of SkPoints
75 static SkString* PointsToString(const SkPoint pts[], size_t count);
/external/chromium_org/third_party/skia/gm/
H A Ddashing.cpp232 SkPoint pts[2]; local
235 pts[0].set(0, SkIntToScalar(y));
236 pts[1].set(lineLength, SkIntToScalar(y));
238 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, pts, p);
244 pts[0].set(SkIntToScalar(x), 0);
245 pts[1].set(SkIntToScalar(x), lineLength);
247 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, pts, p);
/external/chromium_org/third_party/skia/include/core/
H A DSkPath.h696 * this->moveTo(pts[0]);
698 * this->lineTo(pts[i]);
704 void addPoly(const SkPoint pts[], int count, bool close);
848 @param pts The points representing the current verb and/or segment
853 Verb next(SkPoint pts[4], bool doConsumeDegerates = true) { argument
857 return this->doNext(pts);
894 Verb autoClose(SkPoint pts[2]);
896 Verb doNext(SkPoint pts[4]);
911 @param pts The points representing the current verb and/or segment
915 Verb next(SkPoint pts[
[all...]
H A DSkRect.h535 void set(const SkPoint pts[], int count) {
539 (void)this->setBoundsCheck(pts, count);
542 // alias for set(pts, count)
543 void setBounds(const SkPoint pts[], int count) {
544 (void)this->setBoundsCheck(pts, count);
552 bool setBoundsCheck(const SkPoint pts[], int count);
725 void growToInclude(const SkPoint pts[], int count) {
726 this->growToInclude(pts, sizeof(SkPoint), count);
730 void growToInclude(const SkPoint pts[], size_t stride, int count) {
733 const SkPoint* end = (const SkPoint*)((intptr_t)pts
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp285 SkPoint pts[kMaxEdges]; local
298 int count = path.getPoints(pts, kMaxEdges);
301 if (pts[lastPt] != pts[i]) {
302 SkVector v = pts[i] - pts[lastPt];
311 SkPoint p = pts[i] + t;
/external/skia/gm/
H A Ddashing.cpp219 SkPoint pts[2]; local
222 pts[0].set(0, SkIntToScalar(y));
223 pts[1].set(lineLength, SkIntToScalar(y));
225 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, pts, p);
231 pts[0].set(SkIntToScalar(x), 0);
232 pts[1].set(SkIntToScalar(x), lineLength);
234 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, pts, p);
/external/skia/include/core/
H A DSkPath.h695 * this->moveTo(pts[0]);
697 * this->lineTo(pts[i]);
703 void addPoly(const SkPoint pts[], int count, bool close);
847 @param pts The points representing the current verb and/or segment
852 Verb next(SkPoint pts[4], bool doConsumeDegerates = true) { argument
856 return this->doNext(pts);
893 Verb autoClose(SkPoint pts[2]);
895 Verb doNext(SkPoint pts[4]);
910 @param pts The points representing the current verb and/or segment
914 Verb next(SkPoint pts[
[all...]
H A DSkRect.h537 void set(const SkPoint pts[], int count) {
541 (void)this->setBoundsCheck(pts, count);
544 // alias for set(pts, count)
545 void setBounds(const SkPoint pts[], int count) {
546 (void)this->setBoundsCheck(pts, count);
554 bool setBoundsCheck(const SkPoint pts[], int count);
727 void growToInclude(const SkPoint pts[], int count) {
728 this->growToInclude(pts, sizeof(SkPoint), count);
732 void growToInclude(const SkPoint pts[], size_t stride, int count) {
735 const SkPoint* end = (const SkPoint*)((intptr_t)pts
[all...]
/external/skia/src/gpu/effects/
H A DGrConvexPolyEffect.cpp278 SkPoint pts[kMaxEdges]; local
291 int count = path.getPoints(pts, kMaxEdges);
294 if (pts[lastPt] != pts[i]) {
295 SkVector v = pts[i] - pts[lastPt];
304 SkPoint p = pts[i] + t;
/external/libvpx/libvpx/test/
H A Dsvc_test.cc266 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
294 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
307 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
320 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
383 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
390 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
396 res = vpx_svc_encode(&svc_, &codec_, NULL, video.pts(),
433 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
446 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
459 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(),
[all...]
H A Ddatarate_test.cc52 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_;
74 << pkt->data.frame.pts;
89 // Update the most recent pts.
90 last_pts_ = pkt->data.frame.pts;
301 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_;
322 << pkt->data.frame.pts;
332 // Update the most recent pts.
333 last_pts_ = pkt->data.frame.pts;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalker.cpp292 SkPoint pts[4]; local
297 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
303 bounds.set(pts[0].fX, pts[0].fY, pts[0].fX, pts[0].fY);
323 bounds.growToInclude(pts[i].fX, pts[i].fY);
777 void dump(const SkPoint* pts, SkPath::Verb verb) {
784 LineXYAtT(pts, fT
1879 int pts; local
1920 debugShowLineIntersection(int pts, const WorkEdge& wt, const WorkEdge& wn, const double wtTs[2], const double wnTs[2]) argument
1972 int pts; local
[all...]
H A DConvexHull_Test.cpp245 char pts = 0; local
249 if (pts & 1 << order[pt]) {
269 pts |= 1 << order[pt];
273 if (pts & 1 << bit) {
281 pts |= 1 << bit;
298 if (pts != cmpPts) {
H A DDataTypes.h395 const Cubic& first() const { return (const Cubic&) pts[0]; }
396 const Cubic& second() const { return (const Cubic&) pts[3]; }
397 _Point pts[7]; member in struct:CubicPair
401 const Quadratic& first() const { return (const Quadratic&) pts[0]; }
402 const Quadratic& second() const { return (const Quadratic&) pts[2]; }
403 _Point pts[5]; member in struct:QuadraticPair
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCubic.cpp568 dst.pts[0] = fPts[0];
569 dst.pts[1].fX = (fPts[0].fX + fPts[1].fX) / 2;
570 dst.pts[1].fY = (fPts[0].fY + fPts[1].fY) / 2;
571 dst.pts[2].fX = (fPts[0].fX + 2 * fPts[1].fX + fPts[2].fX) / 4;
572 dst.pts[2].fY = (fPts[0].fY + 2 * fPts[1].fY + fPts[2].fY) / 4;
573 dst.pts[3].fX = (fPts[0].fX + 3 * (fPts[1].fX + fPts[2].fX) + fPts[3].fX) / 8;
574 dst.pts[3].fY = (fPts[0].fY + 3 * (fPts[1].fY + fPts[2].fY) + fPts[3].fY) / 8;
575 dst.pts[4].fX = (fPts[1].fX + 2 * fPts[2].fX + fPts[3].fX) / 4;
576 dst.pts[4].fY = (fPts[1].fY + 2 * fPts[2].fY + fPts[3].fY) / 4;
577 dst.pts[
[all...]
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp568 dst.pts[0] = fPts[0];
569 dst.pts[1].fX = (fPts[0].fX + fPts[1].fX) / 2;
570 dst.pts[1].fY = (fPts[0].fY + fPts[1].fY) / 2;
571 dst.pts[2].fX = (fPts[0].fX + 2 * fPts[1].fX + fPts[2].fX) / 4;
572 dst.pts[2].fY = (fPts[0].fY + 2 * fPts[1].fY + fPts[2].fY) / 4;
573 dst.pts[3].fX = (fPts[0].fX + 3 * (fPts[1].fX + fPts[2].fX) + fPts[3].fX) / 8;
574 dst.pts[3].fY = (fPts[0].fY + 3 * (fPts[1].fY + fPts[2].fY) + fPts[3].fY) / 8;
575 dst.pts[4].fX = (fPts[1].fX + 2 * fPts[2].fX + fPts[3].fX) / 4;
576 dst.pts[4].fY = (fPts[1].fY + 2 * fPts[2].fY + fPts[3].fY) / 4;
577 dst.pts[
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Ddatarate_test.cc55 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_;
77 << pkt->data.frame.pts;
92 // Update the most recent pts.
93 last_pts_ = pkt->data.frame.pts;
341 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_;
362 << pkt->data.frame.pts;
372 // Update the most recent pts.
373 last_pts_ = pkt->data.frame.pts;

Completed in 1914 milliseconds

<<11121314151617181920>>