Lines Matching refs:from
173 reduce(char *from) in reduce() argument
175 char *to = from; in reduce()
176 char *svfrom = from; in reduce()
179 while (*from &&isspace((int)*from)) in reduce()
180 from++; in reduce()
183 while (*from && (*from != '=') && !isspace((int)*from)) in reduce()
184 *to++ = *from++; in reduce()
187 while (*from && isspace((int)*from)) in reduce()
188 from++; in reduce()
191 if (*from == '=') in reduce()
192 *to++ = *from++; in reduce()
195 while (*from && isspace((int)*from)) in reduce()
196 from++; in reduce()
199 while (*from) in reduce()
200 *to++ = *from++; in reduce()