Searched defs:xy (Results 1 - 9 of 9) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dg_pitch.c37 Word16 xy, yy, exp_xy, exp_yy, gain; local
41 xy = extract_h(Dot_product12_asm(xn, y1, L_subfr, &exp_xy));
46 xy = extract_h(Dot_product12(xn, y1, L_subfr, &exp_xy));
53 g_coeff[2] = xy;
56 /* If (xy < 0) gain = 0 */
57 if (xy < 0)
60 /* compute gain = xy/yy */
62 xy >>= 1; /* Be sure xy < yy */
63 gain = div_s(xy, y
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dg_code.cpp148 Word16 xy, yy, exp_xy, exp_yy, gain;
171 xy = extract_h (L_shl (s, exp_xy));
173 // If (xy < 0) gain = 0
175 if (xy <= 0)
188 // compute gain = xy/yy
190 xy = shr (xy, 1); // Be sure xy < yy
191 gain = div_s (xy, yy);
236 Word16 xy, y local
[all...]
H A Dg_pitch.cpp172 Word16 xy, yy, exp_xy, exp_yy, gain;
225 xy = pv_round (L_shl (s, exp_xy));
235 xy = pv_round (L_shl (s, exp_xy));
241 g_coeff[2] = xy;
244 // If (xy < 4) gain = 0
246 i = sub (xy, 4);
251 // compute gain = xy/yy
253 xy = shr (xy, 1); // Be sure xy < y
309 Word16 xy; local
[all...]
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java233 int[] xy = new int[2];
234 v.getLocationOnScreen(xy);
239 final float x = xy[0] + (viewWidth / 2.0f);
240 float fromY = xy[1] + (viewHeight / 2.0f);
253 int[] xy = new int[2];
254 v.getLocationOnScreen(xy);
259 final float x = xy[0] + (viewWidth / 2.0f);
260 float y = xy[1] + (viewHeight / 2.0f);
293 int[] xy = new int[2];
294 v.getLocationOnScreen(xy);
498 getStartLocation(View v, int gravity, int[] xy) argument
[all...]
/frameworks/base/libs/hwui/
H A DMatrix.cpp243 const float xy = x * y; local
251 data[kSkewX] = xy * nc - zs;
253 data[kSkewY] = xy * nc + zs;
/frameworks/rs/
H A DrsMatrix4x4.cpp221 const float xy = x * y; local
228 m[ 4] = xy*nc - zs;
230 m[ 1] = xy*nc + zs;
/frameworks/support/renderscript/v8/rs_support/
H A DrsMatrix4x4.cpp221 const float xy = x * y; local
228 m[ 4] = xy*nc - zs;
230 m[ 1] = xy*nc + zs;
/frameworks/native/services/sensorservice/
H A Dvec.h126 // This is needed for performance when using ".xy{z}" element access
277 vbase<float, 2> xy; member in union:android::vbase::__anon1516
290 vbase<float, 2> xy; member in union:android::vbase::__anon1519
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp367 const GLfloat xy = x * y; local
373 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
374 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;

Completed in 5551 milliseconds