Searched defs:xy (Results 1 - 14 of 14) 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/core/java/android/hardware/camera2/params/
H A DMeteringRectangle.java103 * <p>The point {@code xy}'s data is copied; the reference is not retained.</p>
105 * @param xy a non-{@code null} {@link Point} with both x,y >= 0
112 public MeteringRectangle(Point xy, Size dimensions, int meteringWeight) { argument
113 checkNotNull(xy, "xy must not be null");
116 mX = checkArgumentNonnegative(xy.x, "x must be nonnegative");
117 mY = checkArgumentNonnegative(xy.y, "y must be nonnegative");
/frameworks/native/include/ui/
H A Dvec3.h46 Impersonator< tvec2<T> > xy; member in union:android::tvec3::__anon1299
H A Dvec4.h46 Impersonator< tvec2<T> > xy; member in union:android::tvec4::__anon1304
H A Dmat4.h315 T xy = x * y; local
321 r[ 0] = x*x*nc + c; r[ 4] = xy*nc - zs; r[ 8] = zx*nc + ys;
322 r[ 1] = xy*nc + zs; r[ 5] = y*y*nc + c; r[ 9] = yz*nc - xs;
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java221 int[] xy = new int[2];
222 v.getLocationOnScreen(xy);
227 final float x = xy[0] + (viewWidth / 2.0f);
228 float fromY = xy[1] + (viewHeight / 2.0f);
241 int[] xy = new int[2];
242 v.getLocationOnScreen(xy);
247 final float x = xy[0] + (viewWidth / 2.0f);
248 float y = xy[1] + (viewHeight / 2.0f);
281 int[] xy = new int[2];
282 v.getLocationOnScreen(xy);
486 getStartLocation(View v, int gravity, int[] xy) argument
[all...]
/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/base/libs/hwui/
H A DMatrix.cpp331 const float xy = x * y; local
339 data[kSkewX] = xy * nc - zs;
341 data[kSkewY] = xy * nc + zs;
H A DSkiaShader.cpp256 SkShader::TileMode xy[2]; local
257 if (shader.asABitmap(&bitmap, NULL, xy) != SkShader::kDefault_BitmapType) {
260 bitmapShaderHelper(caches, &description, NULL, extensions, bitmap, xy);
266 SkShader::TileMode xy[2]; local
267 if (shader.asABitmap(&bitmap, NULL, xy) != SkShader::kDefault_BitmapType) {
275 if (!bitmapShaderHelper(caches, NULL, &shaderInfo, extensions, bitmap, xy)) {
/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::__anon1423
290 vbase<float, 2> xy; member in union:android::vbase::__anon1426
/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;
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsics_x86.c153 __m128i xy, zw; local
167 xy = _mm_shuffle_epi8(i4, Mxy);
170 x2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x00));
171 y2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x55));
172 z2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0xaa));
173 w2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0xff));
209 __m128i xy, zw; local
223 xy = _mm_shuffle_epi8(i4, Mxy);
226 x2 = _mm_madd_epi16(xy, _mm_shuffle_epi32(c0, 0x00));
227 y2 = _mm_madd_epi16(xy, _mm_shuffle_epi3
261 __m128i xy, zw; local
[all...]

Completed in 2868 milliseconds