/bionic/libm/ |
sincos.c | 30 // Disable sincos optimization for all functions in this file, 33 // -fno-builtin-sin or -fno-builtin-cos can disable sincos optimization, 38 void sincos(double x, double *psin, double *pcos) function
|
Android.mk | 6 sincos.c \
|
/external/stlport/src/ |
sincos.c | 31 * This file is almost the same as bionic/libm/sincos.c except 34 * have sincos(), sincosf() and sincosl(). These functions are used 40 void HIDDEN sincos(double x, double *psin, double *pcos) function
|
/external/stlport/ |
Android.mk | 46 # have the sincos*() functions. 48 LOCAL_SRC_FILES += src/sincos.c
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/lib/ |
libm.so | |
/development/ndk/platforms/android-9/arch-x86/symbols/ |
libm.so.functions.txt | 164 sincos
|
/external/llvm/test/CodeGen/X86/ |
inline-asm-fpstack.ll | 282 ; CHECK: sincos 289 %0 = tail call %complex asm "sincos", "={st},={st(1)},0,~{dirflag},~{fpsr},~{flags}"(float %x) nounwind 298 ; CHECK: sincos 305 %0 = tail call %complex asm "sincos", "={st(1)},={st},1,~{dirflag},~{fpsr},~{flags}"(float %x) nounwind 315 ; CHECK: sincos 320 ; CHECK: sincos 327 %0 = tail call %complex asm sideeffect "sincos", "={st(1)},={st},1,~{dirflag},~{fpsr},~{flags}"(float %x) nounwind 328 %1 = tail call %complex asm sideeffect "sincos", "={st(1)},={st},1,~{dirflag},~{fpsr},~{flags}"(float %x) nounwind
|
/frameworks/compile/slang/tests/P_math_fp/ |
math_fp.rs | 134 TEST_FUNC_2P(sincos);
|
/prebuilt/sdk/11/renderscript/include/ |
rs_cl.rsh | 283 _RS_RUNTIME float __attribute__((overloadable)) sincos(float v, float *cosptr); 284 _RS_RUNTIME float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr); 285 _RS_RUNTIME float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr); 286 _RS_RUNTIME float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr);
|
/prebuilt/sdk/12/renderscript/include/ |
rs_cl.rsh | 283 _RS_RUNTIME float __attribute__((overloadable)) sincos(float v, float *cosptr); 284 _RS_RUNTIME float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr); 285 _RS_RUNTIME float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr); 286 _RS_RUNTIME float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr);
|
/prebuilt/sdk/13/renderscript/include/ |
rs_cl.rsh | 283 _RS_RUNTIME float __attribute__((overloadable)) sincos(float v, float *cosptr); 284 _RS_RUNTIME float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr); 285 _RS_RUNTIME float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr); 286 _RS_RUNTIME float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr);
|
/external/opencv/cvaux/src/ |
cvhmmobs.cpp | 514 static const double sincos[16 * 2] = { local 562 da0 = a0 = sincos[2 * n - 1]; 563 db0 = b0 = sincos[2 * n - 2];
|
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/config/ |
linux.h | 169 /* Whether we have sincos that follows the GNU extension. */
|
/external/libvpx/examples/includes/geshi/geshi/ |
delphi.php | 196 'SimpleRoundTo', 'SinCos', 'Sinh', 'StdDev', 'Sum', 'SumInt',
|
/external/llvm/lib/Target/X86/ |
README-FPStack.txt | 58 Opencode the sincos[f] libcall.
|
/frameworks/compile/libbcc/lib/ScriptCRT/ |
rs_cl.c | 543 extern float __attribute__((overloadable)) sincos(float v, float *cosptr) { function 547 extern float2 __attribute__((overloadable)) sincos(float2 v, float2 *cosptr) { function 551 extern float3 __attribute__((overloadable)) sincos(float3 v, float3 *cosptr) { function 555 extern float4 __attribute__((overloadable)) sincos(float4 v, float4 *cosptr) { function [all...] |
/external/skia/src/core/ |
SkCordic.cpp | 219 // sincos
|
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
math.rs | 317 TEST_FN_FUNC_FN_PFN(sincos);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
mathcalls.h | 82 __MATHDECL (void,sincos,,
|
/frameworks/base/libs/rs/scriptc/ |
rs_cl.rsh | 602 _RS_RUNTIME float __attribute__((overloadable)) sincos(float v, float *cosptr); 603 FN_FUNC_FN_PFN(sincos);
|
/prebuilt/sdk/14/renderscript/include/ |
rs_cl.rsh | 602 _RS_RUNTIME float __attribute__((overloadable)) sincos(float v, float *cosptr); 603 FN_FUNC_FN_PFN(sincos);
|
/bionic/libc/docs/ |
CHANGES.TXT | 36 - <math.h>: Added sincos(), sincosf() and sincosl() (GLibc compatibility).
|
/bionic/libm/include/ |
math.h | 488 void sincos(double x, double *sin, double *cos);
|
/development/ndk/platforms/android-9/include/ |
math.h | 485 void sincos(double x, double *sin, double *cos);
|
/external/skia/tests/ |
MathTest.cpp | 493 SkDebugf("SinCos: maximum error = %d\n", maxDiff);
|