HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 476 - 500 of 1250) sorted by null

<<11121314151617181920>>

  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DangiTest.java 265 int y1 = DATA[i++]; local
272 cal.set(Calendar.EXTENDED_YEAR, y1);
279 errln("Fail: " + y1 + "/" + (m1 + 1) + "/" + d1 + " resolves to " + y + "/" + (m + 1) + "/" + d
282 logln("OK: " + y1 + "/" + (m1 + 1) + "/" + d1 + " resolves to " + y + "/" + (m + 1) + "/" + d);
  /external/libgdx/gdx/jni/gdx2d/
gdx2d.h 85 JNIEXPORT void gdx2d_fill_triangle(const gdx2d_pixmap* pixmap,int32_t x1, int32_t y1, int32_t x2, int32_t y2, int32_t x3, int32_t y3, uint32_t col);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_context.c 104 h = boxes->y2 - boxes->y1;
107 transfer_direction, boxes->x1, boxes->y1,
118 0, 0, w, h, data, pitch, boxes->x1, boxes->y1);
121 boxes->x1, boxes->y1, w, h, map, transfer->stride, 0,
xa_tracker.h 142 uint16_t x1, y1, x2, y2; member in struct:xa_box
  /external/mesa3d/src/mesa/state_tracker/
st_cb_blit.c 198 info.dst.y1 = dstY1;
200 info.src.y1 = srcY1;
203 info.dst.y1 = dstY0;
205 info.src.y1 = srcY0;
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 71 GLfloat y1 = v1->attrib[FRAG_ATTRIB_WPOS][1]; variable
73 if (y0 <= y1) {
74 if (y1 <= y2) {
75 vMin = v0; vMid = v1; vMax = v2; /* y0<=y1<=y2 */
78 vMin = v2; vMid = v0; vMax = v1; /* y2<=y0<=y1 */
81 vMin = v0; vMid = v2; vMax = v1; bf = -bf; /* y0<=y2<=y1 */
86 vMin = v1; vMid = v0; vMax = v2; bf = -bf; /* y1<=y0<=y2 */
88 else if (y2 <= y1) {
89 vMin = v2; vMid = v1; vMax = v0; bf = -bf; /* y2<=y1<=y0 */
92 vMin = v1; vMid = v2; vMax = v0; /* y1<=y2<=y0 *
    [all...]
  /external/opencv3/apps/traincascade/
haarfeatures.h 49 int x1, int y1, int w1, int h1, float wt1,
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.h 63 FX_FIXFLOAT y1,
  /external/pdfium/public/
fpdf_doc.h 300 FS_FLOAT y1; member in struct:_FS_QUADPOINTSF
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_mat4.hpp 83 float const & x1, float const & y1, float const & z1, float const & w1,
  /frameworks/base/core/jni/android/graphics/
Shader.cpp 108 jfloat x0, jfloat y0, jfloat x1, jfloat y1,
113 pts[1].set(x1, y1);
135 jfloat x0, jfloat y0, jfloat x1, jfloat y1,
140 pts[1].set(x1, y1);
  /frameworks/rs/driver/
rsdGL.h 90 float x1, float y1, float z1, float u1, float v1,
  /hardware/ti/omap4-aah/camera/
Encoder_libjpeg.cpp 136 uint8_t y1 = (src[0] >> 24) & 0xFF; local
140 dst[3] = y1;
190 uint8_t y1 = (src[0] >> 16) & 0xFF; local
195 dst[3] = y1;
  /system/bt/embdrv/sbc/decoder/srce/
synthesis-sbc.c 478 OI_INT32 y0, y1, y2, y3; local
494 y1 = -SCALE(f10 - f9, DCT_SHIFT);
501 out[5] = (OI_INT16)y1;
503 out[7] = (OI_INT16)y1;
  /external/opencv3/modules/calib3d/test/
test_fundam.cpp 1032 double y1 = p1.at<Point2d>(i).y; local
1035 double n1 = 1./sqrt(x1*x1 + y1*y1 + 1);
1037 double t0 = fabs(f0[0]*x2*x1 + f0[1]*x2*y1 + f0[2]*x2 +
1038 f0[3]*y2*x1 + f0[4]*y2*y1 + f0[5]*y2 +
1039 f0[6]*x1 + f0[7]*y1 + f0[8])*n1*n2;
1040 double t = fabs(f[0]*x2*x1 + f[1]*x2*y1 + f[2]*x2 +
1041 f[3]*y2*x1 + f[4]*y2*y1 + f[5]*y2 +
1042 f[6]*x1 + f[7]*y1 + f[8])*n1*n2;
1070 double sampson_error(const double* f, double x1, double y1, double x2, double y2)
1368 double y1 = p1.at<Point2d>(i).y; local
    [all...]
  /external/skia/src/core/
SkPath.cpp 771 void SkPath::quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
778 pts[0].set(x1, y1);
784 void SkPath::rQuadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2) {
788 this->quadTo(pt.fX + x1, pt.fY + y1, pt.fX + x2, pt.fY + y2);
791 void SkPath::conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
797 this->lineTo(x1, y1);
800 this->quadTo(x1, y1, x2, y2);
808 pts[0].set(x1, y1);
823 void SkPath::cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
831 pts[0].set(x1, y1);
2989 SkScalar y1 = pts[1].fY; local
3106 SkScalar y1 = pts[1].fY; local
    [all...]
  /external/ImageMagick/MagickCore/
draw.c 443 " bounds: %g,%g - %g,%g",p->bounds.x1,p->bounds.y1,
546 polygon_info->edges[edge].bounds.y1=points[0].y;
600 polygon_info->edges[edge].bounds.y1=points[0].y;
657 polygon_info->edges[edge].bounds.y1=points[0].y;
4589 y1; local
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityMagnificationTest.java 200 final float y1 = 1000; local
213 controller.setCenter(x1, y1, true);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/distancefield/
DistanceFieldGenerator.java 104 * @param y1 The y coordiante of the first point
109 private static int squareDist(final int x1, final int y1, final int x2, final int y2)
112 final int dy = y1 - y2;
  /external/libgdx/gdx/jni/
com.badlogic.gdx.graphics.g2d.Gdx2DPixmap.cpp 140 JNIEXPORT void JNICALL Java_com_badlogic_gdx_graphics_g2d_Gdx2DPixmap_fillTriangle(JNIEnv* env, jclass clazz, jlong pixmap, jint x1, jint y1, jint x2, jint y2, jint x3, jint y3, jint color) {
145 gdx2d_fill_triangle((gdx2d_pixmap*)pixmap, x1, y1, x2, y2, x3, y3, color);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/
Pixmap.java 282 /** Fills a triangle with vertices at x1,y1 and x2,y2 and x3,y3 using the current color.
285 * @param y1 The y-coordinate of vertex 1
290 public void fillTriangle (int x1, int y1, int x2, int y2, int x3, int y3) {
291 pixmap.fillTriangle(x1, y1, x2, y2, x3, y3, color);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
LabelTest.java 107 public void drawLine (float x1, float y1, float x2, float y2) {
110 renderer.line(x1, y1, x2, y2);
  /external/mesa3d/src/gallium/auxiliary/util/
u_blitter.h 55 * \param y1 A Y coordinate of the top-left corner.
77 unsigned x1, unsigned y1, unsigned x2, unsigned y2,
135 unsigned x1, unsigned y1,
  /external/opencv/cv/src/
cvtemplmatch.cpp 208 int x1 = MAX( 0, x0 ), y1 = MAX( 0, y0 ), x2, y2; local
221 src = cvGetSubRect( img, &sstub, cvRect(x1,y1,x2-x1,y2-y1) );
226 if( x2 - x1 < isz.width || y2 - y1 < isz.height )
228 cvRect( x1 - x0, y1 - y0, x2 - x1, y2 - y1 ));
234 planes[i] = cvInitMatHeader( &temp, y2 - y1, x2 - x1, depth, _buf );
244 cvCopyMakeBorder( dst1, dst, cvPoint(x1 - x0, y1 - y0), IPL_BORDER_REPLICATE );
  /external/opencv3/modules/core/src/
conjugate_gradient.cpp 61 double y1 = calc(x_); local
64 grad[i] = (y1 - y0)/(2*eps);

Completed in 4385 milliseconds

<<11121314151617181920>>