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

1 2 3 4 5 67 8 91011>>

  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 43 static void pts_to_unit_matrix(const SkPoint pts[2], SkMatrix* matrix) {
44 SkVector vec = pts[1] - pts[0];
49 matrix->setSinCos(-vec.fY, vec.fX, pts[0].fX, pts[0].fY);
50 matrix->postTranslate(-pts[0].fX, -pts[0].fY);
56 SkLinearGradient::SkLinearGradient(const SkPoint pts[2], const Descriptor& desc)
58 , fStart(pts[0])
59 , fEnd(pts[1])
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAAConvexPathRenderer.cpp 36 // line uses one pt, quad uses 2 pts
245 GrPoint pts[4]; local
246 SkPath::Verb verb = iter.next(pts);
249 m.mapPoints(pts, 1);
250 update_degenerate_test(&degenerateData, pts[0]);
253 m.mapPoints(pts + 1, 1);
254 update_degenerate_test(&degenerateData, pts[1]);
257 segments->back().fPts[0] = pts[1];
261 m.mapPoints(pts + 1, 2);
262 update_degenerate_test(&degenerateData, pts[1])
    [all...]
GrPathUtils.cpp 162 GrPoint pts[4]; local
163 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
170 pointCount += quadraticPointCount(pts, tol);
173 pointCount += cubicPointCount(pts, tol);
212 // The quad is degenerate. Hopefully this is rare. Find the pts that are
437 SkPoint* pts = quads->push_back_n(3); local
438 pts[0] = p[0];
439 pts[1] = cAvg;
440 pts[2] = p[3];
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 36 // line uses one pt, quad uses 2 pts
245 GrPoint pts[4]; local
246 SkPath::Verb verb = iter.next(pts);
249 m.mapPoints(pts, 1);
250 update_degenerate_test(&degenerateData, pts[0]);
253 m.mapPoints(pts + 1, 1);
254 update_degenerate_test(&degenerateData, pts[1]);
257 segments->back().fPts[0] = pts[1];
261 m.mapPoints(pts + 1, 2);
262 update_degenerate_test(&degenerateData, pts[1])
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkGradientShader.h 37 @param pts The start and end points for the gradient.
48 static SkShader* CreateLinear(const SkPoint pts[2],
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 45 int SkIntersections::cubicRay(const SkPoint pts[4], const SkDLine& line) {
47 cubic.set(pts);
83 SkDebugf("%s t=%1.9g pts roughly equal\n", __FUNCTION__, one);
122 int SkIntersections::quadRay(const SkPoint pts[3], const SkDLine& line) {
124 quad.set(pts);
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkObjectParser.h 72 @param pts[] Array of SkPoints
75 static SkString* PointsToString(const SkPoint pts[], size_t count);
  /external/dropbear/
sshpty.c 102 char *pts;
120 pts = ptsname(ptm);
121 if (pts == NULL) {
125 strlcpy(namebuf, pts, namebuflen);
132 "error opening pts %.100s: %.100s", namebuf, strerror(errno));
138 * Push the appropriate streams modules, as described in Solaris pts(7).
139 * HP-UX pts(7) doesn't have ttcompat module.
  /external/libvpx/libvpx/test/
encode_test_driver.cc 64 video.img(), video.pts(), video.duration(),
183 ASSERT_GE(pkt->data.frame.pts, last_pts_);
184 last_pts_ = pkt->data.frame.pts;
208 DecompressedFrameHook(*img_dec, video->pts());
  /external/libvpx/libvpx/vpx/
svc_context.h 88 struct vpx_image *rawimg, vpx_codec_pts_t pts,
  /external/skia/include/effects/
SkGradientShader.h 37 @param pts The start and end points for the gradient.
48 static SkShader* CreateLinear(const SkPoint pts[2],
  /external/skia/src/pathops/
SkIntersections.cpp 45 int SkIntersections::cubicRay(const SkPoint pts[4], const SkDLine& line) {
47 cubic.set(pts);
83 SkDebugf("%s t=%1.9g pts roughly equal\n", __FUNCTION__, one);
122 int SkIntersections::quadRay(const SkPoint pts[3], const SkDLine& line) {
124 quad.set(pts);
  /external/skia/src/utils/debugger/
SkObjectParser.h 72 @param pts[] Array of SkPoints
75 static SkString* PointsToString(const SkPoint pts[], size_t count);
  /frameworks/av/include/media/
IAudioTrack.h 79 int64_t pts) = 0;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.h 38 virtual status_t getNextBuffer(Buffer* buffer, int64_t pts);
  /frameworks/av/services/audioflinger/
AudioResampler.h 56 // set the PTS of the next buffer output by the resampler
57 virtual void setPTS(int64_t pts);
  /external/chromium_org/third_party/skia/include/core/
SkPath.h 687 * this->moveTo(pts[0]);
689 * this->lineTo(pts[i]);
695 void addPoly(const SkPoint pts[], int count, bool close);
823 @param pts The points representing the current verb and/or segment
    [all...]
  /external/libvpx/libvpx/
vp9_spatial_scalable_encoder.c 190 static void write_ivf_frame_header(FILE *outfile, vpx_codec_pts_t pts,
194 mem_put_le32(header + 4, pts & 0xFFFFFFFF);
195 mem_put_le32(header + 8, pts >> 32);
309 int pts = 0; /* PTS starts at 0 */ local
346 res = vpx_svc_encode(&svc_ctx, &codec, &raw, pts, frame_duration,
353 write_ivf_frame_header(outfile, pts, vpx_svc_get_frame_size(&svc_ctx));
358 pts += frame_duration;
  /external/skia/include/core/
SkPath.h 687 * this->moveTo(pts[0]);
689 * this->lineTo(pts[i]);
695 void addPoly(const SkPoint pts[], int count, bool close);
823 @param pts The points representing the current verb and/or segment
    [all...]
  /system/core/adb/
services.c 221 int pts;
225 pts = unix_open(devname, O_RDWR);
226 if(pts < 0) {
231 dup2(pts, 0);
232 dup2(pts, 1);
233 dup2(pts, 2);
235 adb_close(pts);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Path.cpp 112 SkPoint pts[4]; local
117 switch (iter.next(pts)) {
120 pathElement.points = convertPathPoints(pathPoints, &pts[0], 1);
124 pathElement.points = convertPathPoints(pathPoints, &pts[1], 1);
128 pathElement.points = convertPathPoints(pathPoints, &pts[1], 2);
132 pathElement.points = convertPathPoints(pathPoints, &pts[1], 3);
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.h 80 SkPoint* pts = fPathRef->growForVerb(SkPath::kConic_Verb); local
82 return pts;
87 * points. verbs will point one beyond the first new verb (index it using [~<i>]). pts points
90 void grow(int newVerbs, int newPts, uint8_t** verbs, SkPoint** pts) {
92 SkASSERT(NULL != pts);
96 SkASSERT(verbs && pts);
99 *pts = fPathRef->fPoints + oldPointCnt;
SkEdge.h 73 int setQuadratic(const SkPoint pts[3], int shiftUp);
84 int setCubic(const SkPoint pts[4], const SkIRect* clip, int shiftUp);
SkScan.h 54 static void FillTriangle(const SkPoint pts[], const SkRasterClip&, SkBlitter*);
87 static void FillTriangle(const SkPoint pts[], const SkRegion*, SkBlitter*);
  /external/skia/src/core/
SkPathRef.h 80 SkPoint* pts = fPathRef->growForVerb(SkPath::kConic_Verb); local
82 return pts;
87 * points. verbs will point one beyond the first new verb (index it using [~<i>]). pts points
90 void grow(int newVerbs, int newPts, uint8_t** verbs, SkPoint** pts) {
92 SkASSERT(NULL != pts);
96 SkASSERT(verbs && pts);
99 *pts = fPathRef->fPoints + oldPointCnt;

Completed in 710 milliseconds

1 2 3 4 5 67 8 91011>>