HomeSort by relevance Sort by last modified time
    Searched refs:sinf (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/webkit/Source/WebCore/platform/graphics/filters/
DistantLightSource.cpp 45 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
46 paintingData.lightVector.setZ(sinf(elevation));
  /bionic/libm/
sincos.c 44 *p_sinf = sinf(x);
  /external/stlport/src/
sincos.c 48 *psin = sinf(x);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ccoshf.c 60 return (cpackf(coshf(x) * cosf(y), sinhf(x) * sinf(y)));
66 return (cpackf(h * cosf(y), copysignf(h, x) * sinf(y)));
74 return (cpackf(h * h * cosf(y), h * sinf(y)));
93 return (cpackf((x * x) * cosf(y), x * sinf(y)));
s_csinhf.c 60 return (cpackf(sinhf(x) * cosf(y), coshf(x) * sinf(y)));
66 return (cpackf(copysignf(h, x) * cosf(y), h * sinf(y)));
74 return (cpackf(h * cosf(y), h * h * sinf(y)));
93 return (cpackf(x * cosf(y), INFINITY * sinf(y)));
s_cexpf.c 57 return (cpackf(cosf(y), sinf(y)));
87 return (cpackf(exp_x * cosf(y), exp_x * sinf(y)));
s_ctanhf.c 57 copysignf(0, isinf(y) ? y : sinf(y) * cosf(y))));
66 4 * sinf(y) * cosf(y) * exp_mx * exp_mx));
k_expf.c 86 sinf(y) * exp_x * scale1 * scale2));
s_sinf.c 39 sinf(float x) function
  /external/clang/test/CodeGen/
libcall-declarations.c 67 float sinf(float);
85 rint, rintl, rintf, round, roundl, roundf, sin, sinl, sinf, sqrt, sqrtl,
151 // CHECK-NOERRNO: declare float @sinf(float) [[NUW]]
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 17 static float SinF(JNIEnv* env, jobject clazz, float x) {
18 return sinf(x);
45 {"sin", "(F)F", (void*) MathUtilsGlue::SinF},
  /external/webkit/Source/WebCore/platform/graphics/cg/
PDFDocumentImage.cpp 66 const float sina = sinf(-m_rotation);
101 float sina = sinf(-m_rotation);
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 361 SINF *sinf = mFirstSINF; local
362 while (sinf) {
363 SINF *next = sinf->next;
364 delete sinf->IPMPData;
365 delete sinf;
366 sinf = next;
536 SINF *sinf = mFirstSINF local
621 SINF *sinf = new SINF; local
673 SINF *sinf = mFirstSINF; local
    [all...]
  /hardware/invensense/libsensors_iio/software/core/driver/include/
mlmath.h 69 #define sinf(x) ml_sin(x) macro
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 81 #define sinf(x) ml_sin(x) macro
  /external/skia/include/core/
SkFloatingPoint.h 48 #define sk_float_sin(x) sinf(x)
  /external/skia/legacy/include/core/
SkFloatingPoint.h 49 #define sk_float_sin(x) sinf(x)
  /external/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 111 # define sinf sin macro
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 152 EXPORT_F32_FN_F32(sinf)
223 { "_Z3sinf", (void *)&sinf, true },
  /external/quake/quake/src/WinQuake/
gl_rsurf.cpp 589 *pPos++ = v[0] + 8*sinf(v[1]*0.05f+realtime)*sinf(v[2]*0.05f+realtime);
590 *pPos++ = v[1] + 8*sinf(v[0]*0.05f+realtime)*sinf(v[2]*0.05f+realtime);
660 pnv[0] = v[0] + 8*sinf(v[1]*0.05f+realtime)*sinf(v[2]*0.05f+realtime);
661 pnv[1] = v[1] + 8*sinf(v[0]*0.05f+realtime)*sinf(v[2]*0.05f+realtime);
703 pnv[0] = v[0] + 8*sinf(v[1]*0.05f+realtime)*sinf(v[2]*0.05f+realtime)
    [all...]

Completed in 569 milliseconds

1 2 3 4 5