Symbol: SMAP
usr.bin/vi/include/vi_extern.h
114
int vs_line(SCR *, SMAP *, size_t *, size_t *);
usr.bin/vi/include/vi_extern.h
134
int vs_sm_next(SCR *, SMAP *, SMAP *);
usr.bin/vi/include/vi_extern.h
135
int vs_sm_prev(SCR *, SMAP *, SMAP *);
usr.bin/vi/include/vi_extern.h
136
int vs_sm_cursor(SCR *, SMAP **);
usr.bin/vi/include/vi_extern.h
138
recno_t vs_sm_nlines(SCR *, SMAP *, recno_t, size_t);
usr.bin/vi/vi/v_txt.c
118
SMAP *esmp;
usr.bin/vi/vi/vi.c
971
CALLOC_RET(sp, HMAP, SIZE_HMAP(sp), sizeof(SMAP));
usr.bin/vi/vi/vi.h
267
SMAP *h_smap; /* First slot of the line map. */
usr.bin/vi/vi/vi.h
268
SMAP *t_smap; /* Last slot of the line map. */
usr.bin/vi/vi/vi.h
302
SMAP *sc_smap; /* SMAP entry where sc_col occurs. */
usr.bin/vi/vi/vs_line.c
39
vs_line(SCR *sp, SMAP *smp, size_t *yp, size_t *xp)
usr.bin/vi/vi/vs_line.c
43
SMAP *tsmp;
usr.bin/vi/vi/vs_line.c
469
SMAP *smp;
usr.bin/vi/vi/vs_refresh.c
161
SMAP *smp, tmp;
usr.bin/vi/vi/vs_refresh.c
44
SMAP *smp;
usr.bin/vi/vi/vs_smap.c
1017
vs_sm_next(SCR *sp, SMAP *p, SMAP *t)
usr.bin/vi/vi/vs_smap.c
1045
vs_sm_prev(SCR *sp, SMAP *p, SMAP *t)
usr.bin/vi/vi/vs_smap.c
1070
vs_sm_cursor(SCR *sp, SMAP **smpp)
usr.bin/vi/vi/vs_smap.c
1072
SMAP *p;
usr.bin/vi/vi/vs_smap.c
1111
SMAP *smp;
usr.bin/vi/vi/vs_smap.c
1189
vs_sm_nlines(SCR *sp, SMAP *from_sp, recno_t to_lno, size_t max)
usr.bin/vi/vi/vs_smap.c
172
SMAP *p, tmp;
usr.bin/vi/vi/vs_smap.c
296
SMAP *p, *t;
usr.bin/vi/vi/vs_smap.c
30
static int vs_sm_down(SCR *, MARK *, recno_t, scroll_t, SMAP *);
usr.bin/vi/vi/vs_smap.c
318
memmove(p, p + cnt_orig, (((TMAP - p) - cnt_orig) + 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_smap.c
34
static int vs_sm_up(SCR *, MARK *, recno_t, scroll_t, SMAP *);
usr.bin/vi/vi/vs_smap.c
344
SMAP *p, *t;
usr.bin/vi/vi/vs_smap.c
373
memmove(p + cnt_orig, p, (((TMAP - p) - cnt_orig) + 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_smap.c
398
SMAP *p, *t;
usr.bin/vi/vi/vs_smap.c
447
(((TMAP - p) - diff) + 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_smap.c
46
SMAP *p;
usr.bin/vi/vi/vs_smap.c
468
memmove(p, p + diff, (((TMAP - p) - diff) + 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_smap.c
503
SMAP *smp;
usr.bin/vi/vi/vs_smap.c
558
vs_sm_up(SCR *sp, MARK *rp, recno_t count, scroll_t scmd, SMAP *smp)
usr.bin/vi/vi/vs_smap.c
561
SMAP *ssmp, s1, s2;
usr.bin/vi/vi/vs_smap.c
749
memmove(HMAP, HMAP + 1, (sp->rows - 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_smap.c
788
vs_sm_down(SCR *sp, MARK *rp, recno_t count, scroll_t scmd, SMAP *smp)
usr.bin/vi/vi/vs_smap.c
790
SMAP *ssmp, s1, s2;
usr.bin/vi/vi/vs_smap.c
975
memmove(HMAP + 1, HMAP, (sp->rows - 1) * sizeof(SMAP));
usr.bin/vi/vi/vs_split.c
103
(sp->t_maxrows - new->rows) * sizeof(SMAP));
usr.bin/vi/vi/vs_split.c
40
SMAP *smp;
usr.bin/vi/vi/vs_split.c
425
CALLOC_RET(nsp, _HMAP(nsp), SIZE_HMAP(nsp), sizeof(SMAP));
usr.bin/vi/vi/vs_split.c
62
CALLOC(sp, _HMAP(new), SIZE_HMAP(sp), sizeof(SMAP));