Lines Matching refs:posp

309     pos_T		*posp;  in getmark_buf_fnum()  local
313 posp = NULL; in getmark_buf_fnum()
318 return posp; in getmark_buf_fnum()
327 posp = &pos_copy; // w_pcmark may be changed soon in getmark_buf_fnum()
330 posp = &(buf->b_last_cursor); in getmark_buf_fnum()
332 posp = &(buf->b_last_insert); in getmark_buf_fnum()
334 posp = &(buf->b_last_change); in getmark_buf_fnum()
336 posp = &(buf->b_op_start); in getmark_buf_fnum()
338 posp = &(buf->b_op_end); in getmark_buf_fnum()
351 posp = &pos_copy; in getmark_buf_fnum()
366 posp = &pos_copy; in getmark_buf_fnum()
377 posp = startp; in getmark_buf_fnum()
379 posp = endp; in getmark_buf_fnum()
385 pos_copy = *posp; in getmark_buf_fnum()
386 posp = &pos_copy; in getmark_buf_fnum()
396 posp = &(buf->b_namedm[c - 'a']); in getmark_buf_fnum()
404 posp = &(namedfm[c].fmark.mark); in getmark_buf_fnum()
414 posp = &pos_copy; in getmark_buf_fnum()
434 return posp; in getmark_buf_fnum()
684 pos_T *posp, *startp, *endp; in ex_marks() local
717 posp = startp; in ex_marks()
719 posp = endp; in ex_marks()
720 show_one_mark('<', arg, posp, NULL, TRUE); in ex_marks()
721 show_one_mark('>', arg, posp == startp ? endp : startp, NULL, TRUE); in ex_marks()
1196 posp = pp; \
1197 if (posp->lnum == lnum && posp->col >= mincol) \
1199 posp->lnum += lnum_amount; \
1200 if (col_amount < 0 && posp->col <= (colnr_T)-col_amount) \
1201 posp->col = 0; \
1202 else if (posp->col < spaces_removed) \
1203 posp->col = col_amount + spaces_removed; \
1205 posp->col += col_amount; \
1227 pos_T *posp; in mark_col_adjust() local