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

  /external/eigen/unsupported/Eigen/src/SpecialFunctions/
SpecialFunctionsPacketMath.h 25 /** \internal \returns the zeta function of two arguments (coeff-wise) */
27 Packet pzeta(const Packet& x, const Packet& q) { using numext::zeta; return zeta(x, q); }
SpecialFunctionsHalf.h 21 template<> EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC Eigen::half zeta(const Eigen::half& x, const Eigen::half& q) { function in namespace:Eigen::numext
22 return Eigen::half(Eigen::numext::zeta(static_cast<float>(x), static_cast<float>(q)));
SpecialFunctionsArrayAPI.h 100 /** \returns an expression of the coefficient-wise zeta(\a x, \a q) to the given arrays.
102 * It returns the Riemann zeta function of two arguments \a x and \a q:
108 * to provide implementations of zeta(T,T) for any scalar type T to be supported.
110 * \sa ArrayBase::zeta()
114 zeta(const Eigen::ArrayBase<DerivedX>& x, const Eigen::ArrayBase<DerivedQ>& q) function in namespace:Eigen
SpecialFunctionsFunctors.h 143 * \brief Template functor to compute the Riemann Zeta function of two arguments.
144 * \sa class CwiseUnaryOp, Cwise::zeta()
149 using numext::zeta; return zeta(x, q);
SpecialFunctionsImpl.h 409 // NOTE: cephes_helper is also used to implement zeta
789 * Implementation of Riemann zeta function of two arguments, based on Cephes *
851 /* zeta.c
853 * Riemann zeta function of two arguments
859 * double x, q, y, zeta();
861 * y = zeta( x, q );
871 * zeta(x,q) = > (k+q)
881 * zeta(x,q) = > (k+q)
892 * zeta(x,1) = zetac(x) + 1.
1520 zeta(const Scalar& x, const Scalar& q) { function in namespace:Eigen::numext
    [all...]
  /external/eigen/unsupported/Eigen/src/SpecialFunctions/arch/CUDA/
CudaSpecialFunctions.h 52 using numext::zeta;
53 return make_float4(zeta(x.x, q.x), zeta(x.y, q.y), zeta(x.z, q.z), zeta(x.w, q.w));
59 using numext::zeta;
60 return make_double2(zeta(x.x, q.x), zeta(x.y, q.y));
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_clear.c 59 uint32_t colr = 0, zeta = 0, mode = 0; local
73 zeta = pack_zeta(fb->zsbuf->format, depth, stencil);
83 PUSH_DATA (push, zeta);
89 PUSH_DATA (push, zeta);
  /external/speex/libspeex/
preprocess.c 223 spx_word16_t *zeta; /**< Smoothed a priori SNR */ member in struct:SpeexPreprocessState_
463 st->zeta = (spx_word16_t*)speex_alloc((N+M)*sizeof(spx_word16_t));
557 speex_free(st->zeta);
814 st->zeta[0] = PSHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[0]), MULT16_16(QCONST16(.3f,15),st->prior[0])),15);
816 st->zeta[i] = PSHR32(ADD32(ADD32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16(.15f,15),st->prior[i])),
819 st->zeta[i] = PSHR32(ADD32(MULT16_16(QCONST16(.7f,15),st->zeta[i]), MULT16_16(QCONST16(.3f,15),st->prior[i])),15);
824 Zframe = ADD32(Zframe, EXTEND32(st->zeta[i]))
    [all...]
  /external/eigen/unsupported/test/
special_functions.cpp 136 // Check the zeta function against scipy.special.zeta
143 CALL_SUBTEST( res = x.zeta(q); verify_component_wise(res, ref); );
144 CALL_SUBTEST( res = zeta(x,q); verify_component_wise(res, ref); );
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 170 void zeta(int (*)(int, int)) {} function
171 // CHECK-DAG: @"\01?zeta@@YAXP6AHHH@Z@Z"
172 // X64-DAG: @"\01?zeta@@YAXP6AHHH@Z@Z"
  /external/eigen/Eigen/src/plugins/
ArrayCwiseBinaryOps.h 311 /** \returns an expression of the coefficient-wise zeta function.
315 * It returns the Riemann zeta function of two arguments \c *this and \a q:
321 * to provide implementations of zeta(T,T) for any scalar type T to be supported.
323 * This method is an alias for zeta(*this,q);
325 * \sa Eigen::zeta()
329 zeta(const EIGEN_CURRENT_STORAGE_BASE_CLASS<DerivedQ> &q) const function
  /prebuilts/go/darwin-x86/src/math/
lgamma.go 52 // zeta(2)-1 2 zeta(3)-1 3
  /prebuilts/go/linux-x86/src/math/
lgamma.go 52 // zeta(2)-1 2 zeta(3)-1 3
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharEscapers.java 270 .addEscape('\u0396', "&Zeta;")
294 .addEscape('\u03B6', "&zeta;")
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 395 friend const mpreal zeta (const mpreal& v, mp_rnd_t rnd_mode);
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 150 // zeta(x = this, q = other)
153 zeta(const OtherDerived& other) const { function in class:Eigen::TensorBase
    [all...]
  /external/fonttools/Lib/fontTools/
agl.py 321 0396;Zeta;GREEK CAPITAL LETTER ZETA
703 03B6;zeta;GREEK SMALL LETTER ZETA
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go     [all...]
  /prebuilts/go/darwin-x86/src/html/
entity.go 591 "Zeta;": '\U00000396',
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go     [all...]
  /prebuilts/go/linux-x86/src/html/
entity.go 591 "Zeta;": '\U00000396',
    [all...]
  /external/tcpdump/
configure     [all...]
  /prebuilts/tools/common/m2/repository/com/google/errorprone/javac/9-dev-r3297-4/
javac-9-dev-r3297-4.jar 
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 

Completed in 363 milliseconds