Searched refs:cosf (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DDistantLightSource.cpp43 paintingData.lightVector.setX(cosf(azimuth) * cosf(elevation));
44 paintingData.lightVector.setY(sinf(azimuth) * cosf(elevation));
H A DSpotLightSource.cpp61 paintingData.coneCutOffLimit = cosf(deg2rad(180.0f - limitingConeAngle));
H A DFEColorMatrix.cpp205 float cosHue = cosf(hue * piFloat / 180);
H A DSkiaImageFilterBuilder.cpp78 float cosHue = cosf(hue * piFloat / 180);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_csc.c211 (*matrix)[0][1] = c * (*cstd)[0][1] * s * cosf(h) - c * (*cstd)[0][2] * s * sinf(h);
212 (*matrix)[0][2] = c * (*cstd)[0][2] * s * cosf(h) + c * (*cstd)[0][1] * s * sinf(h);
214 (*cstd)[0][1] * (c * cbbias * s * cosf(h) + c * crbias * s * sinf(h)) +
215 (*cstd)[0][2] * (c * crbias * s * cosf(h) - c * cbbias * s * sinf(h));
218 (*matrix)[1][1] = c * (*cstd)[1][1] * s * cosf(h) - c * (*cstd)[1][2] * s * sinf(h);
219 (*matrix)[1][2] = c * (*cstd)[1][2] * s * cosf(h) + c * (*cstd)[1][1] * s * sinf(h);
221 (*cstd)[1][1] * (c * cbbias * s * cosf(h) + c * crbias * s * sinf(h)) +
222 (*cstd)[1][2] * (c * crbias * s * cosf(h) - c * cbbias * s * sinf(h));
225 (*matrix)[2][1] = c * (*cstd)[2][1] * s * cosf(h) - c * (*cstd)[2][2] * s * sinf(h);
226 (*matrix)[2][2] = c * (*cstd)[2][2] * s * cosf(
[all...]
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_csc.c211 (*matrix)[0][1] = c * (*cstd)[0][1] * s * cosf(h) - c * (*cstd)[0][2] * s * sinf(h);
212 (*matrix)[0][2] = c * (*cstd)[0][2] * s * cosf(h) + c * (*cstd)[0][1] * s * sinf(h);
214 (*cstd)[0][1] * (c * cbbias * s * cosf(h) + c * crbias * s * sinf(h)) +
215 (*cstd)[0][2] * (c * crbias * s * cosf(h) - c * cbbias * s * sinf(h));
218 (*matrix)[1][1] = c * (*cstd)[1][1] * s * cosf(h) - c * (*cstd)[1][2] * s * sinf(h);
219 (*matrix)[1][2] = c * (*cstd)[1][2] * s * cosf(h) + c * (*cstd)[1][1] * s * sinf(h);
221 (*cstd)[1][1] * (c * cbbias * s * cosf(h) + c * crbias * s * sinf(h)) +
222 (*cstd)[1][2] * (c * crbias * s * cosf(h) - c * cbbias * s * sinf(h));
225 (*matrix)[2][1] = c * (*cstd)[2][1] * s * cosf(h) - c * (*cstd)[2][2] * s * sinf(h);
226 (*matrix)[2][2] = c * (*cstd)[2][2] * s * cosf(
[all...]
/external/stlport/src/
H A Dsincos.c49 *pcos = cosf(x);
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c25 float cosf(float);
81 atan2f, ceil, ceill, ceilf, copysign, copysignl, copysignf, cos, cosl, cosf,
109 // CHECK-NOERRNO: declare float @cosf(float) [[NUW]]
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
H A Dmatrix.cc94 mat[5] = cosf(x_rad);
102 mat[0] = cosf(y_rad);
110 mat[0] = cosf(z_rad);
/external/chromium_org/base/
H A Dos_compat_android.cc96 *c = cosf(angle);
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h49 #define sk_float_cos(x) cosf(x)
/external/skia/include/core/
H A DSkFloatingPoint.h49 #define sk_float_cos(x) cosf(x)
/external/stlport/stlport/stl/config/
H A D_como.h115 # define cosf cos macro
/external/chromium_org/third_party/angle_dx11/samples/gles2_book/Common/
H A DesShapes.c86 (*vertices)[vertex + 1] = radius * cosf ( angleStep * (float)i );
88 cosf ( angleStep * (float)j );
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fnfns.c63 printf(" cosF(%+20.4e) = %+20.4e\n", (double)f, (double)cosf(f));
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h166 /// float cosf(float x);
167 cosf, enumerator in enum:llvm::LibFunc::Func
690 case LibFunc::cos: case LibFunc::cosf: case LibFunc::cosl:
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathParser.cpp478 float cosStartTheta = cosf(startTheta);
480 float cosEndTheta = cosf(endTheta);
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasPathMethods.cpp145 lineTo(x + r * cosf(sa), y + r * sinf(sa));
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
H A DPathTraversalState.cpp215 m_current.move(offset * cosf(slope), offset * sinf(slope));
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c236 {"cos", &lp_build_cos, &cosf, sincos_values, Elements(sincos_values), 20.0 },
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c236 {"cos", &lp_build_cos, &cosf, sincos_values, Elements(sincos_values), 20.0 },
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_rdft.c130 rdft_w[nwh] = cosf(delta * nwh);
133 x = cosf(delta * j);
202 c[0] = cosf(delta * nch);
205 c[j] = 0.5f * cosf(delta * j);
/external/bison/darwin-lib/
H A Dmath.h798 # undef cosf
799 _GL_FUNCDECL_SYS (cosf, float, (float x));
801 _GL_CXXALIAS_SYS (cosf, float, (float x));
802 _GL_CXXALIASWARN (cosf);
804 # undef cosf macro
806 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
807 "use gnulib module cosf for portability");
/external/bison/lib/
H A Dmath.in.h486 # undef cosf macro
487 _GL_FUNCDECL_SYS (cosf, float, (float x));
489 _GL_CXXALIAS_SYS (cosf, float, (float x));
490 _GL_CXXALIASWARN (cosf); variable
492 # undef cosf macro
494 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
495 "use gnulib module cosf for portability");
/external/bison/linux-lib/
H A Dmath.h798 # undef cosf
799 _GL_FUNCDECL_SYS (cosf, float, (float x));
801 _GL_CXXALIAS_SYS (cosf, float, (float x));
802 _GL_CXXALIASWARN (cosf);
804 # undef cosf macro
806 _GL_WARN_ON_USE (cosf, "cosf is unportable - "
807 "use gnulib module cosf for portability");

Completed in 581 milliseconds

12