Lines Matching refs:ptr
220 char buf[256], *ptr = buf; in tgetflag() local
222 return tgetstr(id, &ptr) ? 1 : 0; in tgetflag()
238 char *ptr, buf[256]; in tgetnum() local
239 ptr = buf; in tgetnum()
241 if (tgetstr(id, &ptr)) in tgetnum()
390 *ptr, // pointer in 'cm' in tgoto() local
402 ptr = cm; in tgoto()
404 while (*ptr) { in tgoto()
405 if ((c = *ptr++) != '%') { // normal char in tgoto()
408 switch(c = *ptr++) { in tgoto()
422 gx = *ptr++; in tgoto()
423 gy = *ptr++; in tgoto()
428 line += *ptr++; in tgoto()
476 ptr=UP; in tgoto()
477 while (VIM_ISDIGIT(*ptr) || *ptr == '.') in tgoto()
478 ptr++; in tgoto()
479 if (*ptr == '*') in tgoto()
480 ptr++; in tgoto()
481 while (*ptr) in tgoto()
482 *bufp++ = *ptr++; in tgoto()
487 ptr=BC; in tgoto()
488 while (VIM_ISDIGIT(*ptr) || *ptr == '.') in tgoto()
489 ptr++; in tgoto()
490 if (*ptr == '*') in tgoto()
491 ptr++; in tgoto()
492 while (*ptr) in tgoto()
493 *bufp++ = *ptr++; in tgoto()
596 char *ptr = set; in _find() local
598 while (*ptr && *s != *ptr) in _find()
599 ptr++; in _find()
601 if (*ptr) in _find()