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

  /src/sys/kern/
kern_fileassoc.c 357 struct fileassoc_table *newtbl; local
364 newtbl = kmem_zalloc(sizeof(*newtbl), KM_SLEEP);
365 newtbl->tbl_nslots = (tbl->tbl_nslots * 2);
366 if (newtbl->tbl_nslots < tbl->tbl_nslots)
367 newtbl->tbl_nslots = tbl->tbl_nslots;
368 newtbl->tbl_hash = hashinit(newtbl->tbl_nslots, HASH_LIST,
369 true, &newtbl->tbl_mask);
370 newtbl->tbl_nused = 0
553 struct fileassoc_table *newtbl; local
    [all...]
  /src/sys/dev/
midictl.c 675 uint64_t *newtbl, *oldtbl, mask; local
684 newtbl = kmem_zalloc(sizeof(*newtbl) << newlgcap, KM_SLEEP);
697 kmem_free(newtbl, sizeof(*newtbl) << newlgcap);
709 nidx = store_idx(newlgcap, newtbl,
711 newtbl[nidx] = s->table[oidx];
714 s->table = newtbl;

Completed in 31 milliseconds