/dalvik/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 151 * Returns the closest double approximation of the arc sine of the argument 162 * the value whose arc sine has to be computed. 163 * @return the arc sine of the argument. 846 * Returns the closest double approximation of the hyperbolic sine of the 859 * the value whose hyperbolic sine has to be computed. 860 * @return the hyperbolic sine of the argument. 865 * Returns the closest double approximation of the sine of the argument. 878 * @return the sine of the argument. [all...] |
/external/sonivox/arm-fm-22k/lib_src/ |
eas_fmengine.h | 59 /* sine table is always a power of 2 - saves cycles in inner loop */
|
eas_fmsynth.c | 61 * the sine wave played at unity. The number can be calculated as follows: 595 /*lint -e{502} <shortcut to turn sawtooth into sine wave> */
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_fmengine.h | 59 /* sine table is always a power of 2 - saves cycles in inner loop */
|
eas_fmsynth.c | 61 * the sine wave played at unity. The number can be calculated as follows: 595 /*lint -e{502} <shortcut to turn sawtooth into sine wave> */
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.3.js | 25 Description: return an approximation to the arc sine of the
|
/frameworks/base/media/libmedia/ |
ToneGenerator.cpp | [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
VoiceDialerActivity.java | 381 private static final int SINE_FREQ = 400; // base sine frequency on beep 382 private static final int NUM_PERIODS_BLOCK = 10; // number of sine periods in one energy averaging block
|
/external/skia/include/core/ |
SkMatrix.h | 149 /** Set the matrix to rotate by the specified sine and cosine values, with 155 /** Set the matrix to rotate by the specified sine and cosine values.
|
/frameworks/base/core/java/android/gesture/ |
GestureUtils.java | 456 final double sine = cosine * tan; local 457 return (float) Math.acos(a * cosine + b * sine);
|
/frameworks/base/graphics/java/android/graphics/ |
Matrix.java | 135 * Set the matrix to rotate by the specified sine and cosine values, with a 143 /** Set the matrix to rotate by the specified sine and cosine values. */
|
/external/opencore/codecs_v2/audio/aac/dec/src/ |
dst16.cpp | 38 Implement discrete sine transform of lenght 16
|
dst32.cpp | 38 Implement discrete sine transform of lenght 32
|
dst8.cpp | 38 Implement discrete sine transform of lenght 8
|
trans4m_time_2_freq_fxp.cpp | 158 Otherwise, for window_shape == 0, a sine window is employed. 160 The window length N can be 2048 or 256 for the KBD and the sine window.
|
/external/quake/quake/src/QW/client/ |
d_scan.c | 41 // the sine warp, to keep the edges from wrapping
|
/external/quake/quake/src/WinQuake/ |
d_scan.cpp | 41 // the sine warp, to keep the edges from wrapping
|
/frameworks/base/cmds/stagefright/ |
stagefright.cpp | 510 } else if (!strncasecmp("sine:", filename, 5)) {
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
dst16.cpp | 38 Implement discrete sine transform of lenght 16
|
dst32.cpp | 38 Implement discrete sine transform of lenght 32
|
dst8.cpp | 38 Implement discrete sine transform of lenght 8
|
trans4m_time_2_freq_fxp.cpp | 158 Otherwise, for window_shape == 0, a sine window is employed. 160 The window length N can be 2048 or 256 for the KBD and the sine window.
|
/frameworks/base/tests/CoreTests/android/core/ |
StrictMathTest.java | 100 assertTrue("Returned incorrect arc sine", StrictMath.sin(StrictMath 646 assertTrue("Returned incorrect sine", StrictMath.sin(StrictMath [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Matrix.java | 275 * Set the matrix to rotate by the specified sine and cosine values, with a 300 /** Set the matrix to rotate by the specified sine and cosine values. */ [all...] |
/external/icu4c/i18n/ |
astro.cpp | 466 double sinE = ::sin(obliq); 476 result.set(atan2(sinL*cosE - tanB*sinE, cosL), 477 asin(sinB*cosE + cosB*sinE*sinL) ); [all...] |