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

<<21222324252627282930>>

  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 1514 deUint32 y1 = min + deRandom_getUint32(&rnd) % (max - min); local
1594 T y1, y2; local
    [all...]
  /external/ImageMagick/coders/
ps3.c     [all...]
pdf.c 592 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
595 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
607 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
610 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
620 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
623 &bounds.x1,&bounds.y1,&bounds.x2,&bounds.y2);
628 (fabs(bounds.y2-bounds.y1) <= fabs(hires_bounds.y2-hires_bounds.y1)))
633 (fabs(hires_bounds.y2-hires_bounds.y1) >= MagickEpsilon))
639 hires_bounds.x2-bounds.x1,hires_bounds.y2-hires_bounds.y1,
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_surface.c 872 float x0, x1, y0, y1, z; local
892 (float)(info->src.y1 - info->src.y0) /
893 (float)(info->dst.y1 - info->dst.y0);
899 y1 = y0 + 16384.0f * y_range;
904 y1 *= (float)(1 << nv50_miptree(src)->ms_y);
923 PUSH_DATA (push, (info->dst.y1 << 16) | info->dst.y0);
943 PUSH_DATAf(push, y1);
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_surface.c 958 float x0, x1, y0, y1; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_blorp_blit.cpp     [all...]
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
arm_math.h 5770 float32_t y0, y1; \/* Nearest output values *\/ local
5828 q31_t y0, y1; \/* Nearest output values *\/ local
5890 q15_t y0, y1; \/* Nearest output values *\/ local
5950 q7_t y0, y1; \/* Nearest output values *\/ local
7213 q31_t x1, x2, y1, y2; \/* Nearest output values *\/ local
7288 q15_t x1, x2, y1, y2; \/* Nearest output values *\/ local
7369 q7_t x1, x2, y1, y2; \/* Nearest output values *\/ local
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 75 PathCurveToOperation, /* C|c (x1 y1 x2 y2 x y)+ */
76 PathCurveToQuadraticBezierOperation, /* Q|q (x1 y1 x y)+ */
    [all...]
  /external/opencv3/modules/imgproc/src/
drawing.cpp 52 PolyEdge() : y0(0), y1(0), x(0), dx(0), next(0) {}
53 //PolyEdge(int _y0, int _y1, int _x, int _dx) : y0(_y0), y1(_y1), x(_x), dx(_dx) {}
55 int y0, y1; member in struct:cv::PolyEdge
82 int64 x1, y1, x2, y2; local
89 x1 = pt1.x; y1 = pt1.y; x2 = pt2.x; y2 = pt2.y;
90 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
99 x1 += (a - y1) * (x2 - x1) / (y2 - y1);
100 y1 = a
    [all...]
  /external/boringssl/src/crypto/aes/asm/
bsaes-armv7.pl 183 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) *
185 my ($x0,$x1,$y0,$y1,$t0,$t1)=@_;
187 veor $t0, $y0, $y1
191 vand $x0, $x0, $y1
199 my ($x0,$x1,$y0,$y1,$t0)=@_;
201 veor $t0, $y0, $y1
205 vand $x0, $x0, $y1
213 my ($x0,$x1,$y0,$y1,$t0,
216 veor $t0, $y0, $y1
224 vand $x0, $x0, $y1
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 694 TCoord y1,
711 if ( y1 == y2 )
721 delta = y2 - y1;
730 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
736 p = fx1 * ( y2 - y1 );
749 y1 += delta;
756 p = ONE_PIXEL * ( y2 - y1 + delta );
773 y1 += delta;
779 delta = y2 - y1;
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/smooth/
ftgrays.c 701 TCoord y1,
718 if ( y1 == y2 )
728 delta = y2 - y1;
737 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
743 p = fx1 * ( y2 - y1 );
756 y1 += delta;
763 p = ONE_PIXEL * ( y2 - y1 + delta );
780 y1 += delta;
786 delta = y2 - y1;
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 309 FX_FLOAT y1,
313 if (y1 == y2) {
316 if (y1 < y2) {
317 if (y < y1 || y > y2) {
321 if (y < y2 || y > y1) {
325 x = x1 + FXSYS_MulDiv(x2 - x1, y - y1, y2 - y1);
546 float y1,
552 y.FromPoints(y0, y1, y2, y3);
    [all...]
  /external/pdfium/third_party/freetype/src/smooth/
ftgrays.c 689 TCoord y1,
706 if ( y1 == y2 )
716 delta = y2 - y1;
725 p = ( ONE_PIXEL - fx1 ) * ( y2 - y1 );
731 p = fx1 * ( y2 - y1 );
744 y1 += delta;
751 p = ONE_PIXEL * ( y2 - y1 + delta );
768 y1 += delta;
774 delta = y2 - y1;
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voAMRWBEnc.c 193 Word16 y1[L_SUBFR]; /* Filtered adaptive excitation */ local
    [all...]
  /external/skia/src/core/
SkBlitter.cpp 354 int y1 = y + height;
359 if (y1 > fClipRect.fBottom) {
360 y1 = fClipRect.fBottom;
363 if (y0 < y1) {
364 fBlitter->blitV(x, y0, y1 - y0, alpha);
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 696 float y1, float a, float b, float theta, boolean isMoreThanHalf,
699 LOGGER.log(Level.FINE, "(" + x0 + "," + y0 + ")-(" + x1 + "," + y1
706 /* Transform (x0, y0) and (x1, y1) into unit space */
710 double x1p = (x1 * cosTheta + y1 * sinTheta) / a;
711 double y1p = (-x1 * sinTheta + y1 * cosTheta) / b;
729 drawArc(p, x0, y0, x1, y1, a * adjust, b * adjust, theta,
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
calendar.py 102 def leapdays(y1, y2):
103 """Return number of leap years in range [y1, y2).
104 Assume y1 <= y2."""
105 y1 -= 1
107 return (y2//4 - y1//4) - (y2//100 - y1//100) + (y2//400 - y1//400)
  /prebuilts/gdb/linux-x86/lib/python2.7/
calendar.py 102 def leapdays(y1, y2):
103 """Return number of leap years in range [y1, y2).
104 Assume y1 <= y2."""
105 y1 -= 1
107 return (y2//4 - y1//4) - (y2//100 - y1//100) + (y2//400 - y1//400)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
calendar.py 102 def leapdays(y1, y2):
103 """Return number of leap years in range [y1, y2).
104 Assume y1 <= y2."""
105 y1 -= 1
107 return (y2//4 - y1//4) - (y2//100 - y1//100) + (y2//400 - y1//400)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
calendar.py 102 def leapdays(y1, y2):
103 """Return number of leap years in range [y1, y2).
104 Assume y1 <= y2."""
105 y1 -= 1
107 return (y2//4 - y1//4) - (y2//100 - y1//100) + (y2//400 - y1//400)
  /external/deqp/framework/common/
tcuTexCompareVerifier.cpp 323 const float y1 = yBounds.y();
346 const float v2 = bilinearInterpolate(refVal, x0, y1);
347 const float v3 = bilinearInterpolate(refVal, x1, y1);
606 const int y1 = wrap(sampler.wrapT, j+1, h);
616 lookupDepth(level, sampler, x0, y1, coordZ),
617 lookupDepth(level, sampler, x1, y1, coordZ));
745 const int y1 = wrap(sampler.wrapT, j0+1, h0);
749 depths0[2] = lookupDepth(level0, sampler, x0, y1, coordZ);
750 depths0[3] = lookupDepth(level0, sampler, x1, y1, coordZ);
767 const int y1 = wrap(sampler.wrapT, j1+1, h1)
    [all...]
  /external/libvpx/config/x86/
vp8_rtcd.h 49 void vp8_blend_b_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
52 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
55 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
  /external/libvpx/config/x86_64/
vp8_rtcd.h 49 void vp8_blend_b_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
52 void vp8_blend_mb_inner_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
55 void vp8_blend_mb_outer_c(unsigned char *y, unsigned char *u, unsigned char *v, int y1, int u1, int v1, int alpha, int stride);
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_renderer.c 468 int x1, int y1,
473 x0, y0, x1, y1, color[0], color[1], color[2], color[3]);*/
482 add_vertex_color(r, x1, y1, color);
484 add_vertex_color(r, x0, y1, color);

Completed in 1581 milliseconds

<<21222324252627282930>>