HomeSort by relevance Sort by last modified time
    Searched refs:pcos (Results 1 - 5 of 5) sorted by null

  /external/stlport/src/
sincos.c 40 void HIDDEN sincos(double x, double *psin, double *pcos)
43 *pcos = cos(x);
46 void HIDDEN sincosf(float x, float *psin, float *pcos)
49 *pcos = cosf(x);
52 void HIDDEN sincosl(long double x, long double *psin, long double *pcos)
55 *pcos = cos(x);
  /external/eigen/Eigen/src/Core/
GenericPacketMath.h 230 Packet pcos(const Packet& a) { return cos(a); } function in namespace:Eigen::internal
Functors.h 711 inline Packet packetOp(const Packet& a) const { return internal::pcos(a); }
    [all...]
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 279 Packet4f pcos<Packet4f>(const Packet4f& _x) function in namespace:Eigen::internal
  /external/eigen/test/
packetmath.cpp 224 CHECK_CWISE1_IF(internal::packet_traits<Scalar>::HasCos, internal::cos, internal::pcos);

Completed in 572 milliseconds