Home | History | Annotate | Download | only in internal

Lines Matching defs:DstType

29   typedef T DstType;
34 using TransposeType = typename TransposeImpl<T>::DstType;
58 typedef VectorMap<Scalar, TransposedShape> DstType;
59 static DstType Run(const SrcType& src) {
60 return DstType(src.data(), src.size());
68 typedef MatrixMap<Scalar, TransposedOrder> DstType;
69 static DstType Run(const SrcType& src) {
70 return DstType(src.data(), src.cols(), src.rows(), src.stride());
78 typedef OutputStageQuantizeDownInt32ToUint8ScalePC<TransposedShape> DstType;
79 static DstType Run(const SrcType& src) {
80 DstType dst;
92 typedef OutputStageBiasAddition<TransposedVectorMapType> DstType;
93 static DstType Run(const SrcType& src) {
94 DstType dst;