Lines Matching refs:tptr
67 char *tptr; in trim_white() local
73 tptr = ptr + strlen(ptr); in trim_white()
74 while (tptr != ptr && isspace(tptr[-1])) in trim_white()
75 --tptr; in trim_white()
76 *tptr = '\0'; in trim_white()
92 char *tptr, ch; in pack_white() local
96 tptr = ptr; in pack_white()
97 while (isspace(*tptr)) in pack_white()
98 tptr++; in pack_white()
100 while ((ch = *tptr) != '\0' && !isspace(ch)) { in pack_white()
102 tptr++; in pack_white()
104 while (isspace(*tptr)) in pack_white()
105 tptr++; in pack_white()
106 if (*tptr == '\0') in pack_white()
200 static char *tptr = NULL; in getdadmfield() local
205 ptr = tptr; in getdadmfield()
214 tptr = pend; in getdadmfield()
216 tptr = NULL; in getdadmfield()