Lines Matching refs:CellOrder
121 // CellOrder enumerates the possible storage orders (=layouts) for
123 enum class CellOrder { DepthMajor, WidthMajor, Diagonal };
126 // out in a cell. That is, a CellOrder together with actual dimensions.
127 template <int tWidth, int tDepth, CellOrder tOrder = CellOrder::DepthMajor>
131 static const CellOrder kOrder = tOrder;
163 inline const char* CellOrderName(CellOrder o) {
165 case CellOrder::DepthMajor:
167 case CellOrder::WidthMajor:
169 case CellOrder::Diagonal:
181 case CellOrder::DepthMajor:
183 case CellOrder::WidthMajor:
185 case CellOrder::Diagonal: