Lines Matching refs:two
256 reg Pfobj_t *one, *two, *next; local
263 one = two = NIL(Pfobj_t*);
271 pf->next = two;
272 two = pf;
279 two = pfsort(two);
282 if(PFLINE(one) == 0 && PFLINE(two) == 0)
283 cmp = PFVM(one) > PFVM(two) ? 1 : -1;
286 else if(PFLINE(two) == 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;
300 { if(two)
301 next->next = two;
307 pf = two;
308 else next->next = two;
309 next = two;
310 if(!(two = two->next) )