Lines Matching refs:tptr
65 char *tptr; in trim_white() local
71 tptr = ptr + strlen(ptr); in trim_white()
72 while (tptr != ptr && isspace(tptr[-1])) in trim_white()
73 --tptr; in trim_white()
74 *tptr = '\0'; in trim_white()
90 char *tptr, ch; in pack_white() local
94 tptr = ptr; in pack_white()
95 while (isspace(*tptr)) in pack_white()
96 tptr++; in pack_white()
98 while ((ch = *tptr) != '\0' && !isspace(ch)) { in pack_white()
100 tptr++; in pack_white()
102 while (isspace(*tptr)) in pack_white()
103 tptr++; in pack_white()
104 if (*tptr == '\0') in pack_white()
198 static char *tptr = NULL; in getdadmfield() local
203 ptr = tptr; in getdadmfield()
212 tptr = pend; in getdadmfield()
214 tptr = NULL; in getdadmfield()