Searched defs:nskip (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libpkg/common/
H A Ddstream.c112 static int ds_skip(char *device, int nskip);
522 int nskip, ods_volpart; local
537 nskip = 0;
544 nskip += ds_toc->nparts;
564 ds_totread = nskip - ods_volpart;
568 if (ds_skip(device, nskip - ds_totread))
571 ds_totread = nskip;
642 ds_skip(char *device, int nskip) argument
645 int n, onskip = nskip;
647 while (nskip
[all...]
/illumos-gate/usr/src/cmd/more/
H A Dmore.c211 static void skipf(register int nskip);
1479 ** Skip nskip files in the file list (from the command line). Nskip may be
1484 skipf(register int nskip) argument
1486 if (nskip == 0) return;
1487 if (nskip > 0) {
1488 if (fnum + nskip > nfiles - 1)
1489 nskip = nfiles - fnum - 1;
1493 fnum += nskip;
1500 if (nskip > 0)

Completed in 63 milliseconds