/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestSincos.rs | 26 float out = sincos(inV, &outCosptr); 33 float2 out = sincos(inV, &outCosptr); 40 float3 out = sincos(inV, &outCosptr); 47 float4 out = sincos(inV, &outCosptr);
|
/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* p_sin, double* p_cos) { function
|
Android.mk | 13 sincos.c \
|
/external/chromium_org/base/ |
os_compat_android.cc | 61 // a single call to sincos(). This means that source code that looks like: 70 // sincos(angle, &s, &c); 72 // Unfortunately, sincos() and friends are not part of the Android libm.so 75 // because 'sincos' doesn't appear anywhere in the sources!). 77 // To solve this, we provide our own implementation of the sincos() function 94 void sincos(double angle, double* s, double *c) { function
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl.ds.h | 81 sincos null, r2.xyz, r1.zxyz 82 sincos r1.xyz, null, -r1.xyzx
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl.ds.h | 81 sincos null, r2.xyz, r1.zxyz 82 sincos r1.xyz, null, -r1.xyzx
|
/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];
|
/bionic/libm/include/ |
math.h | 466 void sincos(double, double*, double*);
|
/external/ltrace/etc/ |
libm.so.conf | 20 void sincos(double, +double*, double*);
|
/development/ndk/platforms/android-13/include/ |
math.h | 490 void sincos(double x, double *sin, double *cos) __NDK_FPABI_MATH__;
|
/development/ndk/platforms/android-18/include/ |
math.h | 493 void sincos(double x, double *sin, double *cos) __NDK_FPABI_MATH__;
|
/development/ndk/platforms/android-3/include/ |
math.h | 485 void sincos(double x, double *sin, double *cos) __NDK_FPABI_MATH__;
|
/development/ndk/platforms/android-9/include/ |
math.h | 485 void sincos(double x, double *sin, double *cos) __NDK_FPABI_MATH__;
|
/development/ndk/platforms/android-L/include/ |
math.h | 466 void sincos(double, double*, double*) __NDK_FPABI_MATH__;
|
/external/compiler-rt/lib/msan/tests/ |
msan_test.cc | [all...] |
/bionic/tests/ |
math_sincos_test.cpp | [all...] |