Lines Matching defs:sipp
196 struct sysinit **start, **stop, **sipp, **xipp, *save;
213 for (sipp = start; sipp < stop; sipp++) {
214 for (xipp = sipp + 1; xipp < stop; xipp++) {
215 if ((*sipp)->subsystem < (*xipp)->subsystem ||
216 ((*sipp)->subsystem == (*xipp)->subsystem &&
217 (*sipp)->order <= (*xipp)->order))
219 save = *sipp;
220 *sipp = *xipp;
232 for (sipp = start; sipp < stop; sipp++) {
233 if ((*sipp)->subsystem == SI_SUB_DUMMY)
236 if ((*sipp)->subsystem > last)
238 (*sipp)->subsystem);
241 (*((*sipp)->func)) ((*sipp)->udata);
242 last = (*sipp)->subsystem;
251 struct sysinit **start, **stop, **sipp, **xipp, *save;
270 for (sipp = start; sipp < stop; sipp++) {
271 for (xipp = sipp + 1; xipp < stop; xipp++) {
272 if ((*sipp)->subsystem > (*xipp)->subsystem ||
273 ((*sipp)->subsystem == (*xipp)->subsystem &&
274 (*sipp)->order >= (*xipp)->order))
276 save = *sipp;
277 *sipp = *xipp;
289 for (sipp = start; sipp < stop; sipp++) {
290 if ((*sipp)->subsystem == SI_SUB_DUMMY)
293 if ((*sipp)->subsystem > last)
295 (*sipp)->subsystem);
298 (*((*sipp)->func)) ((*sipp)->udata);
299 last = (*sipp)->subsystem;