Lines Matching refs:kCols
109 static_assert(is_pot(LhsLayout::kCols), "");
111 static_assert(is_pot(RhsLayout::kCols), "");
120 RUY_DCHECK_LT(end_row, dst->layout.rows + LhsLayout::kCols);
121 RUY_DCHECK_EQ((end_row - start_row) % LhsLayout::kCols, 0);
124 RUY_DCHECK_LT(end_col, dst->layout.cols + RhsLayout::kCols);
125 RUY_DCHECK_EQ((end_col - start_col) % RhsLayout::kCols, 0);
129 for (int col = start_col; col < end_col; col += RhsLayout::kCols) {
130 int block_end_col = std::min(col + RhsLayout::kCols, end_col);
131 for (int row = start_row; row < end_row; row += LhsLayout::kCols) {
132 int block_end_row = std::min(row + LhsLayout::kCols, end_row);
203 RUY_DCHECK_LE(end_row - clamped_end_row, LhsLayout::kCols);
208 RUY_DCHECK_LE(end_col - clamped_end_col, RhsLayout::kCols);