/frameworks/av/media/libstagefright/codecs/aacenc/src/asm/ARMV5E/ |
PrePostMDCT_v5.s | 46 smull r14, r8, r7, r9 @ MULHIGH(ti1, sina) 47 smull r7, r10, r4, r9 @ MULHIGH(tr1, sina) 49 add r11, r11, r8 @ MULHIGH(cosa, tr1) + MULHIGH(sina, ti1)@ 50 sub r7, r12, r10 @ MULHIGH(ti1, cosa) - MULHIGH(tr1, sina) 58 smull r14, r8, r5, r9 @ MULHIGH(ti2, sina) 59 smull r5, r10, r6, r9 @ MULHIGH(tr2, sina) 100 smull r14, r8, r5, r9 @ MULHIGH(ti1, sina) 101 smull r5, r10, r4, r9 @ MULHIGH(tr1, sina) 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++@ 52 VQDMULH.S32 Q11, Q1, Q8 @ MULHIGH(sina, ti1) 54 VQDMULH.S32 Q13, Q1, Q4 @ MULHIGH(sina, tr1) 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++@ 113 VQDMULH.S32 Q11, Q1, Q5 @ MULHIGH(sina, ti1) 115 VQDMULH.S32 Q13, Q1, Q4 @ MULHIGH(sina, tr1 [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
RoundedLine.java | 64 final float sina = (float)Math.sin(aa); local 69 final float p1ay = p1y + r1 * sina; 75 final float p2ay = p2y + r2 * sina;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/ |
Quad.java | 186 float sina = (float) Math.sin(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;
|
/external/opencv3/modules/cudafeatures2d/src/cuda/ |
orb.cu | 229 img(loc.y + __float2int_rn(pattern_x[idx] * sina + pattern_y[idx] * cosa), \ 230 loc.x + __float2int_rn(pattern_x[idx] * cosa - pattern_y[idx] * sina)) 234 __device__ static int calc(const PtrStepb& img, short2 loc, const int* pattern_x, const int* pattern_y, float sina, float cosa, int i) 271 __device__ static int calc(const PtrStepb& img, short2 loc, const int* pattern_x, const int* pattern_y, float sina, float cosa, int i) 296 __device__ static int calc(const PtrStepb& img, short2 loc, const int* pattern_x, const int* pattern_y, float sina, float cosa, int i) 354 float sina, cosa; 355 ::sincosf(angle, &sina, &cosa); 357 desc.ptr(ptidx)[descidx] = OrbDescriptor<WTA_K>::calc(img, loc[ptidx], pattern_x, pattern_y, sina, cosa, descidx);
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
hough_segments.cu | 84 float sina; 85 sincosf(angle, &sina, &cosa); 87 float2 p0 = make_float2(cosa * radius, sina * radius); 88 float2 dir = make_float2(-sina, cosa);
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
transform.c | 283 int cosa, sina, cosb, sinb; local 291 sina = *csptr++; 300 *buf0++ = MULHIGH(cosa, tr1) + MULHIGH(sina, ti1); 301 *buf0++ = MULHIGH(cosa, ti1) - MULHIGH(sina, tr1); 318 int cosa, sina, cosb, sinb; local 326 sina = *csptr++; 335 *buf0++ = MULHIGH(cosa, tr1) + MULHIGH(sina, ti1); 336 *buf1-- = MULHIGH(sina, tr1) - MULHIGH(cosa, ti1);
|
/external/opencv3/modules/python/test/ |
transformations.py | 299 sina = math.sin(angle) 307 direction *= sina 352 sina = (R[1, 0] + (cosa-1.0)*direction[0]*direction[1]) / direction[2] 354 sina = (R[0, 2] + (cosa-1.0)*direction[0]*direction[2]) / direction[1] 356 sina = (R[2, 1] + (cosa-1.0)*direction[1]*direction[2]) / direction[0] 357 angle = math.atan2(sina, cosa) 857 sina, sinb, _ = numpy.sin(angles) 859 co = (cosa * cosb - cosg) / (sina * sinb) 862 (-a*sinb*co, b*sina, 0.0, 0.0), [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageStraighten.java | 191 double sina = Math.sin(a); local 195 double h1 = rh * rh / (rw * sina + rh * cosa); 196 double h2 = rh * rw / (rw * cosa + rh * sina);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
FastMath.java | 2194 double sina = a + b; local [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.c | 207 double sina = v[1] / norm; local 208 return (sina>=0 ? acos(cosa) : 2*M_PI - acos(cosa));
|