Lines Matching defs:one
256 reg Pfobj_t *one, *two, *next;
263 one = two = NIL(Pfobj_t*);
266 pf->next = one;
267 one = pf;
278 one = pfsort(one);
282 if(PFLINE(one) == 0 && PFLINE(two) == 0)
283 cmp = PFVM(one) > PFVM(two) ? 1 : -1;
284 else if(PFLINE(one) == 0)
288 else if((cmp = strcmp(PFFILE(one),PFFILE(two))) == 0)
289 { cmp = PFLINE(one) - PFLINE(two);
291 cmp = PFVM(one) > PFVM(two) ? 1 : -1;
296 pf = one;
297 else next->next = one;
298 next = one;
299 if(!(one = one->next) )
311 { if(one)
312 next->next = one;