Lines Matching refs:v
60 register char* v; in stropt() local
93 for (v = s; *t && *t++ == *v; v++); in stropt()
94 if (!*t || isspace(*v) || *v == ',' || *v == '=') in stropt()
96 if (*v == ':' && *(v + 1) == '=') in stropt()
98 v++; in stropt()
105 u = v = s; in stropt()
111 p = (char**)(v = s); in stropt()
114 while (*v && !isspace(*v) && *v != '=' && *v != ',') in stropt()
115 if (*v++ == ':' && *v == '=') in stropt()
118 *(v - 1) = 0; in stropt()
122 if (*v == '=') in stropt()
125 *v = 0; in stropt()
126 t = s = ++v; in stropt()
177 s = v; in stropt()
181 n = p ? (*f)(a, p, n, v) : (*f)(a, p, v - u, u); in stropt()