Home
last modified time | relevance | path

Searched defs:cast_impl (Results 1 – 3 of 3) sorted by relevance

/external/eigen/test/
Dboostmultiprec.cpp94 struct cast_impl<Real,NewType> { struct
95 static inline NewType run(const Real& x) { in run()
101 struct cast_impl<Real,std::complex<Real> > { struct
102 static inline std::complex<Real> run(const Real& x) { in run()
/external/ComputeLibrary/include/half/
Dhalf.hpp2077 static half cast_impl(U arg, true_type) { return half(binary, float2half<R>(arg)); } in cast_impl() function
2078 static half cast_impl(U arg, false_type) { return half(binary, int2half<R>(arg)); } in cast_impl() function
2089 static T cast_impl(half arg, true_type) { return half2float<T>(arg.data_); } in cast_impl() function
2090 static T cast_impl(half arg, false_type) { return half2int<R,T>(arg.data_); } in cast_impl() function
2101 static T cast_impl(float arg, true_type) { return static_cast<T>(arg); } in cast_impl() function
2102 static T cast_impl(half arg, false_type) { return half2int<R,T>(arg.data_); } in cast_impl() function
/external/armnn/third-party/half/
Dhalf.hpp2079 static half cast_impl(U arg, true_type) { return half(binary, float2half<R>(arg)); } in cast_impl() function
2080 static half cast_impl(U arg, false_type) { return half(binary, int2half<R>(arg)); } in cast_impl() function
2091 static T cast_impl(half arg, true_type) { return half2float<T>(arg.data_); } in cast_impl() function
2092 static T cast_impl(half arg, false_type) { return half2int<R,T>(arg.data_); } in cast_impl() function
2103 static T cast_impl(float arg, true_type) { return static_cast<T>(arg); } in cast_impl() function
2104 static T cast_impl(half arg, false_type) { return half2int<R,T>(arg.data_); } in cast_impl() function