Lines Matching refs:pp
1221 char_u *pp; in read_compound() local
1316 pp = pat; in read_compound()
1317 *pp++ = '^'; in read_compound()
1318 *pp++ = '\\'; in read_compound()
1319 *pp++ = '('; in read_compound()
1373 *pp++ = '\\'; in read_compound()
1374 *pp++ = '|'; in read_compound()
1380 *pp++ = '\\'; // "a?" becomes "a\?", "a+" becomes "a\+" in read_compound()
1382 pp += mb_char2bytes(c, pp); in read_compound()
1384 *pp++ = c; in read_compound()
1388 *pp++ = '\\'; in read_compound()
1389 *pp++ = ')'; in read_compound()
1390 *pp++ = '$'; in read_compound()
1391 *pp = NUL; in read_compound()
1990 static unsigned get_affitem(int flagtype, char_u **pp);
2822 char_u **pp; in spell_read_aff() local
2837 pp = ((char_u **)spin->si_prefcond.ga_data) in spell_read_aff()
2840 *pp = NULL; in spell_read_aff()
2842 *pp = getroom_save(spin, in spell_read_aff()
3213 get_affitem(int flagtype, char_u **pp) in get_affitem() argument
3219 if (!VIM_ISDIGIT(**pp)) in get_affitem()
3221 ++*pp; // always advance, avoid getting stuck in get_affitem()
3224 res = getdigits(pp); in get_affitem()
3230 res = mb_ptr2char_adv(pp); in get_affitem()
3234 if (**pp == NUL) in get_affitem()
3236 res = mb_ptr2char_adv(pp) + (res << 16); in get_affitem()