Home | History | Annotate | Download | only in products

Lines Matching refs:j2

99       for(Index j2=0; j2<cols; j2+=subcols)
101 Index actual_cols = (std::min)(cols-j2,subcols);
115 for (Index j=j2; j<j2+actual_cols; ++j)
144 pack_rhs(blockB+actual_kc*j2, &other(startBlock,j2), otherStride, actualPanelWidth, actual_cols, actual_kc, blockBOffset);
153 gebp_kernel(&other(startTarget,j2), otherStride, blockA, blockB+actual_kc*j2, lengthTarget, actualPanelWidth, actual_cols, Scalar(-1),
233 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
235 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
236 Index actual_j2 = actual_k2 + j2;
237 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
238 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
241 pack_rhs_panel(blockB+j2*actual_kc,
255 for (Index j2 = IsLower
259 IsLower ? j2>=0 : j2<actual_kc;
260 IsLower ? j2-=SmallPanelWidth : j2+=SmallPanelWidth)
262 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
263 Index absolute_j2 = actual_k2 + j2;
264 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
265 Index panelLength = IsLower ? actual_kc - j2 - actualPanelWidth : j2;
271 blockA, blockB+j2*actual_kc,
300 actual_kc, j2);