Home | History | Annotate | Download | only in products

Lines Matching defs:j2

106       for(Index j2=0; j2<cols; j2+=subcols)
108 Index actual_cols = (std::min)(cols-j2,subcols);
122 for (Index j=j2; j<j2+actual_cols; ++j)
151 pack_rhs(blockB+actual_kc*j2, &other(startBlock,j2), otherStride, actualPanelWidth, actual_cols, actual_kc, blockBOffset);
160 gebp_kernel(&other(startTarget,j2), otherStride, blockA, blockB+actual_kc*j2, lengthTarget, actualPanelWidth, actual_cols, Scalar(-1),
246 for (Index j2=0; j2<actual_kc; j2+=SmallPanelWidth)
248 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
249 Index actual_j2 = actual_k2 + j2;
250 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
251 Index panelLength = IsLower ? actual_kc-j2-actualPanelWidth : j2;
254 pack_rhs_panel(blockB+j2*actual_kc,
268 for (Index j2 = IsLower
272 IsLower ? j2>=0 : j2<actual_kc;
273 IsLower ? j2-=SmallPanelWidth : j2+=SmallPanelWidth)
275 Index actualPanelWidth = std::min<Index>(actual_kc-j2, SmallPanelWidth);
276 Index absolute_j2 = actual_k2 + j2;
277 Index panelOffset = IsLower ? j2+actualPanelWidth : 0;
278 Index panelLength = IsLower ? actual_kc - j2 - actualPanelWidth : j2;
284 blockA, blockB+j2*actual_kc,
313 actual_kc, j2);