/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/ |
MatrixFit.java | 164 for (int y2 = y + 1; y2 < h; y2++) { // Find max pivot 165 if (Math.abs(m[y2][y]) > Math.abs(m[maxrow][y])) { 166 maxrow = y2; 179 for (int y2 = y + 1; y2 < h; y2++) { // Eliminate column y 180 double c = m[y2][y] / m[y][y]; 182 m[y2][x] -= m[y][x] * c [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
get_pred_adv_b_add.cpp | 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local [all...] |
/external/freetype/src/base/ |
ftbbox.c | 95 /* y2 :: The coordinate of the control point. */ 106 FT_Pos y2, 111 if ( y1 <= y3 && y2 == y1 ) /* flat arc */ 116 if ( y2 >= y1 && y2 <= y3 ) /* ascending arc */ 121 if ( y2 >= y3 && y2 <= y1 ) /* descending arc */ 123 y2 = y1; 125 y3 = y2; 130 y1 = y3 = y1 - FT_MulDiv( y2 - y1, y2 - y1, y1 - 2*y2 + y3 ) [all...] |
/external/qemu/android/skin/ |
rect.c | 150 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { 154 if (b.x1 >= a.x1 && b.x2 <= a.x2 && b.y1 >= a.y1 && b.y2 <= a.y2) { 170 if (a.x2 <= b.x1 || b.x2 <= a.x1 || a.y2 <= b.y1 || b.y2 <= a.y1) { 178 r.y2 = (a.y2 < b.y2) ? a.y2 : b.y2 [all...] |
/external/pixman/demos/ |
quad2quad.c | 12 double x2, double y2, 116 t4 = (t3 - px2 * px3 * x2 * x3) * y2; 125 t11 = (t10 + t9) * y2; 153 t33 = t32 * y2; 160 t38 = (t37 + px2 * px3 * x2 * x3) * y2; 168 t44 = (t43 + t42) * y2; 172 t47 = (px2 * px3 * x3 - px2 * px3 * x2) * y2; 180 t53 = (t26 + t52 + t51) * y2; 209 t76 = t75 + t74 + t73 * y2; 215 t81 = t80 + t79 + (t78 + t77) * y2; [all...] |
/cts/tests/src/android/renderscript/cts/ |
intrinsic_convolve5x5.rs | 35 uint32_t y2 = y; 51 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10] 52 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11] 53 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12] 54 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13] 55 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14]; 82 uint32_t y2 = y; 98 float3 p2 = convert_float3(rsGetElementAt_uchar3(gIn, x0, y2)) * gCoeffs[10] 99 + convert_float3(rsGetElementAt_uchar3(gIn, x1, y2)) * gCoeffs[11] 100 + convert_float3(rsGetElementAt_uchar3(gIn, x2, y2)) * gCoeffs[12 [all...] |
/external/chromium_org/cc/animation/ |
timing_function.cc | 30 double y2, 61 return eval_bezier(y1, y2, t); 75 double x1, double y1, double x2, double y2) { 76 return make_scoped_ptr(new CubicBezierTimingFunction(x1, y1, x2, y2)); 82 double y2) 83 : x1_(x1), y1_(y1), x2_(x2), y2_(y2) {}
|
timing_function.h | 32 double x2, double y2); 40 CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
|
/external/qemu/distrib/sdl-1.2.15/src/video/gem/ |
SDL_gemevents.c | 83 short x2,y2,w2,h2; local 89 x2=y2=w2=h2 = 0; 93 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2); 102 mouse_event,x2,y2,w2,h2, 177 short x2,y2,w2,h2; local 234 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2); 254 wind_get (message[3], WF_WORKXYWH, &x2, &y2, &w2, &h2); 301 short x2, y2, w2, h2; local 309 x2 = y2 = 0; 313 wind_get (GEM_handle, WF_WORKXYWH, &x2, &y2, &w2, &h2) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
arc.h | 50 VGfloat x1, y1, x2, y2; member in struct:arc 58 VGfloat x2, VGfloat y2,
|
bezier.h | 35 float x2, y2; member in struct:bezier 52 float x2, float y2,
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.h | 50 VGfloat x1, y1, x2, y2; member in struct:arc 58 VGfloat x2, VGfloat y2,
|
bezier.h | 35 float x2, y2; member in struct:bezier 52 float x2, float y2,
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
convolve3x3.fs | 29 uint32_t y2 = max((int32_t)y-1, 0); 39 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)); 40 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2)); 41 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
|
convolve5x5.fs | 34 uint32_t y2 = y; 50 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10] 51 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11] 52 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12] 53 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13] 54 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
ip2_convolve3x3.rs | 29 uint32_t y2 = max((int32_t)y-1, 0); 37 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)); 38 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2)); 39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
|
convolve5x5.fs | 34 uint32_t y2 = y; 50 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10] 51 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11] 52 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12] 53 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13] 54 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
convolve3x3.fs | 29 uint32_t y2 = max((int32_t)y-1, 0); 37 float4 p20 = convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)); 38 float4 p21 = convert_float4(rsGetElementAt_uchar4(gIn, x, y2)); 39 float4 p22 = convert_float4(rsGetElementAt_uchar4(gIn, x2, y2));
|
convolve5x5.fs | 34 uint32_t y2 = y; 50 float4 p2 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y2)) * gCoeffs[10] 51 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y2)) * gCoeffs[11] 52 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y2)) * gCoeffs[12] 53 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y2)) * gCoeffs[13] 54 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y2)) * gCoeffs[14];
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
convolve3x3.rs | 32 uint32_t y2 = max((int32_t)y-1, 0); 40 float4 p20 = rsUnpackColor8888(gPixels[x1 + gWidth * y2]); 41 float4 p21 = rsUnpackColor8888(gPixels[x + gWidth * y2]); 42 float4 p22 = rsUnpackColor8888(gPixels[x2 + gWidth * y2]);
|
grad.rs | 60 float y2 = yPos2[i]; 62 float denom = (y2 * y2 - 2 * y1 * y2 + x2 * x2 - 2 * x1 * x2 + y1 * y1 + x1 * x1); 66 grads[k].dy = (y1 - y2) / denom; 68 grads[k].off = (y2 * y2 + x2 * x2 - x1 * x2 - y1 * y2) / denom;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestGraphics.java | 60 public void drawLine(int x1, int y1, int x2, int y2) { 61 mDrawn.add("drawLine(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 70 public void drawRect(int x1, int y1, int x2, int y2) { 71 mDrawn.add("drawRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 95 public void fillRect(int x1, int y1, int x2, int y2) { 96 mDrawn.add("fillRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 169 public void drawArrow(int x1, int y1, int x2, int y2, int size) { 170 mDrawn.add("drawArrow(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")");
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_log10.c | 44 double f,hfsq,hi,lo,r,val_hi,val_lo,w,y,y2; local 76 y2 = y*log10_2hi; 85 w = y2 + val_hi; 86 val_lo += (y2 - w) + val_hi;
|
/external/clang/test/SemaCXX/ |
warn-literal-conversion.cpp | 10 int y2 = (((1.2222F))); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
spstproc.h | 120 Word16 y2[], /* i : Filtered fixed codebook excitation */
|