Home | History | Annotate | Download | only in overlays

Lines Matching defs:fsp

1296 	fstack *stack = NULL, *fsp;
1374 fsp = op->o_tmpalloc(sizeof(fstack), op->o_tmpmemctx);
1375 fsp->fs_next = stack;
1376 fsp->fs_fs = fs->f_next;
1377 fsp->fs_fi = fi->f_next;
1378 stack = fsp;
1431 fsp = stack;
1432 stack = fsp->fs_next;
1433 fs = fsp->fs_fs;
1434 fi = fsp->fs_fi;
1435 op->o_tmpfree(fsp, op->o_tmpmemctx);