Lines Matching refs:j
513 int j; in execreg_line_continuation() local
531 for (j = cmd_start + 1; j <= cmd_end; j++) in execreg_line_continuation()
533 p = skipwhite(lines[j]); in execreg_line_continuation()
1137 long j; in op_yank() local
1308 for (j = 0; j < curr->y_size; ++j) in op_yank()
1309 new_ptr[j] = curr->y_array[j]; in op_yank()
1330 STRCPY(pnew, curr->y_array[--j]); in op_yank()
1332 vim_free(curr->y_array[j]); in op_yank()
1334 curr->y_array[j++] = pnew; in op_yank()
1340 curr->y_array[j++] = y_current->y_array[y_idx++]; in op_yank()
1341 curr->y_size = j; in op_yank()
1499 long j; in copy_yank_reg() local
1509 for (j = 0; j < y_current->y_size; ++j) in copy_yank_reg()
1510 if ((y_current->y_array[j] = vim_strsave(curr->y_array[j])) == NULL) in copy_yank_reg()
1512 free_yank(j); in copy_yank_reg()
1550 long j; in do_put() local
1881 for (j = 0; j < yanklen; j++) in do_put()
1882 spaces -= lbr_chartabsize(NULL, &y_array[i][j], 0); in do_put()
1912 for (j = 0; j < count; ++j) in do_put()
1918 if ((j < count - 1 || !shortline) && spaces) in do_put()
2321 long j; in ex_display() local
2382 for (j = 0; !do_show && j < yb->y_size; ++j) in ex_display()
2383 do_show = !message_filtered(yb->y_array[j]); in ex_display()
2396 for (j = 0; j < yb->y_size && n > 1; ++j) in ex_display()
2398 if (j) in ex_display()
2403 for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; in ex_display()