Home | History | Annotate | Download | only in meta

Lines Matching refs:RowMajor

25 struct RowMajor {
48 class StreamUtil<InType, RowMajor> {
50 static const InType* Offset(const RowMajor& params, const InType* source,
57 static InType* Offset(const RowMajor& params, InType* source,
64 static int Scratch(const RowMajor& params, int lanes_count, int pack_size) {
120 class Stream<InType, lanes_count, pack_size, leftovers, RowMajor> {
122 static void Pack(const InType* in, const RowMajor& params, InType* out) {
125 std::cout << "RowMajor(" << std::string(typeid(InType).name())
137 static int UnpackedAdvance(const RowMajor& params) {
141 static int PackedAdvance(const RowMajor& params) {
145 static int UnpackedStride(const RowMajor& params) {
149 static int PackedStride(const RowMajor& params) {
153 static int Scratch(const RowMajor& params) { return PackedStride(params); }
157 static void Debug(const RowMajor& params) {
158 std::cout << "RowMajor(" << typeid(InType).name() << ")" << std::endl;