/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/ |
PrePostMDCT_v5.s | 43 smull r14, r11, r4, r8 @ MULHIGH(tr1, cosa) 44 smull r10, r12, r7, r8 @ MULHIGH(ti1, cosa) 49 add r11, r11, r8 @ MULHIGH(cosa, tr1) + MULHIGH(sina, ti1)@ 50 sub r7, r12, r10 @ MULHIGH(ti1, cosa) - MULHIGH(tr1, sina) 55 smull r14, r4, r6, r8 @ MULHIGH(tr2, cosa) 56 smull r10, r12, r5, r8 @ MULHIGH(ti2, cosa) 97 smull r14, r11, r4, r8 @ MULHIGH(tr1, cosa) 98 smull r10, r12, r5, r8 @ MULHIGH(ti1, cosa) 103 add r4, r11, r8 @ MULHIGH(cosa, tr1) + MULHIGH(sina, ti1)@ 104 sub r11, r10, r12 @ MULHIGH(ti1, cosa) - MULHIGH(tr1, sina) [all...] |
/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV7/ |
PrePostMDCT_v7.s | 41 VLD4.I32 {d0, d2, d4, d6}, [r2]! @ cosa = *csptr++@ sina = *csptr++@ 51 VQDMULH.S32 Q10, Q0, Q4 @ MULHIGH(cosa, tr1) 53 VQDMULH.S32 Q12, Q0, Q8 @ MULHIGH(cosa, ti1) 56 VADD.S32 Q0, Q10, Q11 @ *buf0++ = MULHIGH(cosa, tr1) + MULHIGH(sina, ti1)@ 57 VSUB.S32 Q1, Q12, Q13 @ *buf0++ = MULHIGH(cosa, ti1) - MULHIGH(sina, tr1)@ 67 VADD.S32 Q0, Q10, Q11 @ MULHIGH(cosa, tr2) + MULHIGH(sina, ti2)@ 68 VSUB.S32 Q1, Q12, Q13 @ MULHIGH(cosa, ti2) - MULHIGH(sina, tr2)@ 103 VLD4.I32 {d0, d2, d4, d6}, [r2]! @ cosa = *csptr++@ sina = *csptr++@ 112 VQDMULH.S32 Q10, Q0, Q4 @ MULHIGH(cosa, tr1) 114 VQDMULH.S32 Q12, Q0, Q5 @ MULHIGH(cosa, ti1 [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
RoundedLine.java | 63 final float cosa = (float)Math.cos(aa); local 68 final float p1ax = p1x + r1 * cosa; 74 final float p2ax = p2x + r2 * cosa;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/ |
Quad.java | 185 float cosa = (float) Math.cos(angle); local 188 PointF topLeft = rotatePoint(topLeft(), center, cosa, sina); 189 PointF topRight = rotatePoint(topRight(), center, cosa, sina); 190 PointF bottomLeft = rotatePoint(bottomLeft(), center, cosa, sina); 191 PointF bottomRight = rotatePoint(bottomRight(), center, cosa, sina); 340 private static PointF rotatePoint(PointF p, PointF c, float cosa, float sina) { 341 float x = (p.x - c.x) * cosa - (p.y - c.y) * sina + c.x; 342 float y = (p.x - c.x) * sina + (p.y - c.y) * cosa + c.y;
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
transform.c | 283 int cosa, sina, cosb, sinb; local 290 cosa = *csptr++; 300 *buf0++ = MULHIGH(cosa, tr1) + MULHIGH(sina, ti1); 301 *buf0++ = MULHIGH(cosa, ti1) - MULHIGH(sina, tr1); 318 int cosa, sina, cosb, sinb; local 325 cosa = *csptr++; 335 *buf0++ = MULHIGH(cosa, tr1) + MULHIGH(sina, ti1); 336 *buf1-- = MULHIGH(sina, tr1) - MULHIGH(cosa, ti1);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageStraighten.java | 192 double cosa = Math.cos(a); local 195 double h1 = rh * rh / (rw * sina + rh * cosa); 196 double h2 = rh * rw / (rw * cosa + rh * sina);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
arc.c | 206 double cosa = v[0] / norm; local 208 return (sina>=0 ? acos(cosa) : 2*M_PI - acos(cosa));
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.c | 206 double cosa = v[0] / norm; local 208 return (sina>=0 ? acos(cosa) : 2*M_PI - acos(cosa));
|