Searched refs:y0 (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dtns_ar_filter.cpp318 Int32 y0; local
379 y0 = *p_spec >> shift_down_amount;
387 y0 -= fxp_mul32_Q31(temp, *(p_lpc++)) << shift_up;
394 *(p_spec--) = y0;
402 y0 = *p_spec >> shift_down_amount;
410 y0 -= fxp_mul32_Q31(temp, *(p_lpc++)) << shift_up;
417 *(p_spec--) = y0;
430 y0 = 0;
435 y0 -= fxp_mul32_Q31(*p_state--, *(p_lpc++));
442 *(p_spec) = (*p_spec >> shift_down_amount) + (y0 << shift_u
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DLinearGradient.java23 @param y0 The y-coordinate for the start of the gradient line
32 public LinearGradient(float x0, float y0, float x1, float y1, argument
40 native_instance = nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt);
45 @param y0 The y-coordinate for the start of the gradient line
52 public LinearGradient(float x0, float y0, float x1, float y1, argument
54 native_instance = nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt);
58 private static native int nativeCreate1(float x0, float y0, float x1, float y1, argument
60 private static native int nativeCreate2(float x0, float y0, float x1, float y1, argument
/frameworks/base/services/audioflinger/
H A DAudioResamplerCubic.h43 int32_t a, b, c, y0, y1, y2, y3; member in struct:android::AudioResamplerCubic::__anon710
54 p->y0 = p->y1;
58 p->a = (3 * (p->y1 - p->y2) - p->y0 + p->y3) >> 1;
59 p->b = (p->y2 << 1) + p->y0 - (((5 * p->y1 + p->y3)) >> 1);
60 p->c = (p->y2 - p->y0) >> 1;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DLinearGradient_Delegate.java58 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,
69 return nativeCreate1(x0, y0, x1, y1, new int[] { color0, color1}, null /*positions*/,
79 * @param y0 The y-coordinate for the start of the gradient line
88 private LinearGradient_Delegate(float x0, float y0, float x1, float y1, argument
91 mJavaPaint = new LinearGradientPaint(x0, y0, x1, y1, mColors, mPositions, tile);
108 public LinearGradientPaint(float x0, float y0, float x1, float y1, int colors[], argument
112 mY0 = y0;
114 mDy = y1 - y0;
57 nativeCreate1( float x0, float y0, float x1, float y1, int colors[], float positions[], int tileMode) argument
66 nativeCreate2( float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
[all...]
/frameworks/base/core/java/android/view/
H A DScaleGestureDetector.java194 final float y0 = event.getRawY();
198 boolean p0sloppy = x0 < edgeSlop || y0 < edgeSlop
199 || x0 > rightSlop || y0 > bottomSlop;
228 final float y0 = event.getRawY();
232 boolean p0sloppy = x0 < edgeSlop || y0 < edgeSlop
233 || x0 > rightSlop || y0 > bottomSlop;
/frameworks/base/media/libeffects/testlibs/
H A DAudioBiquadFilter.cpp171 audio_sample_t y0 = coef_sample_acc_to_sample(acc); local
173 y1 = y0;
176 (*out++) = y0;
224 audio_sample_t y0 = coef_sample_acc_to_sample(acc); local
226 y1 = y0;
229 *out = y0;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java497 float x0, x1, y0, y1;
503 x0 = r.left; y0 = r.top;
507 x0 = r.right; y0 = r.top;
511 x0 = r.right; y0 = r.top;
512 x1 = level * r.left; y1 = y0;
515 x0 = r.right; y0 = r.bottom;
519 x0 = r.left; y0 = r.bottom;
523 x0 = r.left; y0 = r.bottom;
527 x0 = r.left; y0 = r.top;
528 x1 = level * r.right; y1 = y0;
[all...]
/frameworks/base/core/jni/android/graphics/
H A DShader.cpp81 float x0, float y0, float x1, float y1,
85 pts[0].set(SkFloatToScalar(x0), SkFloatToScalar(y0));
113 float x0, float y0, float x1, float y1,
117 pts[0].set(SkFloatToScalar(x0), SkFloatToScalar(y0));
80 LinearGradient_create1(JNIEnv* env, jobject, float x0, float y0, float x1, float y1, jintArray colorArray, jfloatArray posArray, int tileMode) argument
112 LinearGradient_create2(JNIEnv* env, jobject, float x0, float y0, float x1, float y1, int color0, int color1, int tileMode) argument
H A DNinePatchImpl.cpp175 const int32_t y0 = chunk.yDivs[0]; local
185 bool yIsStretchable = (y0 == 0);
/frameworks/base/services/camera/libcameraservice/
H A DFakeCamera.cpp235 uint8_t y0, y1, u, v; local
239 y0 = y_tab[(temp>>SHIFT1) + ((pixels>>3) & 0x00FC)];
262 tempY[0] = y0;
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp257 float y0 = *pSrc++; local
258 float y1 = y0;
274 if (y < y0) {
275 y0 = y;
296 float dy = y1 - y0;
299 *pSphere++ = y0 + dy * 0.5f;
313 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { argument
314 return x0 * x1 + y0 * y1 + z0 * z1;
/frameworks/base/media/libstagefright/codecs/avc/dec/src/
H A Dpred_intra.cpp919 x2 = video->intra_pred_topleft; /* re-use x2 instead of y0 */
985 x1 = video->intra_pred_topleft; /* reuse x1 instead of y0 */
1051 x2 = video->intra_pred_topleft; /* reuse x2 instead of y0 */
1172 int y0, y1, y2, y3; local
1176 y0 = *comp_refy;
1186 P0 = ((y0 + y1 + 1) >> 1);
1187 P1 = ((y0 + (y1 << 1) + y2 + 2) >> 2);

Completed in 156 milliseconds