Lines Matching refs:_i
177 for (_i = low; _i < high; _i++) { \
178 if (rp[_i] > bcol) break; \
179 if (rp[_i] == bcol) { \
180 bap = ap + bs2 * _i + bs * cidx + ridx; \
191 PetscCall(PetscArraymove(rp + _i + 1, rp + _i, N - _i + 1)); \
192 PetscCall(PetscArraymove(ap + bs2 * (_i + 1), ap + bs2 * _i, bs2 * (N - _i + 1))); \
193 PetscCall(PetscArrayzero(ap + bs2 * _i, bs2)); \
194 rp[_i] = bcol; \
195 ap[bs2 * _i + bs * cidx + ridx] = value; \
217 for (_i = low; _i < high; _i++) { \
218 if (rp[_i] > bcol) break; \
219 if (rp[_i] == bcol) { \
220 bap = ap + bs2 * _i + bs * cidx + ridx; \
231 PetscCall(PetscArraymove(rp + _i + 1, rp + _i, N - _i + 1)); \
232 PetscCall(PetscArraymove(ap + bs2 * (_i + 1), ap + bs2 * _i, bs2 * (N - _i + 1))); \
233 PetscCall(PetscArrayzero(ap + bs2 * _i, bs2)); \
234 rp[_i] = bcol; \
235 ap[bs2 * _i + bs * cidx + ridx] = value; \
261 PetscInt *rp, ii, nrow, _i, rmax, N, brow, bcol; in MatSetValues_MPIBAIJ() local