Home
last modified time | relevance | path

Searched refs:sine (Results 1 – 25 of 65) sorted by relevance

123

/external/aac/libFDK/include/
DFDK_trigFcts.h156 FIXP_DBL *sine, in fixp_sin_cos_residual_inline() argument
206 *sine = (FIXP_DBL)((sl * ssign) << (DFRACT_BITS - FRACT_BITS)); in fixp_sin_cos_residual_inline()
211 *sine = (FIXP_DBL)(sl * ssign) >> 1; in fixp_sin_cos_residual_inline()
230 FIXP_DBL residual, error0, error1, sine, cosine; in inline_fixp_cos_sin() local
231 residual = fixp_sin_cos_residual_inline(x1, scale, &sine, &cosine); in inline_fixp_cos_sin()
232 error0 = fMultDiv2(sine, residual); in inline_fixp_cos_sin()
237 *out++ = sine + (error1 << 1); in inline_fixp_cos_sin()
241 *out++ = SATURATE_LEFT_SHIFT(sine + (error1 << 1), 1, DFRACT_BITS); in inline_fixp_cos_sin()
244 residual = fixp_sin_cos_residual_inline(x2, scale, &sine, &cosine); in inline_fixp_cos_sin()
245 error0 = fMultDiv2(sine, residual); in inline_fixp_cos_sin()
[all …]
/external/aac/libFDK/src/
DFDK_trigFcts.cpp300 FIXP_DBL residual, error, sine, cosine; in fixp_cos() local
302 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine); in fixp_cos()
303 error = fMult(sine, residual); in fixp_cos()
314 FIXP_DBL residual, error, sine, cosine; in fixp_sin() local
316 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine); in fixp_sin()
320 return sine + error; in fixp_sin()
322 return SATURATE_LEFT_SHIFT(sine + error, 1, DFRACT_BITS); in fixp_sin()
327 FIXP_DBL residual, error0, error1, sine, cosine; in fixp_cos_sin() local
329 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine); in fixp_cos_sin()
330 error0 = fMult(sine, residual); in fixp_cos_sin()
[all …]
/external/libxaac/decoder/armv7/
Dixheaacd_eld_decoder_sbr_pre_twiddle.s16 … r6, [r2], #4 @Load and increment pointer *pTwiddles++ Lower - cosine , higher - sine
22 SMULWT r10, r5, r6 @mult32x16in32( Xim , sine)
24 …8, r10, LSL #1 @mac32x16in32_shl( mult32x16in32_shl(Xre, cosine) , mult32x16in32_shl( Xim , sine))@
27 SMULWT r7, r4, r6 @mult32x16in32(Xre, sine)
37 … r14, r9, r7, LSL #1 @sub32(mult32x16in32_shl(Xim, cosine) , mult32x16in32_shl(Xre, sine))
/external/python/cpython2/Demo/scripts/
Dmorse.py122 sine(dev, DOT, wave)
124 sine(dev, DAH, wave)
129 def sine(dev, length, wave): function
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
DHarmonicCoefficientsGuesser.java269 double sine = FastMath.sin(omegaX); in guessPhi() local
270 fcMean += omega * currentY * cosine - currentYPrime * sine; in guessPhi()
271 fsMean += omega * currentY * sine + currentYPrime * cosine; in guessPhi()
/external/python/cpython2/Mac/Demo/sound/
Dmorse.py166 sine(dev, DOT)
168 sine(dev, DAH)
173 def sine(dev, length): function
/external/skia/src/effects/
DSkColorMatrix.cpp103 void SkColorMatrix::setSinCos(Axis axis, SkScalar sine, SkScalar cosine) { in setSinCos() argument
115 fMat[index[1]] = sine; in setSinCos()
116 fMat[index[2]] = -sine; in setSinCos()
/external/skqp/src/effects/
DSkColorMatrix.cpp103 void SkColorMatrix::setSinCos(Axis axis, SkScalar sine, SkScalar cosine) { in setSinCos() argument
115 fMat[index[1]] = sine; in setSinCos()
116 fMat[index[2]] = -sine; in setSinCos()
/external/deqp-deps/glslang/Test/baseResults/
Dswitch.frag.out50 0:28 sine ( global highp float)
75 0:38 sine ( global highp float)
104 0:49 sine ( global highp float)
170 0:73 sine ( global highp float)
223 0:93 sine ( global highp float)
386 0:28 sine ( global highp float)
411 0:38 sine ( global highp float)
440 0:49 sine ( global highp float)
506 0:73 sine ( global highp float)
559 0:93 sine ( global highp float)
D130.vert.out30 0:20 sine ( global float)
96 0:40 hyp. sine ( global float)
104 0:42 arc hyp. sine ( global 4-component vector of float)
180 0:20 sine ( global float)
246 0:40 hyp. sine ( global float)
254 0:42 arc hyp. sine ( global 4-component vector of float)
Dhlsl.intrinsics.vert.out22 0:7 arc sine ( temp float)
113 0:48 sine ( temp float)
118 0:49 sine ( temp float)
124 0:50 hyp. sine ( temp float)
171 0:74 arc sine ( temp 2-component vector of float)
286 0:122 sine ( temp 2-component vector of float)
291 0:123 sine ( temp 2-component vector of float)
297 0:124 hyp. sine ( temp 2-component vector of float)
336 0:143 arc sine ( temp 3-component vector of float)
456 0:192 sine ( temp 3-component vector of float)
[all …]
Dhlsl.sin.frag.out10 0:3 sine ( temp 4-component vector of float)
38 0:3 sine ( temp 4-component vector of float)
Dhlsl.promote.vec1.frag.out22 0:13 sine ( temp float)
64 0:13 sine ( temp float)
/external/sonic/samples/
DREADME32 This is just two sine periods, which is too short to hear. However, it's
34 result in one sine period with no distortion.
/external/skqp/gm/
Daaa.cpp104 SkScalar sine = SkScalarSinCos(a, &cosine); in DEF_SIMPLE_GM() local
105 path.lineTo(C + R * cosine, C + R * sine); in DEF_SIMPLE_GM()
/external/skia/gm/
Daaa.cpp104 SkScalar sine = SkScalarSinCos(a, &cosine); in DEF_SIMPLE_GM() local
105 path.lineTo(C + R * cosine, C + R * sine); in DEF_SIMPLE_GM()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Sinh.pbtxt3 summary: "Computes hyperbolic sine of x element-wise."
Dapi_def_Asinh.pbtxt3 summary: "Computes inverse hyperbolic sine of x element-wise."
/external/eigen/Eigen/src/Core/
DGlobalFunctions.h60 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(sin,scalar_sin_op,sine,\sa ArrayBase::sin)
64 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(asin,scalar_asin_op,arc-sine,\sa ArrayBase::asin)
66 EIGEN_ARRAY_DECLARE_GLOBAL_UNARY(sinh,scalar_sinh_op,hyperbolic sine,\sa ArrayBase::sinh)
/external/python/cpython2/Doc/library/
Dcmath.rst130 Return the arc sine of *x*. This has the same branch cuts as :func:`acos`.
151 Return the sine of *x*.
170 Return the inverse hyperbolic sine of *x*. There are two branch cuts:
197 Return the hyperbolic sine of *x*.
Dmath.rst239 Return the arc sine of *x*, in radians.
270 Return the sine of *x* radians.
303 Return the inverse hyperbolic sine of *x*.
322 Return the hyperbolic sine of *x*.
/external/toybox/tests/
Dbc.test32 run_bc_test sine
/external/skqp/include/effects/
DSkColorMatrix.h44 void setSinCos(Axis, SkScalar sine, SkScalar cosine);
/external/skia/include/effects/
DSkColorMatrix.h44 void setSinCos(Axis, SkScalar sine, SkScalar cosine);
/external/python/cpython3/Doc/library/
Dcmath.rst123 Return the arc sine of *x*. This has the same branch cuts as :func:`acos`.
141 Return the sine of *x*.
160 Return the inverse hyperbolic sine of *x*. There are two branch cuts:
181 Return the hyperbolic sine of *x*.

123