Searched refs:DstScalarType (Results 1 – 1 of 1) sorted by relevance
59 template<typename SrcScalarType, typename DstScalarType, typename Order>60 inline void readOrder (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const void* ptr) in readOrder() argument65 dst[Order::T0] = DstScalarType(aligned[0]); in readOrder()66 if (size >= 2) dst[Order::T1] = DstScalarType(aligned[1]); in readOrder()67 if (size >= 3) dst[Order::T2] = DstScalarType(aligned[2]); in readOrder()68 if (size >= 4) dst[Order::T3] = DstScalarType(aligned[3]); in readOrder()154 template<typename DstScalarType>155 inline void readUint2101010Rev (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const … in readUint2101010Rev() argument160 dst[0] = DstScalarType((aligned >> 0) & ((1 << 10) - 1)); in readUint2101010Rev()161 if (size >= 2) dst[1] = DstScalarType((aligned >> 10) & ((1 << 10) - 1)); in readUint2101010Rev()[all …]