Lines Matching refs:retptr
67 register char *retptr = rmbuffer; in rmpadding() local
123 *retptr++ = '$'; in rmpadding()
124 *retptr++ = '<'; in rmpadding()
136 *retptr++ = ch; in rmpadding()
140 *retptr++ = ch; in rmpadding()
142 *retptr = '\0'; in rmpadding()
171 register char *retptr = retbuffer; in cconvert() local
184 (void) sprintf(retptr, "\\%.3o", c); retptr += 4; } in cconvert()
186 (void) sprintf(retptr, "\\E"); retptr += 2; } in cconvert()
188 (void) sprintf(retptr, "\\t"); retptr += 2; } in cconvert()
190 (void) sprintf(retptr, "\\b"); retptr += 2; } in cconvert()
192 (void) sprintf(retptr, "\\f"); retptr += 2; } in cconvert()
194 (void) sprintf(retptr, "\\n"); retptr += 2; } in cconvert()
196 (void) sprintf(retptr, "\\r"); retptr += 2; } in cconvert()
200 (void) sprintf(retptr, "\\072"); retptr += 4; } in cconvert()
202 (void) sprintf(retptr, "\\^"); retptr += 2; } in cconvert()
204 (void) sprintf(retptr, BACKBACK); retptr += 2; } in cconvert()
206 (void) sprintf(retptr, "^%c", c ^ 0100); retptr += 2; } in cconvert()
208 (void) sprintf(retptr, "%c", c); retptr++; } in cconvert()
210 *retptr = '\0'; in cconvert()
228 char *retptr; in cexpand() local
230 retptr = rmpadding(str, padbuffer, (int *)0); in cexpand()
231 (void) sprintf(ret2buffer, "%s%s", padbuffer, cconvert(retptr)); in cexpand()