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

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionOverlay.java 205 int y1 = r.y; local
212 y1 += insets.top;
216 gc.drawRect(x1, y1, x2, y2);
  /hardware/intel/img/psb_video/src/
psb_overlay.c 414 int dstPitch, int srcPitch, int __maybe_unused x1, int __maybe_unused y1, int __maybe_unused x2, int __maybe_unused y2, BoxPtr dstBox,
481 dstBox->x1 = dstBox->y1;
482 dstBox->y1 = pPriv->height_save - tmp;
486 tmp = dstBox->y1;
487 dstBox->y1 = dstBox->y2;
497 tmp = dstBox->y1;
498 dstBox->y1 = pPriv->height_save - dstBox->y2;
503 dstBox->x1 = pPriv->width_save - dstBox->y1;
504 dstBox->y1 = tmp;
521 dstBox->y1 = (((dstBox->y1 - 1) * pPriv->scaleRatio) >> 16) + 1
1030 int x1, x2, y1, y2; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_compositor.c 572 struct vertex2f res = { rect.x1 / size.x, rect.y1 / size.y };
645 result.y1 = layer->dst.br.y * layer->viewport.scale[1] + layer->viewport.translate[1];
651 result.y1 = MIN2(result.y1, s->scissor.maxy);
695 dirty->y1 <= drawn.y1) {
699 dirty->x1 = dirty->y1 = MIN_DIRTY;
736 dirty->y1 = MAX2(drawn.y1, dirty->y1);
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgamma.c 881 int y0, y1; local
893 y1 = LutTable[i+1];
895 if (y0 <= y1) { // Increasing
896 if (In >= y0 && In <= y1) return i;
899 if (y1 < y0) { // Decreasing
900 if (In >= y1 && In <= y0) return i;
909 y1 = LutTable[i+1];
911 if (y0 <= y1) { // Increasing
912 if (In >= y0 && In <= y1) return i;
915 if (y1 < y0) { // Decreasin
928 cmsFloat64Number a = 0, b = 0, y, x1, y1, x2, y2; local
    [all...]
cmsintrp.c 190 cmsUInt16Number y1, y0; local
209 y1 = LutTable[cell0+1];
212 Output[0] = LinearInterp(rest, y0, y1);
227 cmsFloat32Number y1, y0; local
249 y1 = LutTable[cell1] ;
251 Output[0] = y0 + (y1 - y0) * rest;
293 cmsFloat32Number y1, y0; local
321 y1 = LutTable[cell1 + OutChan] ;
323 Output[OutChan] = y0 + (y1 - y0) * rest;
340 X0, Y0, X1, Y1;
1048 cmsFloat32Number y1 = Tmp2[i]; local
1136 cmsFloat32Number y1 = Tmp2[i]; local
1223 cmsFloat32Number y1 = Tmp2[i]; local
1309 cmsFloat32Number y1 = Tmp2[i]; local
1394 cmsFloat32Number y1 = Tmp2[i]; local
    [all...]
  /external/opencv3/modules/features2d/src/
brisk.cpp 497 const float y1 = yf + sigma_half;
502 const int y_bottom = int(y1 + 0.5);
508 const float r_y1 = y1 - float(y_bottom) + 0.5f;
2226 const float y1 = yf + sigma_half; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
PolygonSpriteBatch.java 412 float y1; local
426 y1 = sin * p1x + cos * p1y;
435 y4 = y3 - (y2 - y1);
438 y1 = p1y;
451 y1 += worldOriginY;
479 vertices[idx++] = y1;
890 float y1; local
904 y1 = sin * p1x + cos * p1y;
913 y4 = y3 - (y2 - y1);
916 y1 = p1y;
1021 float y1; local
1142 float y1 = transform.m12; local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/math/collision/
BoundingBox.java 258 final float x0 = min.x, y0 = min.y, z0 = min.z, x1 = max.x, y1 = max.y, z1 = max.z; local
262 ext(tmpVector.set(x0, y1, z0).mul(transform));
263 ext(tmpVector.set(x0, y1, z1).mul(transform));
266 ext(tmpVector.set(x1, y1, z0).mul(transform));
267 ext(tmpVector.set(x1, y1, z1).mul(transform));
  /external/skia/include/core/
SkPath.h 407 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
411 @param y1 The y-coordinate of the control point on a quadratic curve
415 void quadTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2);
443 void conicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
452 (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
456 @param y1 The y-coordinate of the 1st control point on a cubic curve
462 void cubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
494 void rCubicTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2,
513 void arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
    [all...]
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
MainActivity.java 117 float y1 = event.getY(0);
122 float dy = (y1 + y2) / 2 - mCenterDownY;
123 float zoom = (float) Math.hypot(x1 - x2, y1 - y2);
139 mCenterDownY = (y1 + y2) / 2;
140 mDistDown = (float) Math.hypot(x1 - x2, y1 - y2);
  /external/libvncserver/libvncserver/
rfbregion.c 516 sraRgnCreateRect(int x1, int y1, int x2, int y2) {
527 vspan = sraSpanCreate(y1, y2, hlist);
636 rect->y1 = vcurr->start;
662 rect->x1, rect->y1, rect->x2, rect->y2);
769 r->y1 = i->sPtrs[i->ptrPos-2]->start;
859 rect.x2-rect.x1,rect.y2-rect.y1,
860 rect.x1,rect.y1);
867 rect.x2-rect.x1,rect.y2-rect.y1,
868 rect.x1,rect.y1);
875 rect.x2-rect.x1,rect.y2-rect.y1,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_xv.c 311 unsigned char y1, y2, u, v; local
360 y1 = buf[1];
365 ymap[yidx++] = y1;
376 y1 = buf[0];
383 ymap[yidx++] = y1;
529 dyo = dstRegion->extents.y1;
546 int box_y1 = pbox->y1;
597 INT32 x1, x2, y1, y2; local
604 y1 = src_y;
609 dstBox.y1 = drw_y
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 83 Packet4f y, y1, y2; local
85 y1 = pmadd(p4f_cephes_log_p3, x, p4f_cephes_log_p4);
88 y1 = pmadd(y1, x, p4f_cephes_log_p5);
90 y = pmadd(y, x3, y1);
94 y1 = pmul(e, p4f_cephes_log_q1);
96 y = padd(y, y1);
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/
Pixmap.java 339 /** Fills a triangle with vertices at x1,y1 and x2,y2 and x3,y3 using the current color.
342 * @param y1 The y-coordinate of vertex 1
347 public void fillTriangle (int x1, int y1, int x2, int y2, int x3, int y3) {
348 triangle(x1, y1, x2, y2, x3, y3, DrawType.FILL);
446 private void triangle(int x1, int y1, int x2, int y2, int x3, int y3, DrawType drawType) {
452 context.moveTo(x1,y1);
455 context.lineTo(x1,y1);
463 context.moveTo(x1,y1);
466 context.lineTo(x1,y1);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
Box2DCharacterControllerTest.java 83 float y1 = 1; // (float)Math.random() * 0.1f + 1; local
84 float y2 = y1;
86 Body ground = createEdge(BodyType.StaticBody, -50 + i * 2, y1, -50 + i * 2 + 2, y2, 0);
87 y1 = y2;
131 private Body createEdge (BodyType type, float x1, float y1, float x2, float y2, float density) {
137 poly.set(new Vector2(0, 0), new Vector2(x2 - x1, y2 - y1));
139 box.setTransform(x1, y1, 0);
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_renderer.c 478 float x0, y0, x1, y1; local
491 y1 = dy + height;
497 add_vertex_1tex(r, x1, y1, s1, t1);
498 add_vertex_1tex(r, x0, y1, s0, t1);
532 int x0, int y0, int x1, int y1, float *color)
536 * x0, y0, x1, y1, color[0], color[1], color[2], color[3]); */
545 add_vertex_color(r, x1, y1, color);
547 add_vertex_color(r, x0, y1, color);
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 138 FX_FLOAT x1, x2, y1, y2; local
141 y1);
146 y1 = pPoints[0].m_PointY;
150 DrawCosmeticLine(x1, y1, x2, y2, fill_color, fill_mode, alpha_flag,
321 FX_FLOAT y1,
333 if (m_pDeviceDriver->DrawCosmeticLine(x1, y1, x2, y2, color, alpha_flag,
340 path.SetPoint(0, x1, y1, FXPT_MOVETO);
  /external/ImageMagick/coders/
ps.c 750 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
756 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
762 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
768 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
774 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
780 (fabs(bounds.y2-bounds.y1) <= fabs(hires_bounds.y2-hires_bounds.y1)))
787 (fabs(hires_bounds.y2-hires_bounds.y1) >= MagickEpsilon))
793 hires_bounds.x2-hires_bounds.x1,hires_bounds.y2-hires_bounds.y1,
794 hires_bounds.x1,hires_bounds.y1);
    [all...]
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 285 magtype x1 = (magtype)x[i+1], y1 = (magtype)y[i+1]; \
288 x1 = x1*x1 + y1*y1; \
292 x1 = (magtype)x[i+3], y1 = (magtype)y[i+3]; \
294 x1 = x1*x1 + y1*y1; \
935 double y0, y1, y2, y3; local
1397 double y0, y1, y2, y3; local
1497 double y0, y1, y2, y3; local
    [all...]
  /external/opencv3/modules/hal/src/
mathfuncs.cpp 184 v_float32x4 y0 = v_load(y + i), y1 = v_load(y + i + 4); local
186 x1 = v_sqrt(v_muladd(x1, x1, y1*y1));
220 v_float64x2 y0 = v_load(y + i), y1 = v_load(y + i + 2); local
222 x1 = v_sqrt(v_muladd(x1, x1, y1*y1));
734 double y0, y1, y2, y3;
780 y1 = buf[1].f * expTab[val1 & EXPTAB_MASK] * EXPPOLY( x1 );
783 y[i + 1] = y1;
    [all...]
  /external/opencv3/modules/video/src/
optflowgf.cpp 240 int x1 = cvFloor(fx), y1 = cvFloor(fy); local
241 const float* ptr = R1 + y1*step1 + x1*5;
244 fx -= x1; fy -= y1;
247 (unsigned)y1 < (unsigned)(height-1) )
263 int x1 = cvRound(fx), y1 = cvRound(fy); local
264 const float* ptr = R1 + y1*step1 + x1*5;
268 (unsigned)y1 < (unsigned)height )
320 int y0 = 0, y1; local
396 y1 = y == height - 1 ? height : y - block_size;
397 if( update_matrices && (y1 == height || y1 >= y0 + min_update_stripe)
413 int y0 = 0, y1; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsics_x86.cpp 80 const void *y1, const void *y2,
104 p4 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y1)), _mm_setzero_si128());
105 p5 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y1+1)), _mm_setzero_si128());
106 p6 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y1+2)), _mm_setzero_si128());
107 p7 = _mm_unpacklo_epi8(_mm_cvtsi32_si128(*((int32_t *)y1+3)), _mm_setzero_si128());
136 y1 = (const char *)y1 + 8;
455 __m128i y1, y2, y3, y4; local
457 y1 = packus_epi32(R, G);
459 y3 = _mm_packus_epi16(y1, y2)
517 __m128i y1, y2, y3, y4; local
578 __m128i y1, y2, y3, y4; local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.c 640 int x1, int y1,
645 out[2] = get_texel_2d_no_border( samp, addr, x0, y1 );
646 out[3] = get_texel_2d_no_border( samp, addr, x1, y1 );
655 int x1, int y1,
660 out[3] = get_texel_2d( samp, addr, x1, y1 );
661 out[2] = get_texel_2d( samp, addr, x0, y1 );
822 unsigned y1 = (y0 + 1) & (ypot - 1); local
823 get_texel_quad_2d_no_border(samp, addr, x0, y0, x1, y1, tx);
1256 int x0, y0, x1, y1; local
1300 int x0, y0, x1, y1, layer; local
1345 int x0, y0, x1, y1; local
1390 int x0, x1, y0, y1, z0, z1; local
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 52 ushort x1, y1, x2, y2; member in struct:_CvRect16u
    [all...]
  /external/libvncserver/rfb/
rfb.h     [all...]

Completed in 1954 milliseconds

<<11121314151617181920>>