HomeSort by relevance Sort by last modified time
    Searched refs:y4 (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/valgrind/main/memcheck/tests/
badrw.c 10 int y4; local
19 y4 = *x4;
20 *x4 = y4;
  /external/pdfium/core/src/fxge/agg/agg23/
fx_agg_curves.cpp 31 FX_FLOAT x4, FX_FLOAT y4)
36 bezier(x1, y1, x2, y2, x3, y3, x4, y4);
42 FX_FLOAT x4, FX_FLOAT y4,
53 FX_FLOAT y34 = (y3 + y4) / 2;
61 FX_FLOAT dy = y4 - y1;
62 FX_FLOAT d2 = FXSYS_fabs(FXSYS_Mul(x2 - x4, dy) - FXSYS_Mul(y2 - y4, dx));
63 FX_FLOAT d3 = FXSYS_fabs(FXSYS_Mul(x3 - x4, dy) - FXSYS_Mul(y3 - y4, dx));
70 FXSYS_fabs(y2 + y4 - y3 - y3) <= m_distance_tolerance_manhattan) {
98 recursive_bezier(x1234, y1234, x234, y234, x34, y34, x4, y4, level + 1);
103 FX_FLOAT x4, FX_FLOAT y4)
    [all...]
agg_curves.h 28 FX_FLOAT x4, FX_FLOAT y4)
37 cp[7] = y4;
42 FX_FLOAT x4, FX_FLOAT y4)
51 cp[7] = y4;
72 FX_FLOAT x4, FX_FLOAT y4) :
76 init(x1, y1, x2, y2, x3, y3, x4, y4);
91 FX_FLOAT x4, FX_FLOAT y4);
129 FX_FLOAT x4, FX_FLOAT y4);
133 FX_FLOAT x4, FX_FLOAT y4,
148 FX_FLOAT x4, FX_FLOAT y4)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_convolve5x5.rs 37 uint32_t y4 = min((int32_t)y+2, gHeight-1);
63 float4 p4 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y4)) * gCoeffs[20]
64 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y4)) * gCoeffs[21]
65 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y4)) * gCoeffs[22]
66 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y4)) * gCoeffs[23]
67 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y4)) * gCoeffs[24];
84 uint32_t y4 = min((int32_t)y+2, gHeight-1);
110 float3 p4 = convert_float3(rsGetElementAt_uchar3(gIn, x0, y4)) * gCoeffs[20]
111 + convert_float3(rsGetElementAt_uchar3(gIn, x1, y4)) * gCoeffs[21]
112 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y4)) * gCoeffs[22
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.h 37 float x4, y4; member in struct:bezier
54 float x4, float y4);
bezier.c 55 bez->y3 = bez->y3 + t * (bez->y4 - bez->y3);
64 left->y4 = bez->y1 = left->y3 + t * (bez->y2 - left->y3);
83 second_half->y3 = (bez->y3 + bez->y4) * 0.5;
85 second_half->y4 = bez->y4;
88 first_half->y4 = second_half->y1 =
110 double y4y1 = b->y4 - b->y1;
124 polygon_vertex_append(poly, b->x4, b->y4);
142 len = len + line_length(bez->x3, bez->y3, bez->x4, bez->y4);
144 chord = line_length(bez->x1, bez->y1, bez->x4, bez->y4);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.h 37 float x4, y4; member in struct:bezier
54 float x4, float y4);
bezier.c 55 bez->y3 = bez->y3 + t * (bez->y4 - bez->y3);
64 left->y4 = bez->y1 = left->y3 + t * (bez->y2 - left->y3);
83 second_half->y3 = (bez->y3 + bez->y4) * 0.5;
85 second_half->y4 = bez->y4;
88 first_half->y4 = second_half->y1 =
110 double y4y1 = b->y4 - b->y1;
124 polygon_vertex_append(poly, b->x4, b->y4);
142 len = len + line_length(bez->x3, bez->y3, bez->x4, bez->y4);
144 chord = line_length(bez->x1, bez->y1, bez->x4, bez->y4);
    [all...]
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 12 int y4 = 1.23E1F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 12.3 to 12}} local
default-constructor-initializers.cpp 38 struct Y4 {
42 Y4 y4; variable
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
convolve5x5.rs 37 uint32_t y4 = min((int32_t)y+2, gHeight-1);
63 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y4)) * gCoeffs[20]
64 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y4)) * gCoeffs[21]
65 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y4)) * gCoeffs[22]
66 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y4)) * gCoeffs[23]
67 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y4)) * gCoeffs[24];
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
convolve5x5.fs 36 uint32_t y4 = min((int32_t)y+2, gHeight-1);
62 float4 p4 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y4)) * gCoeffs[20]
63 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y4)) * gCoeffs[21]
64 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y4)) * gCoeffs[22]
65 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y4)) * gCoeffs[23]
66 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y4)) * gCoeffs[24];
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
convolve5x5.rs 37 uint32_t y4 = min((int32_t)y+2, gHeight-1);
63 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y4)) * gCoeffs[20]
64 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y4)) * gCoeffs[21]
65 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y4)) * gCoeffs[22]
66 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y4)) * gCoeffs[23]
67 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y4)) * gCoeffs[24];
  /external/chromium_org/third_party/freetype/src/base/
ftbbox.c 329 FT_Pos y4,
334 /* FT_Pos a = y4 - 3*y3 + 3*y2 - y1; */
341 FT_UNUSED ( y4 );
373 FT_Pos y4,
381 if ( y4 < *min ) *min = y4;
382 else if ( y4 > *max ) *max = y4;
385 if ( y1 <= y4 )
388 if ( y1 <= y2 && y2 <= y4 && y1 <= y3 && y3 <= y4
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
ftbbox.c 329 FT_Pos y4,
334 /* FT_Pos a = y4 - 3*y3 + 3*y2 - y1; */
341 FT_UNUSED ( y4 );
373 FT_Pos y4,
381 if ( y4 < *min ) *min = y4;
382 else if ( y4 > *max ) *max = y4;
385 if ( y1 <= y4 )
388 if ( y1 <= y2 && y2 <= y4 && y1 <= y3 && y3 <= y4
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ColorSpaceMatrix.java 69 int y4 = y * 4; local
71 temp[y4 + x] = mMatrix[y4 + 0] * a[x]
72 + mMatrix[y4 + 1] * a[4 + x]
73 + mMatrix[y4 + 2] * a[8 + x]
74 + mMatrix[y4 + 3] * a[12 + x];
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
DynamicsCompressorKernel.cpp 259 float y4 = releaseFrames * releaseZone4; local
262 // match the evenly spaced x values as follows: (y1 : x == 0, y2 : x == 1, y3 : x == 2, y4 : x == 3)
263 float kA = 0.9999999999999998f*y1 + 1.8432219684323923e-16f*y2 - 1.9373394351676423e-16f*y3 + 8.824516011816245e-18f*y4;
264 float kB = -1.5788320352845888f*y1 + 2.3305837032074286f*y2 - 0.9141194204840429f*y3 + 0.1623677525612032f*y4;
265 float kC = 0.5334142869106424f*y1 - 1.272736789213631f*y2 + 0.9258856042207512f*y3 - 0.18656310191776226f*y4;
266 float kD = 0.08783463138207234f*y1 - 0.1694162967925622f*y2 + 0.08588057951595272f*y3 - 0.00429891410546283f*y4;
267 float kE = -0.042416883008123074f*y1 + 0.1115693827987602f*y2 - 0.09764676325265872f*y3 + 0.028494263462021576f*y4;
  /external/chromium_org/third_party/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 30 SkScalar y1 = p1.y(), y2 = p2.y(), y3 = p3.y(), y4 = p4.y(); local
32 SkScalar d = SkScalarMul(x1 - x2, y3 - y4) - SkScalarMul(y1 - y2, x3 - x4);
40 post = SkScalarMul(x3, y4) - SkScalarMul(y3, x4);
43 SkScalarDiv(SkScalarMul(pre, y3 - y4) - SkScalarMul(y1 - y2, post), d));
49 res.y() < GrMin(y3, y4) || res.y() > GrMax(y3, y4)) ?
  /external/skia/experimental/StrokePathRenderer/
GrStrokePathRenderer.cpp 30 SkScalar y1 = p1.y(), y2 = p2.y(), y3 = p3.y(), y4 = p4.y(); local
32 SkScalar d = SkScalarMul(x1 - x2, y3 - y4) - SkScalarMul(y1 - y2, x3 - x4);
40 post = SkScalarMul(x3, y4) - SkScalarMul(y3, x4);
43 SkScalarDiv(SkScalarMul(pre, y3 - y4) - SkScalarMul(y1 - y2, post), d));
49 res.y() < GrMin(y3, y4) || res.y() > GrMax(y3, y4)) ?
  /external/chromium_org/third_party/boringssl/src/crypto/poly1305/
poly1305_arm.c 47 uint32_t y4; local
70 y4 = x4 + (y3 >> 26);
72 swap = -(y4 >> 26);
73 y4 &= 0x3ffffff;
79 y4 ^= x4;
85 y4 &= swap;
91 y4 ^= x4;
97 r->v[8] = y4;
  /external/fonttools/Lib/fontTools/pens/
pointInsidePen.py 112 x4, y4 = point
116 if y1 < y and y2 < y and y3 < y and y4 < y:
118 if y1 >= y and y2 >= y and y3 >= y and y4 >= y:
124 ay = y4 - dy - cy - by
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve5x5.cpp 346 const void *y2, const void *y3, const void *y4,
364 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)); local
370 const uchar4 *py4 = (const uchar4 *)(pin + stride * y4);
424 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)); local
430 const uchar2 *py4 = (const uchar2 *)(pin + stride * y4);
473 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)); local
479 const uchar *py4 = (const uchar *)(pin + stride * y4);
522 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)); local
528 const float4 *py4 = (const float4 *)(pin + stride * y4);
571 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)) local
620 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1)); local
    [all...]
  /frameworks/base/libs/hwui/font/
CacheTexture.h 160 float x4, float y4, float u4, float v4) {
165 TextureVertex::set(mesh++, x4, y4, u4, v4);
  /external/pdfium/fpdfsdk/include/
fpdfdoc.h 185 FS_FLOAT y4; member in struct:_FS_QUADPOINTSF
  /external/clang/test/Analysis/
dead-stores.c 246 int y4 = 4; local
268 ++y4;
314 0 ? : ((void)y4, ({ return; }));

Completed in 763 milliseconds

1 2 3 4