Lines Matching refs:T
719 - explicit Gaussian(T sigma = 1.0, unsigned int derivativeOrder = 0)
722 + explicit Gaussian(T s = 1.0, unsigned int derivOrder = 0)
772 #define VIGRA_DEFINE_MISSING_ABS(T) \
773 inline T abs(T t) { return t < 0 ? -t : t; }
777 +#define VIGRA_DEFINE_SIGNED_ABS(T) \
778 + inline T abs(T t) { return (T)abs(t); }
779 +#define VIGRA_DEFINE_SIGNED_LABS(T) \
780 + inline T abs(T t) { return (T)labs(t); }
781 +#define VIGRA_DEFINE_SIGNED_LLABS(T) \
782 + inline T abs(T t) { return (T)llabs(t); }
783 +#define VIGRA_DEFINE_FABS(T) \
784 + inline T abs(T t) { return (T)fabs(t); }
1010 - PolynomialView(T * coeffs, unsigned int order, double epsilon = 1.0e-14)
1011 + PolynomialView(T * coeffs, unsigned int ord, double eps = 1.0e-14)
1032 - void setCoeffs(T * coeffs, unsigned int order)
1033 + void setCoeffs(T * coeffs, unsigned int ord)
1040 T * coeffs_;
1041 @@ -397,9 +397,9 @@ PolynomialView<T>::deflateConjugatePair(
1043 template <class T>
1045 -PolynomialView<T>::minimizeOrder(double epsilon)
1046 +PolynomialView<T>::minimizeOrder(double eps)
1097 template <class T, unsigned int RIDX, unsigned int GIDX, unsigned int BIDX>
1353 @@ -280,8 +280,8 @@ class BSplineBase<0, T>
1354 typedef T result_type;
1364 @@ -357,8 +357,8 @@ class BSpline<1, T>
1365 typedef T result_type;
1375 @@ -454,8 +454,8 @@ class BSpline<2, T>
1376 typedef T result_type;
1386 @@ -583,8 +583,8 @@ class BSpline<3, T>
1387 typedef T result_type;
1397 @@ -735,8 +735,8 @@ class BSpline<4, T>
1398 typedef T result_type;