Lines Matching refs:from
171 reduce(char *from) in reduce() argument
173 char *to = from; in reduce()
174 char *svfrom = from; in reduce()
177 while (*from &&isspace((int)*from)) in reduce()
178 from++; in reduce()
181 while (*from && (*from != '=') && !isspace((int)*from)) in reduce()
182 *to++ = *from++; in reduce()
185 while (*from && isspace((int)*from)) in reduce()
186 from++; in reduce()
189 if (*from == '=') in reduce()
190 *to++ = *from++; in reduce()
193 while (*from && isspace((int)*from)) in reduce()
194 from++; in reduce()
197 while (*from) in reduce()
198 *to++ = *from++; in reduce()