HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 51 - 75 of 468) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
convolve3x3.rs 31 uint32_t y1 = min((int32_t)y+1, gHeight-1);
34 float4 p00 = rsUnpackColor8888(gPixels[x1 + gWidth * y1]);
35 float4 p01 = rsUnpackColor8888(gPixels[x + gWidth * y1]);
36 float4 p02 = rsUnpackColor8888(gPixels[x2 + gWidth * y1]);
  /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 + ")");
  /external/clang/test/SemaCXX/
warn-literal-conversion.cpp 9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
converting-constructor.cpp 45 void y1() { function
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
spstproc.h 119 Word16 y1[], /* i : Filtered adaptive exitation */
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 83 for (int y1 = 0; y1 < height / 2; y1++){
84 y2 = height - y1 - 1;
85 System.arraycopy(img, y1 * scSz, sln, 0, scSz);
86 System.arraycopy(img, y2 * scSz, img, y1 * scSz, scSz);
96 for (int y1 = 0; y1 < height / 2; y1++){
97 y2 = height - y1 - 1
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
convolve5x5.fs 33 uint32_t y1 = max((int32_t)y-1, 0);
44 float4 p1 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5]
45 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6]
46 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7]
47 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8]
48 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9];
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
convolve5x5.fs 33 uint32_t y1 = max((int32_t)y-1, 0);
44 float4 p1 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5]
45 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6]
46 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7]
47 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8]
48 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9];
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
convolve5x5.fs 33 uint32_t y1 = max((int32_t)y-1, 0);
44 float4 p1 = convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5]
45 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6]
46 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7]
47 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8]
48 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9];
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * y1= y with lower 32 bits chopped, y2 = y-y1.
57 double a,b,t1,t2,y1,y2,w; local
112 y1 = 0;
113 SET_HIGH_WORD(y1,hb);
114 y2 = b - y1;
118 w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotl.c 51 long double a=x,b=y,t1,t2,y1,y2,w; local
108 y1 = b;
110 uv.e = y1; uv.bits.manl = 0; y1 = uv.e;
111 y2 = b - y1;
115 w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
73 SET_FLOAT_WORD(y1,hb&0xfffff000);
74 y2 = b - y1;
77 w = __ieee754_sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
32 * y1= y with lower 32 bits chopped, y2 = y-y1.
55 double a=x,b=y,t1,t2,y1,y2,w; local
102 y1 = 0;
103 __HI(y1) = hb;
104 y2 = b - y1;
108 w = ieee_sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
  /external/skia/src/core/
SkEdge.h 94 SkFDot6 x0, y0, x1, y1;
102 y1 = int(p1.fY * scale);
108 y1 = p1.fY >> shift;
114 if (y0 > y1) {
116 SkTSwap(y0, y1);
121 int bot = SkFDot6Round(y1);
128 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionHandles.java 89 int y1 = r.y; local
93 int y2 = y1 + h;
99 y1 += insets.top;
104 int my = (y1 + y2) / 2;
109 mHandles.add(new SelectionHandle(x1, y1, Position.TOP_LEFT));
118 mHandles.add(new SelectionHandle(x2, y1, Position.TOP_RIGHT));
125 mHandles.add(new SelectionHandle(mx, y1, Position.TOP_MIDDLE));
  /external/libvpx/libvpx/vp8/common/
postproc.c 127 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
546 int y1, int u1, int v1, int alpha, int stride)
549 int y1_const = y1*((1<<16)-alpha);
584 int y1, int u1, int v1, int alpha, int stride)
587 int y1_const = y1*((1<<16)-alpha);
648 int y1, int u1, int v1, int alpha, int stride)
651 int y1_const = y1*((1<<16)-alpha);
678 static void constrain_line (int x0, int *x1, int y0, int *y1, int width, int height)
686 dy = *y1 - y0;
690 *y1 = ((width-x0)*dy)/dx + y0
945 int x1, y1; local
    [all...]
  /frameworks/av/media/libeffects/testlibs/
AudioBiquadFilter.cpp 154 audio_sample_t y1 = mDelays[0][2]; local
167 acc = mac_coef_sample(a1, y1, acc);
170 y2 = y1;
171 y1 = y0;
178 mDelays[0][2] = y1;
212 audio_sample_t y1 = mDelays[ch][2]; local
220 acc = mac_coef_sample(a1, y1, acc);
223 y2 = y1;
224 y1 = y0;
233 mDelays[ch][2] = y1;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LinearGradient_Delegate.java 58 float x0, float y0, float x1, float y1,
60 LinearGradient_Delegate newDelegate = new LinearGradient_Delegate(x0, y0, x1, y1,
67 float x0, float y0, float x1, float y1,
70 x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
76 int native_shader, float x0, float y0, float x1, float y1,
84 int native_shader, float x0, float y0, float x1, float y1,
98 * @param y1 The y-coordinate for the end of the gradient line
105 private LinearGradient_Delegate(float x0, float y0, float x1, float y1,
108 mJavaPaint = new LinearGradientPaint(x0, y0, x1, y1, mColors, mPositions, tile);
125 public LinearGradientPaint(float x0, float y0, float x1, float y1, int colors[]
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGPathStringSource.cpp 163 float y1; local
169 || !parseNumber(m_current, m_end, y1)
175 point1 = FloatPoint(x1, y1);
184 float y1; local
188 || !parseNumber(m_current, m_end, y1)
192 point1 = FloatPoint(x1, y1);
SVGLineElement.h 60 DECLARE_ANIMATED_LENGTH(Y1, y1)
SVGLinearGradientElement.h 54 DECLARE_ANIMATED_LENGTH(Y1, y1)
  /external/dropbear/libtomcrypt/demos/
tv_gen.c 395 int err, kl, x, y1, z; local
422 for (y1 = 0; y1 <= (int)(cipher_descriptor[x].block_length*2); y1++){
423 for (z = 0; z < y1; z++) {
429 if ((err = eax_encrypt_authenticate_memory(x, key, kl, nonce, y1, header, y1, plaintext, y1, plaintext, tag, &len)) != CRYPT_OK) {
433 fprintf(out, "%3d: ", y1);
434 for (z = 0; z < y1; z++)
455 int err, kl, x, y1, z; local
519 int err, kl, x, y1, z; local
582 int err, kl, x, y1, z; local
    [all...]
  /external/speex/libspeex/
ltp_arm4.h 101 spx_word32_t y0, y1, y2, y3; local
103 y1=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
  /external/regex-re2/benchlog/
mktable 80 $y1 = $lasty{$who};
83 if($y1 < 0.05 * $y) {
85 $y1 = 0.05 * $y;
87 printf JGR "newstring x $x1 y $y1 hjl $v : $who\n";
  /external/webkit/Source/WebKit/android/plugins/
ANPPathInterface.cpp 66 static void anp_quadTo(ANPPath* path, float x0, float y0, float x1, float y1) {
68 SkFloatToScalar(x1), SkFloatToScalar(y1));
72 float x1, float y1, float x2, float y2) {
74 SkFloatToScalar(x1), SkFloatToScalar(y1),

Completed in 773 milliseconds

1 23 4 5 6 7 8 91011>>