Searched defs:ax (Results 1 - 25 of 102) sorted by last modified time

12345

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dentropy_coding.c104 WebRtc_Word16 ax, axINT, axFRAC; local
109 // ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637-700, 14); //Q8
110 ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637, 14); //Q8
111 axINT = WEBRTC_SPL_RSHIFT_W16(ax, 8); //Q0
112 axFRAC = ax&0x00FF;
118 // ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637+700, 14); //Q8
119 ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637, 14); //Q8
120 ax = -ax;
121 axINT = 1 + WEBRTC_SPL_RSHIFT_W16(ax,
[all...]
/external/stressapptest/src/
H A Dos.cc154 int ax, bx, cx, dx; local
156 "cpuid": "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (1));
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp476 double ax = dst[0].fX = interp_cubic_coords(&fPts[0].fX, t1); local
484 double mx = ex * 27 - ax * 8 - dx;
486 double nx = fx * 27 - ax - dx * 8;
H A DSkPathOpsQuad.cpp220 double ax = dst[0].fX = interp_quad_coords(&fPts[0].fX, t1); local
226 /* bx = */ dst[1].fX = 2*dx - (ax + cx)/2;
/external/skia/tests/
H A DColorTest.cpp33 int ax = SkMulDiv255Ceiling(x, a); local
34 REPORTER_ASSERT(reporter, ax <= a);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp77 int ax = state.fA & 0x03; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
H A DPathOpsSimplifyDegenerateThreadedTest.cpp18 int ax = state.fA & 0x03; local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
49 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
74 int ax = a & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyQuadThreadedTest.cpp19 int ax = state.fA & 0x03; local
41 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp19 int ax = state.fA & 0x03; local
41 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp19 int ax = state.fA & 0x03; local
42 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
52 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
79 int ax = a & 0x03; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.cpp700 float ax, float ay,
704 float dx = bx - ax;
712 float acx = (ax + cx) * 0.5f;
721 RecursiveQuadraticBezierVertices(ax, ay, mx, my, acx, acy,
699 RecursiveQuadraticBezierVertices( float ax, float ay, float bx, float by, float cx, float cy, float sqrInvScaleX, float sqrInvScaleY, SkTArray<Vertex, true>* outputVertices) argument
/external/skia/experimental/Intersection/
H A DCubicParameterization_TestUtility.cpp8 double ax, bx, cx, dx; local
10 alt_set_abcd(&cubic[0].x, ax, bx, cx, dx);
12 set_abcd(&cubic[0].x, ax, bx, cx, dx);
18 calc_ABCD(ax, ay, coeffs);
22 double ax = cubic[0].x;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
H A DCubicSubDivide.cpp75 double ax = dst[0].x = interp_cubic_coords(&src[0].x, t1); local
83 double mx = ex * 27 - ax * 8 - dx;
85 double nx = fx * 27 - ax - dx * 8;
H A DEdgeWalkerPolygon4x4_Test.cpp17 int ax = state.a & 0x03; local
39 path.moveTo(ax, ay);
51 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
111 int ax = state.a & 0x03; local
134 path.moveTo(ax, ay);
144 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
177 int ax = a & 0x03; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
208 int ax local
272 int ax = a & 0x03; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp1592 int ax = miss.a & 0x03; local
1610 path.moveTo(ax, ay);
H A DEdgeWalkerQuadratic4x4_Test.cpp20 int ax = state.a & 0x03; local
42 path.moveTo(ax, ay);
52 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
H A DLineQuadraticIntersection_Test.cpp184 int ax = state.a & 0x03; local
190 Quadratic quad = {{ax, ay}, {bx, by}, {cx, cy}};
H A DQuadraticSubDivide.cpp43 double ax = dst[0].x = interp_quad_coords(&src[0].x, t1); local
49 /* bx = */ dst[1].x = 2*dx - (ax + cx)/2;
/external/skia/experimental/
H A DSkSetPoly3To3.cpp29 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
30 return SkScalarMul(ax, bx) + SkScalarMul(ay, by);
H A DSkSetPoly3To3_A.cpp42 static SkDScalar ddot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
43 return SkDScalar_setMul(ax, bx) + SkDScalar_setMul(ay, by);
46 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
47 return SkDScalar_toScalar(ddot(ax, ay, bx, by));
H A DSkSetPoly3To3_D.cpp49 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
50 return SkDScalar_toScalar(SkDScalar_setMul(ax, bx) +
/external/qemu/android/skin/
H A Dtrackball.c493 Fix16 ax = fixedvector_dot( (Fix16Vector)&coord->f, (Fix16Vector)&faxes[0] ); local
506 d[0] = ball->dots[pp][0] - ax;
/external/qemu/distrib/jpeg-6b/
H A Djmemdos.c99 unsigned short ax, dx, bx; member in struct:__anon29308
103 unsigned short ax, dx, bx; member in struct:__anon29309
352 ctx.ax = 0x0b00; /* EMB move */
354 if (ctx.ax != 1)
385 ctx.ax = 0x0b00; /* EMB move */
387 if (ctx.ax != 1)
406 ctx.ax = 0x0a00;
425 ctx.ax = 0x0000;
427 if (ctx.ax < (unsigned short) 0x0200)
432 ctx.ax
[all...]
/external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
H A DSDL_sysjoystick.c298 int ax; local
299 for (ax = 0; ax < JOYAXE_count; ax++)
300 hw->axis_map[ax] = -1;
/external/qemu/distrib/sdl-1.2.15/src/joystick/nds/
H A DSDL_sysjoystick.c108 short ax=0,v=0,h=0; local
109 if((keysd&KEY_UP)) {ax=1;v=-10;SDL_PrivateJoystickAxis(joystick,ax,v);prevkey=KEY_UP;}//fprintf(stderr,"KEY_UP\n");}
110 if((keysd&KEY_DOWN)) {ax=1;v=10;SDL_PrivateJoystickAxis(joystick,ax,v);prevkey=KEY_DOWN;}//fprintf(stderr,"KEY_DOWN\n");}
111 if((keysd&KEY_LEFT)) {ax=0;h=-10;SDL_PrivateJoystickAxis(joystick,ax,h);prevkey=KEY_LEFT;}//fprintf(stderr,"KEY_LEFT\n");}
112 if((keysd&KEY_RIGHT)) {ax=0;h=10;SDL_PrivateJoystickAxis(joystick,ax,h);prevkey=KEY_RIGHT;}//fprintf(stderr,"KEY_RIGHT\n");}
114 if((keysu&KEY_UP)) {ax
[all...]

Completed in 2556 milliseconds

12345