_TDemoteClampZ 107 modules/cudalegacy/src/cuda/NCVPixelOperations.hpp template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv8u &out) {out = (Ncv8u)CLAMP_0_255(a);} _TDemoteClampZ 108 modules/cudalegacy/src/cuda/NCVPixelOperations.hpp template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv16u &out) {out = (Ncv16u)CLAMP(a, 0, USHRT_MAX);} _TDemoteClampZ 109 modules/cudalegacy/src/cuda/NCVPixelOperations.hpp template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv32u &out) {out = (Ncv32u)CLAMP(a, 0, UINT_MAX);} _TDemoteClampZ 110 modules/cudalegacy/src/cuda/NCVPixelOperations.hpp template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv32f &out) {out = (Ncv32f)a;}