Home
last modified time | relevance | path

Searched refs:DstScalarType (Results 1 – 2 of 2) sorted by relevance

/external/deqp/framework/referencerenderer/
DrrVertexAttrib.cpp59 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() argument
65 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() argument
160 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 …]
/external/gemmlowp/internal/
Dunpack.h155 using DstScalarType = typename ResultBlockType::Scalar; in UnpackResult() local
156 using DstScalarx8x8 = RegisterBlock<DstScalarType, 8, 8>; in UnpackResult()
179 DstScalarType dst_colmajor_buf[64]; in UnpackResult()
180 MatrixMap<DstScalarType, MapOrder::ColMajor> dst_colmajor_map( in UnpackResult()