/external/skia/include/core/ |
SkScalar.h | 157 float SkScalarSinCos(SkScalar radians, SkScalar* cosValue); 158 #define SkScalarSin(radians) (float)sk_float_sin(radians) 159 #define SkScalarCos(radians) (float)sk_float_cos(radians) 160 #define SkScalarTan(radians) (float)sk_float_tan(radians) 220 #define SkScalarSinCos(radians, cosPtr) SkFixedSinCos(radians, cosPtr) 221 #define SkScalarSin(radians) SkFixedSin(radians [all...] |
SkFixed.h | 128 SkFixed SkFixedSinCos(SkFixed radians, SkFixed* cosValueOrNull); 129 #define SkFixedSin(radians) SkFixedSinCos(radians, NULL) 130 inline SkFixed SkFixedCos(SkFixed radians) 133 (void)SkFixedSinCos(radians, &cosValue); 136 SkFixed SkFixedTan(SkFixed radians);
|
/external/skia/src/core/ |
SkMath.cpp | 407 float SkScalarSinCos(float radians, float* cosValue) { 408 float sinValue = sk_float_sin(radians); 411 *cosValue = sk_float_cos(radians); 463 SkFixed SkFixedSinCos(SkFixed radians, SkFixed* cosValuePtr) { 474 // make radians positive 477 int32_t sinSign = SkExtractSign(radians); 478 radians = SkApplySign(radians, sinSign); 482 radians = SkMulDiv(radians, 2 * kTableSize * 256, SK_FixedPI) [all...] |
SkCordic.h | 29 SkFixed SkCordicSinCos(SkFixed radians, SkFixed* cosp);
|
SkSinTable.h | 23 /* Fixed point values (low 16 bits) of sin(radians) for 24 radians in [0...PI/2)
|
SkCordic.cpp | 57 SkFixed SkCordicSinCos(SkFixed radians, SkFixed* cosp) 59 int32_t scaledRadians = radians * 0x28be; // scale radians to 65536 / PI()
|
/frameworks/base/core/java/android/util/ |
FloatMath.java | 53 * @param angle to compute the cosine of, in radians 61 * @param angle to compute the cosine of, in radians
|
MathUtils.java | 115 public static float radians(float degrees) { method in class:MathUtils 119 public static float degrees(float radians) { 120 return radians * RAD_TO_DEG;
|
/frameworks/base/tools/layoutlib/bridge/src/android/util/ |
FloatMath.java | 59 * @param angle to compute the cosine of, in radians 69 * @param angle to compute the cosine of, in radians
|
/external/icu4c/i18n/ |
astro.h | 81 * @param lat The ecliptic latitude, measured in radians. 82 * @param lon The ecliptic longitude, measured in radians. 92 * @param lat The ecliptic latitude, measured in radians. 93 * @param lon The ecliptic longitude, measured in radians. 108 * The ecliptic latitude, in radians. This specifies an object's 116 * The ecliptic longitude, in radians. 150 * @param asc The right ascension, measured in radians. 151 * @param dec The declination, measured in radians. 159 * @param asc The right ascension, measured in radians. 160 * @param dec The declination, measured in radians [all...] |
/frameworks/base/libs/rs/scriptc/ |
rs_math.rsh | 200 extern float __attribute__((overloadable)) radians(float); 201 extern float2 __attribute__((overloadable)) radians(float2); 202 extern float3 __attribute__((overloadable)) radians(float3); 203 extern float4 __attribute__((overloadable)) radians(float4); 204 extern float8 __attribute__((overloadable)) radians(float8); 205 extern float16 __attribute__((overloadable)) radians(float16);
|
/frameworks/base/graphics/java/android/graphics/ |
ColorMatrix.java | 121 float radians = degrees * (float)Math.PI / 180; local 122 float cosine = FloatMath.cos(radians); 123 float sine = FloatMath.sin(radians);
|
/bionic/libm/man/ |
atan.3 | 68 radians.
|
cos.3 | 57 (measured in radians).
|
sin.3 | 58 (measured in radians).
|
tan.3 | 57 (measured in radians).
|
acos.3 | 68 radians.
|
asin.3 | 70 radians.
|
/external/webkit/WebCore/platform/graphics/openvg/ |
PainterOpenVG.h | 96 void rotate(float radians);
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
SoundPoolTest.java | 309 double radians = PI_OVER_2 * count / 100.0; local 310 float leftVolume = (float) Math.sin(radians); 311 float rightVolume = (float) Math.cos(radians);
|
/ndk/samples/bitmap-plasma/jni/ |
plasma.c | 105 double radians = nn*M_PI/ANGLE_PI; local 106 angle_sin_tab[nn] = FIXED_FROM_FLOAT(sin(radians)); 180 /* Angles expressed as fixed point radians */
|
/external/speex/libspeex/ |
lsp.h | 13 LSP coefficients are not in radians format but in the x domain of the
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.16.js | 26 argument. argument is expressed in radians
|
/frameworks/base/awt/java/awt/ |
Graphics2D.java | 306 * The coordinate system is rotated by the specified angle in radians 310 * the angle of rotation in radians. 317 * radians relative to current origin and then moved to point (x, y). Is 321 * the angle of rotation in radians.
|
/external/quake/quake/src/QW/dxsdk/sdk/inc/ |
d3drmdef.h | 352 * Set the rotation part of a matrix to be a rotation of theta radians
369 * Returns a unit quaternion that represents a rotation of theta radians
|