HomeSort by relevance Sort by last modified time
    Searched refs:pts (Results 151 - 175 of 472) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/include/core/
SkPath.h 611 * Chop a conic into N quads, stored continguously in pts[], where
615 SkScalar w, SkPoint pts[], int pow2);
    [all...]
  /external/skia/tools/
create_test_font.cpp 120 static int output_points(const SkPoint* pts, int emSize, int count, SkString* ptsOut) {
122 // SkASSERT(floor(pts[index].fX) == pts[index].fX);
123 output_scalar(pts[index].fX, emSize, ptsOut);
124 // SkASSERT(floor(pts[index].fY) == pts[index].fY);
125 output_scalar(pts[index].fY, emSize, ptsOut);
142 SkPoint pts[4]; local
143 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
147 output_points(&pts[0], emSize, 1, ptsOut)
    [all...]
  /external/libvpx/libvpx/examples/
twopass_encoder.c 69 vpx_codec_pts_t pts,
77 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
99 vpx_codec_pts_t pts,
107 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
119 pkt->data.frame.pts))
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
twopass_encoder.c 71 vpx_codec_pts_t pts,
78 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
96 vpx_codec_pts_t pts,
103 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
114 pkt->data.frame.pts))
  /external/skia/src/gpu/batches/
GrAAConvexTessellator.cpp 302 SkPoint pts[4];
304 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
307 this->lineTo(m, pts[1], false);
310 this->quadTo(m, pts);
313 this->cubicTo(m, pts);
316 this->conicTo(m, pts, iter.conicWeight());
861 void GrAAConvexTessellator::quadTo(SkPoint pts[3]) {
862 int maxCount = GrPathUtils::quadraticPointCount(pts, kQuadTolerance);
865 int count = GrPathUtils::generateQuadraticPoints(pts[0], pts[1], pts[2],
    [all...]
  /external/opencv/cvaux/src/
cvcalibfilter.cpp 437 bool CvCalibFilter::Push( const CvPoint2D32f** pts )
444 if( !pts )
449 pts = (const CvPoint2D32f**)latestPoints;
454 if( !pts[i] )
468 memcpy( points[i] + framesAccepted*etalonPointCount, pts[i],
483 bool CvCalibFilter::GetLatestPoints( int idx, CvPoint2D32f** pts,
489 !pts || !count || !found )
499 *pts = latestPoints[idx];
528 CvPoint2D32f* pts = 0; local
530 GetLatestPoints( i, &pts, &count, &found )
    [all...]
  /external/strace/
poll.c 98 decode_poll_exiting(struct tcb *tcp, const long pts)
171 if (pts) {
172 const char *str = sprint_timespec(tcp, pts);
  /external/skia/gm/
aaxfermodes.cpp 78 SkPoint pts[4] = { variable
84 fOval.moveTo(pts[0]);
85 fOval.quadTo(pts[1], pts[2]);
86 fOval.quadTo(pts[3], pts[0]);
shallowgradient.cpp 14 SkPoint pts[] = { { 0, 0 }, { size.width(), size.height() } }; local
15 return SkGradientShader::CreateLinear(pts, colors, nullptr, count,
arithmode.cpp 29 SkPoint pts[] = { {0, 0}, {SkIntToScalar(WW), SkIntToScalar(HH)} }; local
34 SkShader* s = SkGradientShader::CreateLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors),
45 SkPoint pts[] = { {0, SkIntToScalar(HH)}, {SkIntToScalar(WW), 0} }; local
50 SkShader* s = SkGradientShader::CreateLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors),
colorfilterimagefilter.cpp 57 const SkPoint pts[] = { { 0, 0 }, { 100, 100 } }; local
59 return SkGradientShader::CreateLinear(pts, colors, nullptr, 3, SkShader::kRepeat_TileMode);
63 const SkPoint pts[] = { { 0, 0 }, { 100, 100 } }; local
65 return SkGradientShader::CreateLinear(pts, colors, nullptr, 3, SkShader::kRepeat_TileMode);
  /external/libvpx/libvpx/test/
superframe_test.cc 78 last_sf_pts_ = pkt->data.frame.pts;
84 pkt->data.frame.pts - last_sf_pts_ >= 5;
encode_test_driver.cc 96 res = vpx_codec_encode(&encoder_, img, video.pts(), video.duration(),
233 ASSERT_GE(pkt->data.frame.pts, last_pts_);
234 last_pts_ = pkt->data.frame.pts;
265 DecompressedFrameHook(*img_dec, video->pts());
  /external/opencv3/samples/python2/
gaussian_mix.py 15 pts = random.multivariate_normal(mean, cov, n)
16 points.append( pts )
hist.py 33 pts = np.int32(np.column_stack((bins,hist)))
34 cv2.polylines(h,[pts],False,col)
  /external/skia/bench/
ColorCubeBench.cpp 52 const SkPoint pts[2] = { local
58 pts, colors, nullptr, 2, SkShader::kRepeat_TileMode, 0, &SkMatrix::I());
ImageFilterCollapse.cpp 64 SkPoint pts[] = { {0, 0}, {SkIntToScalar(W), SkIntToScalar(H)} }; local
70 pts, colors, nullptr, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode
  /external/skia/cmake/
example.cpp 68 SkPoint pts[] = { {0,0}, {320,240} };
71 SkGradientShader::CreateLinear(pts, colors, nullptr, 2, SkShader::kRepeat_TileMode));
  /frameworks/base/core/jni/android/graphics/
Shader.cpp 111 SkPoint pts[2]; local
112 pts[0].set(x0, y0);
113 pts[1].set(x1, y1);
125 SkShader* shader = SkGradientShader::CreateLinear(pts,
138 SkPoint pts[2]; local
139 pts[0].set(x0, y0);
140 pts[1].set(x1, y1);
146 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2, (SkShader::TileMode)tileMode);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
video_source.h 69 virtual vpx_codec_pts_t pts() const = 0;
107 // Models a stream where Timebase = 1/FPS, so pts == frame.
108 virtual vpx_codec_pts_t pts() const { return frame_; } function in class:libvpx_test::DummyVideoSource
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 109 dst.pts[0] = fPts[0];
110 dst.pts[1].fX = (fPts[0].fX + fPts[1].fX) / 2;
111 dst.pts[1].fY = (fPts[0].fY + fPts[1].fY) / 2;
112 dst.pts[2].fX = (fPts[0].fX + 2 * fPts[1].fX + fPts[2].fX) / 4;
113 dst.pts[2].fY = (fPts[0].fY + 2 * fPts[1].fY + fPts[2].fY) / 4;
114 dst.pts[3].fX = (fPts[0].fX + 3 * (fPts[1].fX + fPts[2].fX) + fPts[3].fX) / 8;
115 dst.pts[3].fY = (fPts[0].fY + 3 * (fPts[1].fY + fPts[2].fY) + fPts[3].fY) / 8;
116 dst.pts[4].fX = (fPts[1].fX + 2 * fPts[2].fX + fPts[3].fX) / 4;
117 dst.pts[4].fY = (fPts[1].fY + 2 * fPts[2].fY + fPts[3].fY) / 4;
118 dst.pts[5].fX = (fPts[2].fX + fPts[3].fX) / 2
    [all...]
  /external/libvpx/libvpx/vpx/
svc_context.h 101 vpx_codec_pts_t pts,
  /external/opencv3/modules/ml/src/
kdtree.hpp 80 CV_WRAP void getPoints(InputArray idx, OutputArray pts,
  /external/skia/src/core/
SkGlyphCache.h 245 static void AddPoints(const SkPoint* pts, int ptCount, const SkScalar bounds[2],
247 static void AddLine(const SkPoint pts[2], SkScalar axis, bool yAxis,
249 static void AddQuad(const SkPoint pts[2], SkScalar axis, bool yAxis,
251 static void AddCubic(const SkPoint pts[3], SkScalar axis, bool yAxis,
SkScan_Antihair.cpp 324 values are huge. A better fix might be to clip the original pts
554 SkPoint pts[2];
558 if (!SkLineClipper::IntersectLine(&array[i], fixedBounds, pts)) {
562 if (clip && !SkLineClipper::IntersectLine(pts, clipBounds, pts)) {
566 SkFDot6 x0 = SkScalarToFDot6(pts[0].fX);
567 SkFDot6 y0 = SkScalarToFDot6(pts[0].fY);
568 SkFDot6 x1 = SkScalarToFDot6(pts[1].fX);
569 SkFDot6 y1 = SkScalarToFDot6(pts[1].fY);
604 SkPoint pts[5]
    [all...]

Completed in 616 milliseconds

1 2 3 4 5 67 8 91011>>