Home | History | Annotate | Download | only in ceres

Lines Matching refs:row

187   for (int row = 0; row < NUM_ROW_C; ++row) {
191 tmp += A[row * NUM_COL_A + k] * B[k * NUM_COL_B + col];
194 const int index = (row + start_row_c) * col_stride_c + start_col_c + col;
247 for (int row = 0; row < NUM_ROW_C; ++row) {
251 tmp += A[k * NUM_COL_A + row] * B[k * NUM_COL_B + col];
254 const int index = (row + start_row_c) * col_stride_c + start_col_c + col;
328 for (int row = 0; row < NUM_ROW_A; ++row) {
331 tmp += A[row * NUM_COL_A + col] * b[col];
335 c[row] += tmp;
337 c[row] -= tmp;
339 c[row] = tmp;
379 for (int row = 0; row < NUM_COL_A; ++row) {
382 tmp += A[col * NUM_COL_A + row] * b[col];
386 c[row] += tmp;
388 c[row] -= tmp;
390 c[row] = tmp;