Lines Matching refs:_i
218 for (_i = low; _i < high; _i++) { \
219 if (rp[_i] > bcol) break; \
220 if (rp[_i] == bcol) { \
221 bap = ap + bs2 * _i + bs * cidx + ridx; \
232 PetscCall(PetscArraymove(rp + _i + 1, rp + _i, N - _i + 1)); \
233 PetscCall(PetscArraymove(ap + bs2 * (_i + 1), ap + bs2 * _i, bs2 * (N - _i + 1))); \
234 PetscCall(PetscArrayzero(ap + bs2 * _i, bs2)); \
235 rp[_i] = bcol; \
236 ap[bs2 * _i + bs * cidx + ridx] = value; \
258 for (_i = low; _i < high; _i++) { \
259 if (rp[_i] > bcol) break; \
260 if (rp[_i] == bcol) { \
261 bap = ap + bs2 * _i + bs * cidx + ridx; \
272 PetscCall(PetscArraymove(rp + _i + 1, rp + _i, N - _i + 1)); \
273 PetscCall(PetscArraymove(ap + bs2 * (_i + 1), ap + bs2 * _i, bs2 * (N - _i + 1))); \
274 PetscCall(PetscArrayzero(ap + bs2 * _i, bs2)); \
275 rp[_i] = bcol; \
276 ap[bs2 * _i + bs * cidx + ridx] = value; \
305 PetscInt *rp, ii, nrow, _i, rmax, N, brow, bcol; in MatSetValues_MPISBAIJ() local