Home | History | Annotate | Download | only in cuda

Lines Matching full:template

61     template <typename ScalarDepth> struct TransformPolicy : DefaultTransformPolicy
64 template <> struct TransformPolicy<double> : DefaultTransformPolicy
77 template <typename T>
114 template <typename T> struct SqrOp : unary_function<T, T>
122 template <typename T>
159 template <typename T>
196 template <typename T> struct ExpOp : unary_function<T, T>
205 template <typename T>
242 template <typename T>
279 template<typename T, bool Signed = numeric_limits<T>::is_signed> struct PowOp : unary_function<T, T>
288 template<typename T> struct PowOp<T, true> : unary_function<T, T>
302 template<> struct PowOp<float> : unary_function<float, float>
311 template<> struct PowOp<double> : unary_function<double, double>
321 template<typename T>