/external/skia/legacy/src/core/ |
SkCordic.cpp | 32 int32_t y1 = x >> t; local 36 y += y1; 40 y -= y1; 86 int32_t y1 = x >> t; local 90 y += y1; 94 y -= y1; 157 int32_t y1 = x >> t; local 165 y += y1; 169 y -= y1;
|
/external/skia/src/core/ |
SkCordic.cpp | 30 int32_t y1 = x >> t; local 34 y += y1; 38 y -= y1; 84 int32_t y1 = x >> t; local 88 y += y1; 92 y -= y1; 155 int32_t y1 = x >> t; local 163 y += y1; 167 y -= y1;
|
SkEdgeClipper.h | 38 void appendVLine(SkScalar x, SkScalar y0, SkScalar y1, bool reverse);
|
SkScan_Antihair.cpp | 373 static void do_anti_hairline(SkFDot6 x0, SkFDot6 y0, SkFDot6 x1, SkFDot6 y1, 378 if (any_bad_ints(x0, y0, x1, y1)) { 387 SkASSERT(canConvertFDot6ToFixed(y1)); 389 if (SkAbs32(x1 - x0) > SkIntToFDot6(511) || SkAbs32(y1 - y0) > SkIntToFDot6(511)) { 397 int hy = (y0 >> 1) + (y1 >> 1); 399 do_anti_hairline(hx, hy, x1, y1, clip, blitter); 413 if (SkAbs32(x1 - x0) > SkAbs32(y1 - y0)) { // mostly horizontal 416 SkTSwap<SkFDot6>(y0, y1); 422 if (y0 == y1) { // completely horizontal, take fast case 426 slope = fastfixdiv(y1 - y0, x1 - x0) [all...] |
/frameworks/rs/scriptc/ |
rs_graphics.rsh | 238 * @param y1 244 rsgDrawRect(float x1, float y1, float x2, float y2, float z); 251 * @param y1 264 rsgDrawQuad(float x1, float y1, float z1, 275 * @param y1 296 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, 410 float x1, y1, z1, x2, y2, z2; 411 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2); 413 bBoxMin->y = y1;
|
/prebuilts/sdk/renderscript/include/ |
rs_graphics.rsh | 238 * @param y1 244 rsgDrawRect(float x1, float y1, float x2, float y2, float z); 251 * @param y1 264 rsgDrawQuad(float x1, float y1, float z1, 275 * @param y1 296 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, 410 float x1, y1, z1, x2, y2, z2; 411 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2); 413 bBoxMin->y = y1;
|
/external/opencv/cv/src/ |
cvpyramids.cpp | 101 int x, y1, k = top_row; \ 106 for( y1 = 0; y1 < PD_SZ; y1++ ) \ 108 rows[y1] = buffer + k; \ 121 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \ 123 worktype *row = rows[y1]; \ 137 for( y1 = fst; y1 < lst; y1++, src += srcstep ) [all...] |
_cvgeom.h | 55 int icvIntersectLines( double x1, double dx1, double y1, double dy1,
|
/external/skia/include/utils/ |
SkCullPoints.h | 41 bool sect_test(int x0, int y0, int x1, int y1) const;
|
/external/skia/legacy/include/core/ |
SkEdgeClipper.h | 38 void appendVLine(SkScalar x, SkScalar y0, SkScalar y1, bool reverse);
|
/external/skia/legacy/include/utils/ |
SkCullPoints.h | 41 bool sect_test(int x0, int y0, int x1, int y1) const;
|
/external/skia/src/svg/ |
SkSVGLinearGradient.cpp | 18 SVG_ATTRIBUTE(y1),
|
/external/webkit/Source/WebCore/svg/ |
LinearGradientAttributes.h | 41 SVGLength y1() const { return m_y1; } function in struct:WebCore::LinearGradientAttributes
|
SVGPathElement.h | 72 PassRefPtr<SVGPathSegCurvetoCubicAbs> createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role = PathSegUndefinedRole); 73 PassRefPtr<SVGPathSegCurvetoCubicRel> createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role = PathSegUndefinedRole); 74 PassRefPtr<SVGPathSegCurvetoQuadraticAbs> createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1, SVGPathSegRole role = PathSegUndefinedRole); 75 PassRefPtr<SVGPathSegCurvetoQuadraticRel> createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1, SVGPathSegRole role = PathSegUndefinedRole);
|
SVGPathElement.cpp | 114 PassRefPtr<SVGPathSegCurvetoCubicAbs> SVGPathElement::createSVGPathSegCurvetoCubicAbs(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role) 116 return SVGPathSegCurvetoCubicAbs::create(this, role, x, y, x1, y1, x2, y2); 119 PassRefPtr<SVGPathSegCurvetoCubicRel> SVGPathElement::createSVGPathSegCurvetoCubicRel(float x, float y, float x1, float y1, float x2, float y2, SVGPathSegRole role) 121 return SVGPathSegCurvetoCubicRel::create(this, role, x, y, x1, y1, x2, y2); 124 PassRefPtr<SVGPathSegCurvetoQuadraticAbs> SVGPathElement::createSVGPathSegCurvetoQuadraticAbs(float x, float y, float x1, float y1, SVGPathSegRole role) 126 return SVGPathSegCurvetoQuadraticAbs::create(this, role, x, y, x1, y1); 129 PassRefPtr<SVGPathSegCurvetoQuadraticRel> SVGPathElement::createSVGPathSegCurvetoQuadraticRel(float x, float y, float x1, float y1, SVGPathSegRole role) 131 return SVGPathSegCurvetoQuadraticRel::create(this, role, x, y, x1, y1);
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
cl_ltp.h | 145 Word16 y1[], /* o : Filtered adaptive excitation Q0 */ 149 Word16 g_coeff[], /* o : Correlations between xn, y1, & y2 */
|
gain_q.h | 157 Word16 y1[], /* i : Adaptive codebook. */ 159 Word16 g_coeff[], /* i : Correlations <xn y1> <y1 y1> */
|
spstproc.cpp | 110 y1 -- Word16 Array -- Filtered adaptive exitation 182 Word16 y1[], /* i : Filtered adaptive exitation */ 289 * y1 Q0 Q0 304 L_temp = ((Word32)y1[i] * gain_pit);
|
/frameworks/base/core/java/android/util/ |
MathUtils.java | 94 public static float dist(float x1, float y1, float x2, float y2) { 96 final float y = (y2 - y1); 100 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) { 102 final float y = (y2 - y1);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/dvb/ |
osd.h | 33 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) 48 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1}) 72 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data) 73 // fills pixels x0,y0 through x1,y1 with the content of data[] 80 OSD_FillBlock, // (x0,y0,x1,y1,color) 81 // fills pixels x0,y0 through x1,y1 with the color <col> 83 OSD_Line, // (x0,y0,x1,y1,color) 84 // draw a line from x0,y0 to x1,y1 with the color <col> 86 OSD_Query, // (x0,y0,x1,y1,xasp{color}}), yasp=11 104 int y1; member in struct:osd_cmd_s [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/ |
osd.h | 33 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) 48 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1}) 72 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data) 73 // fills pixels x0,y0 through x1,y1 with the content of data[] 80 OSD_FillBlock, // (x0,y0,x1,y1,color) 81 // fills pixels x0,y0 through x1,y1 with the color <col> 83 OSD_Line, // (x0,y0,x1,y1,color) 84 // draw a line from x0,y0 to x1,y1 with the color <col> 86 OSD_Query, // (x0,y0,x1,y1,xasp{color}}), yasp=11 104 int y1; member in struct:osd_cmd_s [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/dvb/ |
osd.h | 33 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) 48 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1}) 72 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data) 73 // fills pixels x0,y0 through x1,y1 with the content of data[] 80 OSD_FillBlock, // (x0,y0,x1,y1,color) 81 // fills pixels x0,y0 through x1,y1 with the color <col> 83 OSD_Line, // (x0,y0,x1,y1,color) 84 // draw a line from x0,y0 to x1,y1 with the color <col> 86 OSD_Query, // (x0,y0,x1,y1,xasp{color}}), yasp=11 104 int y1; member in struct:osd_cmd_s [all...] |
/external/skia/legacy/src/animator/ |
SkPathParts.h | 72 SkScalar y1; member in class:SkQuadTo 90 SkScalar y1; member in class:SkCubicTo
|
/external/skia/src/animator/ |
SkPathParts.h | 72 SkScalar y1; member in class:SkQuadTo 90 SkScalar y1; member in class:SkCubicTo
|
/external/dropbear/libtomcrypt/testprof/ |
x86_prof.c | 108 unsigned long y1; local 111 for (y1 = 0; y1 < TIMES*100; y1++) { 257 unsigned long x, y1; local 272 for (y1 = 0; y1 < KTIMES; y1++) { 293 unsigned long x, y1; local 314 for (y1 = 0; y1 < 100; y1++) 365 unsigned long x, y1; local 440 unsigned long x, y1; local 515 unsigned long x, y1; local 592 unsigned long x, y1, len; local [all...] |