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

  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 65 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC float half_to_float(__half h);
99 return static_cast<signed char>(half_impl::half_to_float(*this));
102 return static_cast<unsigned char>(half_impl::half_to_float(*this));
105 return static_cast<short>(half_impl::half_to_float(*this));
108 return static_cast<unsigned short>(half_impl::half_to_float(*this));
111 return static_cast<int>(half_impl::half_to_float(*this));
114 return static_cast<unsigned int>(half_impl::half_to_float(*this));
117 return static_cast<long>(half_impl::half_to_float(*this));
120 return static_cast<unsigned long>(half_impl::half_to_float(*this));
123 return static_cast<long long>(half_impl::half_to_float(*this))
338 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC float half_to_float(__half h) { function in namespace:Eigen::half_impl
    [all...]
  /external/skia/src/jumper/
SkJumper_stages.cpp 759 auto half_to_float = [&](int16_t h) {
765 r = half_to_float(rgba[0]);
766 g = half_to_float(rgba[1]);
767 b = half_to_float(rgba[2]);
768 a = half_to_float(rgba[3]);
845 // half_to_float() slows down ~10x for denorm inputs, so we flush them to zero.
864 auto half_to_float = [&](U32 h) {
869 r = half_to_float(R);
870 g = half_to_float(G);
871 b = half_to_float(B)
    [all...]

Completed in 68 milliseconds