HomeSort by relevance Sort by last modified time
    Searched refs:pt0 (Results 1 - 22 of 22) sorted by null

  /external/opencv/cv/src/
cvrotcalipers.cpp 113 CvPoint2D32f pt0 = points[0]; local
115 left_x = right_x = pt0.x;
116 top_y = bottom_y = pt0.y;
122 if( pt0.x < left_x )
123 left_x = pt0.x, left = i;
125 if( pt0.x > right_x )
126 right_x = pt0.x, right = i;
128 if( pt0.y > top_y )
129 top_y = pt0.y, top = i;
131 if( pt0.y < bottom_y
    [all...]
cvapprox.cpp 162 CvPoint pt0; local
166 pt0 = array[i].pt;
190 dk_num = (pt0.x - array[i1].pt.x) * dy - (pt0.y - array[i1].pt.y) * dx;
217 dx1 = array[i1].pt.x - pt0.x;
218 dy1 = array[i1].pt.y - pt0.y;
219 dx2 = array[i2].pt.x - pt0.x;
220 dy2 = array[i2].pt.y - pt0.y;
cvshapedescr.cpp 134 icvFindCircle( CvPoint2D32f pt0, CvPoint2D32f pt1,
137 double x1 = (pt0.x + pt1.x) * 0.5;
138 double dy1 = pt0.x - pt1.x;
141 double y1 = (pt0.y + pt1.y) * 0.5;
142 double dx1 = pt1.y - pt0.y;
153 *radius = (float) icvDistanceL2_32f( *center, pt0 );
    [all...]
  /external/freetype/src/cff/
cf2glue.h 96 /* Some members may be unused. For example, `pt0' is not used for */
97 /* `moveTo' and `pt3' is not used for `quadTo'. The initial point `pt0' */
104 FT_Vector pt0; member in struct:CF2_CallbackParamsRec_
cf2ft.c 162 params->pt0.x,
163 params->pt0.y );
206 params->pt0.x,
207 params->pt0.y );
cf2hints.c     [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2glue.h 96 /* Some members may be unused. For example, `pt0' is not used for */
97 /* `moveTo' and `pt3' is not used for `quadTo'. The initial point `pt0' */
104 FT_Vector pt0; member in struct:CF2_CallbackParamsRec_
cf2ft.c 162 params->pt0.x,
163 params->pt0.y );
206 params->pt0.x,
207 params->pt0.y );
cf2hints.c     [all...]
  /external/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 165 const SkPoint* pt0 = &(lastPt[offset]);
180 const SkPoint pt2 = *pt0+v0, pt3 = *pt1+v1;
181 if (intersection(*pt0, pt2, *pt1, pt3, miterPt[0]) !=
183 SkPoint miterPt0 = miterPt[0] - *pt0;
199 miterPt[0] = *pt0+v0;
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_renderer.c 192 float pt0[2], pt1[2], pt2[2], pt3[2]; local
194 pt0[0] = srcX;
195 pt0[1] = srcY;
204 map_point((float *)src_matrix, pt0[0], pt0[1], &pt0[0], &pt0[1]);
210 s0 = pt0[0] / src->width0;
214 t0 = pt0[1] / src->height0;
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.c 145 float pt0[2], pt1[2], pt2[2], pt3[2]; local
147 pt0[0] = srcX;
148 pt0[1] = srcY;
157 map_point(src_matrix, pt0[0], pt0[1], &pt0[0], &pt0[1]);
163 s0 = pt0[0] / src->width0;
167 t0 = pt0[1] / src->height0;
  /external/opencv/cxcore/src/
cxdrawing.cpp 1041 CvPoint pt0, pt1; local
1166 CvPoint pt0, pt1, t0, t1; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
kxia64.h 17 #define PT0 0x0040
575 #define RESTORE_INTERRUPTS(reg) tbit##.##nz pt0,pt1 = reg,PSR_I;; ;(pt0) ssm 1 << PSR_I ;(pt1) rsm 1 << PSR_I
685 #define ACQUIRE_SPINLOCK(rpLock,rOwn,Loop) cmp##.##eq pt0,pt1 = zero,zero ; ;; ;Loop: ;.pred.rel "mutex",pt0,pt1 ;(pt1) YIELD ;(pt0) xchg8 t22 = [rpLock],rOwn ;(pt1) ld8##.##nt1 t22 = [rpLock] ; ;; ;(pt0) cmp##.##ne pt2 = zero,t22 ; cmp##.##eq pt0,pt1 = zero,t22 ;(pt2) br##.##dpnt Loop
  /external/skia/src/ports/
SkFontHost_FreeType_common.cpp 528 static int quad_proc(const FT_Vector* pt0, const FT_Vector* pt1,
531 path->quadTo(SkFDot6ToScalar(pt0->x), -SkFDot6ToScalar(pt0->y),
536 static int cubic_proc(const FT_Vector* pt0, const FT_Vector* pt1,
539 path->cubicTo(SkFDot6ToScalar(pt0->x), -SkFDot6ToScalar(pt0->y),
  /external/deqp/modules/gles2/functional/
es2fMultisampleTests.cpp 929 Vec3 pt0 (3.0f*deFloatCos(angle + 2.0f*DE_PI*0.0f/3.0f), 3.0f*deFloatSin(angle + 2.0f*DE_PI*0.0f/3.0f), 1.0f);
933 renderTriangle(pt0, pt1, pt2, color);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fMultisampleTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fMultisampleTests.cpp 596 const Vec2 pt0 (-1.0f, -1.0f);
615 renderQuad(pt0, pt1, pt2, pt3, quadColor);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 1275 milliseconds