HomeSort by: relevance | last modified time | path
    Searched refs:nextoff (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/kern/
subr_percpu.c 65 unsigned int nextoff; member in struct:__anon6871
83 KASSERT(off < percpu_allocation.nextoff);
175 unsigned int nextoff; local
185 offset = percpu_allocation.nextoff;
186 percpu_allocation.nextoff = nextoff = percpu_allocation.nextoff + size;
189 percpu_cpu_enlarge(nextoff);
226 percpu_allocation.nextoff = PERCPU_QUANTUM_SIZE;
248 size_t size = percpu_allocation.nextoff; /* XXX racy *
    [all...]
  /src/sys/miscfs/genfs/
genfs_io.c 868 off_t nextoff; local
982 nextoff = startoff;
1017 pg = uvm_page_array_fill_and_peek(&a, nextoff, 0);
1026 KASSERT(pg->offset >= nextoff);
1040 nextoff = pg->offset; /* visit this page again */
1081 nextoff = pg->offset + PAGE_SIZE;
1085 nextoff = pg->offset; /* visit this page again */
1096 nextoff = pg->offset + PAGE_SIZE;
1272 KASSERT(nextoff ==
1282 KASSERT(nextoff == pg->offset + PAGE_SIZE)
    [all...]
  /src/sys/uvm/
uvm_km.c 458 voff_t curoff, nextoff; local
468 for (curoff = start; curoff < end; curoff = nextoff) {
469 nextoff = curoff + PAGE_SIZE;
474 nextoff = curoff;
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 668 uint32_t nextoff, symtabsize, ecoff_strsize; local
686 nextoff = ecoff_symhdr_off + sizeof(struct ecoff_symhdr);
687 stringtaboff = nextoff;
690 nextoff = stringtaboff + ecoff_strsize;
691 symtaboff = nextoff;
  /src/sys/fs/nfs/client/
nfs_clbio.c 77 int i, error, nextoff, size, toff, count, npages; local
174 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
176 nextoff = toff + PAGE_SIZE;
179 if (nextoff <= size) {

Completed in 17 milliseconds