Searched defs:y1 (Results 26 - 32 of 32) sorted by relevance

12

/frameworks/base/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c191 Word16 y1[L_SUBFR]; /* Filtered adaptive excitation */ local
952 * - find filtered pitch exc. y1[]=exc[] convolved with h1[]) *
964 Convolve_asm(&exc[i_subfr], h1, y1, L_SUBFR);
966 Convolve(&exc[i_subfr], h1, y1, L_SUBFR);
968 gain1 = G_pitch(xn, y1, g_coeff, L_SUBFR);
975 Updt_tar(xn, dn, y1, gain1, L_SUBFR); /* dn used temporary */
1048 Copy(y2, y1, L_SUBFR);
1166 index = Q_gain2(xn, y1, Q_new + shift, y2, code, g_coeff, L_SUBFR, 6,
1171 index = Q_gain2(xn, y1, Q_new + shift, y2, code, g_coeff, L_SUBFR, 7,
1208 L_tmp -= (y1[L_SUBF
[all...]
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp260 float y1 = y0; local
279 else if (y > y1) {
280 y1 = y;
298 float dy = y1 - y0;
315 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) { argument
316 return x0 * x1 + y0 * y1 + z0 * z1;
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp614 void FontRenderer::appendMeshQuad(float x1, float y1, float z1, float u1, float v1, float x2, argument
618 (x1 > mClip->right || y1 < mClip->top || x2 < mClip->left || y4 > mClip->bottom)) {
627 (*currentPos++) = y1;
656 mBounds->bottom = fmax(mBounds->bottom, y1);
/frameworks/base/libs/rs/driver/
H A DrsdRuntimeStubs.cpp177 static void SC_DrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1, argument
183 x1, y1, z1, u1, v1,
189 static void SC_DrawQuad(float x1, float y1, float z1, argument
194 rsrDrawQuad(rsc, sc, x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4);
202 static void SC_DrawRect(float x1, float y1, float x2, float y2, float z) { argument
204 rsrDrawRect(rsc, sc, x1, y1, x2, y2, z);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java757 private void drawLine(Canvas graphics, int x1, int y1, int x2, int y2, Paint paint) { argument
760 graphics.drawLine(dx + x1, dy + y1, dx + x2, dy + y2, paint);
763 private static void drawRect(Canvas canvas, int x1, int y1, int x2, int y2, Paint paint) { argument
764 canvas.drawRect(x1, y1, x2 - 1, y2 - 1, paint);
987 int y1 = vLocations[rowSpan.min];
993 int cellHeight = y2 - y1;
1036 int cy = paddingTop + y1 + dy;
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp3755 int32_t x1 = 100, y1 = 125, x2 = 300, y2 = 500; local
3756 processPosition(mapper, x1, y1);
3776 toDisplayX(x1), toDisplayY(y1), 1, 0, 0, 0, 0, 0, 0, 0));
3798 toDisplayX(x1), toDisplayY(y1), 1, 0, 0, 0, 0, 0, 0, 0));
3806 x1 += 10; y1 += 15; x2 += 5; y2 -= 10;
3807 processPosition(mapper, x1, y1);
3829 toDisplayX(x1), toDisplayY(y1), 1, 0, 0, 0, 0, 0, 0, 0));
3859 toDisplayX(x1), toDisplayY(y1), 1, 0, 0, 0, 0, 0, 0, 0));
4032 int32_t x1 = 100, y1 = 125, x2 = 300, y2 = 500; local
4033 processPosition(mapper, x1, y1);
4208 int32_t x1 = 100, y1 = 125, x2 = 300, y2 = 500; local
[all...]
/frameworks/base/services/input/
H A DInputReader.cpp88 inline static float distance(float x1, float y1, float x2, float y2) { argument
89 return hypotf(x1 - x2, y1 - y2);

Completed in 158 milliseconds

12