Lines Matching refs:cp
531 char *cp, // string to print in tputs() argument
539 if (VIM_ISDIGIT(*cp)) { in tputs()
542 while (VIM_ISDIGIT(*cp)) in tputs()
543 counter = counter * 10L + (long)(*cp++ - '0'); in tputs()
544 if (*cp == '.') in tputs()
545 while (VIM_ISDIGIT(*++cp)) { in tputs()
546 counter = counter * 10L + (long)(*cp++ - '0'); in tputs()
549 if (*cp!='*') { // multiply by affected lines in tputs()
553 cp++; in tputs()
559 while (*cp) // output string in tputs()
560 (*outc)(*cp++); in tputs()
566 while (*cp) in tputs()
567 (*outc)(*cp++); in tputs()