Lines Matching refs:T
58 template<typename T,
61 void init_array(Vector<T,L,A> &pDst,std::size_t nb) in init_array() argument
65 pDst[i] = T(i); in init_array()
82 template<typename T>
83 void init_array(Vector_Base<T> &pDst,std::size_t nb) in init_array()
87 pDst[i] = T(i); in init_array()
100 template<typename T,
101 typename std::enable_if<std::is_pointer<T>::value,bool>::type = true>
102 bool validate(const T a, const T b, std::size_t nb,float abser = ABS_ERROR, float reler = REL_ERROR)
158 template<typename T,
159 typename std::enable_if<!std::is_pointer<T>::value
160 && !IsVector<T>::value && !HasMatrixIndexing<T>::value,bool>::type = true>
161 bool validate(const T a, const T b,float abser = ABS_ERROR, float reler = REL_ERROR)
164 if constexpr (number_traits<std::remove_cv_t<T>>::is_float)
274 template<typename T>
279 std::cout<<"\r\n\033[31;1;4m" << s << " " << NameOfType<T>::xls << "\033[0m\r\n"; in title()
281 std::cout<<"\r\n\033[31;1;4m" << s << " dynamic " << NameOfType<T>::xls << "\033[0m\r\n"; in title()
285 std::cout << "\r\n" << s << " " << NameOfType<T>::xls << "\r\n"; in title()
287 std::cout << "\r\n" << s << " dynamic " << NameOfType<T>::xls << "\r\n"; in title()