Lines Matching refs:dst_block
130 void UnpackResult(ResultBlockType* dst, const MatrixBlockBounds& dst_block, in UnpackResult() argument
139 assert(dst_block.start_row >= 0); in UnpackResult()
140 assert(dst_block.start_row + dst_block.rows <= dst->rows()); in UnpackResult()
141 assert(dst_block.start_col >= 0); in UnpackResult()
142 assert(dst_block.start_col + dst_block.cols <= dst->cols()); in UnpackResult()
145 lhs_sums_of_each_slice_ptr, dst_block.rows); in UnpackResult()
147 rhs_sums_of_each_slice_ptr, dst_block.cols); in UnpackResult()
173 for (; c8 <= dst_block.cols - 8; c8 += 8) { in UnpackResult()
176 for (; r <= dst_block.rows - 8; r += 8) { in UnpackResult()
177 const int global_row = r + dst_block.start_row; in UnpackResult()
184 const int global_col = c + dst_block.start_col; in UnpackResult()
191 r + dst_block.start_row, c8 + dst_block.start_col); in UnpackResult()
193 for (; r <= dst_block.rows - 4; r += 4) { in UnpackResult()
194 const int global_row = r + dst_block.start_row; in UnpackResult()
197 const int global_col = c + dst_block.start_col; in UnpackResult()
205 for (; r < dst_block.rows; r++) { in UnpackResult()
206 const int global_row = r + dst_block.start_row; in UnpackResult()
209 const int global_col = c + dst_block.start_col; in UnpackResult()
220 for (; c <= dst_block.cols - 4; c += 4) { in UnpackResult()
221 const int global_col = c + dst_block.start_col; in UnpackResult()
224 for (; r <= dst_block.rows - 8; r += 8) { in UnpackResult()
225 const int global_row = r + dst_block.start_row; in UnpackResult()
232 for (; r <= dst_block.rows - 4; r += 4) { in UnpackResult()
233 const int global_row = r + dst_block.start_row; in UnpackResult()
239 for (; r < dst_block.rows; r++) { in UnpackResult()
240 const int global_row = r + dst_block.start_row; in UnpackResult()
247 for (; c < dst_block.cols; c++) { in UnpackResult()
248 const int global_col = c + dst_block.start_col; in UnpackResult()
251 for (; r <= dst_block.rows - 8; r += 8) { in UnpackResult()
252 const int global_row = r + dst_block.start_row; in UnpackResult()
259 for (; r <= dst_block.rows - 4; r += 4) { in UnpackResult()
260 const int global_row = r + dst_block.start_row; in UnpackResult()
266 for (; r < dst_block.rows; r++) { in UnpackResult()
267 const int global_row = r + dst_block.start_row; in UnpackResult()