Lines Matching defs:xipp
196 struct sysinit **start, **stop, **sipp, **xipp, *save;
214 for (xipp = sipp + 1; xipp < stop; xipp++) {
215 if ((*sipp)->subsystem < (*xipp)->subsystem ||
216 ((*sipp)->subsystem == (*xipp)->subsystem &&
217 (*sipp)->order <= (*xipp)->order))
220 *sipp = *xipp;
221 *xipp = save;
251 struct sysinit **start, **stop, **sipp, **xipp, *save;
271 for (xipp = sipp + 1; xipp < stop; xipp++) {
272 if ((*sipp)->subsystem > (*xipp)->subsystem ||
273 ((*sipp)->subsystem == (*xipp)->subsystem &&
274 (*sipp)->order >= (*xipp)->order))
277 *sipp = *xipp;
278 *xipp = save;