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

  /src/sys/kern/
subr_percpu.c 63 unsigned int nextoff; member in struct:__anond2627cf50108
81 KASSERT(off < percpu_allocation.nextoff);
173 unsigned int nextoff; local in function:percpu_backend_alloc
183 offset = percpu_allocation.nextoff;
184 percpu_allocation.nextoff = nextoff = percpu_allocation.nextoff + size;
187 percpu_cpu_enlarge(nextoff);
224 percpu_allocation.nextoff = PERCPU_QUANTUM_SIZE;
246 size_t size = percpu_allocation.nextoff; /* XXX racy *
    [all...]
  /src/sys/uvm/
uvm_km.c 458 voff_t curoff, nextoff; local in function:uvm_km_pgremove
468 for (curoff = start; curoff < end; curoff = nextoff) {
469 nextoff = curoff + PAGE_SIZE;
474 nextoff = curoff;
  /src/sys/fs/nfs/client/
nfs_clbio.c 77 int i, error, nextoff, size, toff, count, npages; local in function:ncl_getpages
174 for (i = 0, toff = 0; i < npages; i++, toff = nextoff) {
176 nextoff = toff + PAGE_SIZE;
179 if (nextoff <= size) {
  /src/usr.bin/elf2ecoff/
elf2ecoff.c 665 uint32_t nextoff, symtabsize, ecoff_strsize; local in function:elf_symbol_table_to_ecoff
680 nextoff = ecoff_symhdr_off + sizeof(struct ecoff_symhdr);
681 stringtaboff = nextoff;
686 nextoff = stringtaboff + ecoff_strsize;
687 symtaboff = nextoff;
  /src/sys/miscfs/genfs/
genfs_io.c 868 off_t nextoff; local in function:genfs_do_putpages
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...]

Completed in 15 milliseconds