Searched refs:pts (Results 201 - 225 of 293) sorted by relevance

1234567891011>>

/external/skia/src/utils/debugger/
H A DSkObjectParser.cpp185 SkString* SkObjectParser::PointsToString(const SkPoint pts[], size_t count) { argument
186 SkString* mPoints = new SkString("SkPoints pts[]: ");
189 mPoints->appendScalar(pts[i].fX);
191 mPoints->appendScalar(pts[i].fY);
/external/freetype/src/truetype/
H A Dttinterp.c640 exec->pts.n_points = 0;
641 exec->pts.n_contours = 0;
643 exec->zp1 = exec->pts;
644 exec->zp2 = exec->pts;
645 exec->zp0 = exec->pts;
731 exec->zp0 = exec->pts;
732 exec->zp1 = exec->pts;
733 exec->zp2 = exec->pts;
5440 CUR.zp0 = CUR.pts;
5469 CUR.zp1 = CUR.pts;
[all...]
/external/chromium_org/third_party/freetype/src/truetype/
H A Dttinterp.h135 pts, member in struct:TT_ExecContextRec_
174 FT_UShort maxPoints; /* capacity of this context's `pts' */
/external/chromium_org/third_party/skia/include/utils/
H A DSkLuaCanvas.h42 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
H A DSkNWayCanvas.h43 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
H A DSkProxyCanvas.h48 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
/external/libvpx/libvpx/test/
H A Dencode_test_driver.h207 vpx_codec_pts_t pts) {}
206 DecompressedFrameHook(const vpx_image_t& img, vpx_codec_pts_t pts) argument
/external/skia/include/utils/
H A DSkLuaCanvas.h42 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
H A DSkNWayCanvas.h43 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
H A DSkProxyCanvas.h48 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
/external/chromium_org/skia/ext/
H A Dbenchmarking_canvas.cc91 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
94 SkProxyCanvas::drawPoints(mode, count, pts, paint);
H A Dvector_platform_device_emf_win.cc138 const SkPoint pts[],
160 path.moveTo(pts[2 * i]);
161 path.lineTo(pts[2 * i + 1]);
165 path.moveTo(pts[0]);
167 path.lineTo(pts[i]);
135 drawPoints(const SkDraw& draw, SkCanvas::PointMode mode, size_t count, const SkPoint pts[], const SkPaint& paint) argument
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DGradient.cpp351 SkPoint pts[2] = { m_p0, m_p1 }; local
352 m_gradient = adoptRef(SkGradientShader::CreateLinear(pts, colors, pos, static_cast<int>(countUsed), tile, 0, shouldDrawInPMColorSpace));
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureRecord.h53 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
170 void addPoints(const SkPoint pts[], int count);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkIntersections.h165 int quadRay(const SkPoint pts[3], const SkDLine& line);
198 int cubicRay(const SkPoint pts[4], const SkDLine& line);
H A DSkOpSegment.cpp343 void SkOpSegment::addCubic(const SkPoint pts[4], bool operand, bool evenOdd) { argument
344 init(pts, SkPath::kCubic_Verb, operand, evenOdd);
345 fBounds.setCubicBounds(pts);
397 void SkOpSegment::addLine(const SkPoint pts[2], bool operand, bool evenOdd) { argument
398 init(pts, SkPath::kLine_Verb, operand, evenOdd);
399 fBounds.set(pts, 2);
414 void SkOpSegment::addQuad(const SkPoint pts[3], bool operand, bool evenOdd) { argument
415 init(pts, SkPath::kQuad_Verb, operand, evenOdd);
416 fBounds.setQuadBounds(pts);
988 int pts local
[all...]
H A DSkPathOpsQuad.cpp295 interp_quad_coords(&fPts[0].fX, &dst.pts[0].fX, t);
296 interp_quad_coords(&fPts[0].fY, &dst.pts[0].fY, t);
/external/skia/src/core/
H A DSkPictureRecord.h53 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[],
170 void addPoints(const SkPoint pts[], int count);
/external/skia/src/pathops/
H A DSkIntersections.h165 int quadRay(const SkPoint pts[3], const SkDLine& line);
198 int cubicRay(const SkPoint pts[4], const SkDLine& line);
H A DSkOpSegment.cpp343 void SkOpSegment::addCubic(const SkPoint pts[4], bool operand, bool evenOdd) { argument
344 init(pts, SkPath::kCubic_Verb, operand, evenOdd);
345 fBounds.setCubicBounds(pts);
397 void SkOpSegment::addLine(const SkPoint pts[2], bool operand, bool evenOdd) { argument
398 init(pts, SkPath::kLine_Verb, operand, evenOdd);
399 fBounds.set(pts, 2);
414 void SkOpSegment::addQuad(const SkPoint pts[3], bool operand, bool evenOdd) { argument
415 init(pts, SkPath::kQuad_Verb, operand, evenOdd);
416 fBounds.setQuadBounds(pts);
988 int pts local
[all...]
/external/eigen/Eigen/src/Core/util/
H A DMemory.h387 template<typename T, bool Align> inline T* conditional_aligned_realloc_new(T* pts, size_t new_size, size_t old_size) argument
392 destruct_elements_of_array(pts+new_size, old_size-new_size);
393 T *result = reinterpret_cast<T*>(conditional_aligned_realloc<Align>(reinterpret_cast<void*>(pts), sizeof(T)*new_size, sizeof(T)*old_size));
409 template<typename T, bool Align> inline T* conditional_aligned_realloc_new_auto(T* pts, size_t new_size, size_t old_size) argument
414 destruct_elements_of_array(pts+new_size, old_size-new_size);
415 T *result = reinterpret_cast<T*>(conditional_aligned_realloc<Align>(reinterpret_cast<void*>(pts), sizeof(T)*new_size, sizeof(T)*old_size));
/external/chromium_org/third_party/skia/include/core/
H A DSkRect.h519 void set(const SkPoint pts[], int count) {
523 (void)this->setBoundsCheck(pts, count);
526 // alias for set(pts, count)
527 void setBounds(const SkPoint pts[], int count) {
528 (void)this->setBoundsCheck(pts, count);
536 bool setBoundsCheck(const SkPoint pts[], int count);
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c632 vpx_codec_pts_t pts,
716 dst_time_stamp = pts * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.den;
717 dst_end_time_stamp = (pts + duration) * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.den;
774 pkt.data.frame.pts =
789 // prior PTS so that if a decoder uses pts to schedule when
792 pkt.data.frame.pts = ((cpi->last_time_stamp_seen
844 // printf("timestamp: %lld, duration: %d\n", pkt->data.frame.pts, pkt->data.frame.duration);
630 vp9e_encode(vpx_codec_alg_priv_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
/external/skia/include/core/
H A DSkRect.h519 void set(const SkPoint pts[], int count) {
523 (void)this->setBoundsCheck(pts, count);
526 // alias for set(pts, count)
527 void setBounds(const SkPoint pts[], int count) {
528 (void)this->setBoundsCheck(pts, count);
536 bool setBoundsCheck(const SkPoint pts[], int count);
/external/chromium_org/third_party/skia/src/utils/
H A DSkNWayCanvas.cpp178 void SkNWayCanvas::drawPoints(PointMode mode, size_t count, const SkPoint pts[], argument
182 iter->drawPoints(mode, count, pts, paint);

Completed in 2164 milliseconds

1234567891011>>