Searched defs:node_size (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libtecla/common/
H A Dfreelist.c47 size_t node_size; /* The size of a free-list node */ member in struct:FreeList
61 * node_size.
64 * node_size size_t The size of the free-list nodes to be returned
72 FreeList *_new_FreeList(size_t node_size, unsigned blocking_factor) argument
77 * link field. Roundup node_size to a mulitple of the size of a void
83 node_size = sizeof(void *) *
84 ((node_size + sizeof(void *) - 1) / sizeof(void *));
103 fl->node_size = node_size;
152 char *last_node = block->nodes + fl->node_size *
[all...]
/illumos-gate/usr/src/uts/sun4/os/
H A Dmemnode.c121 pgcnt_t delta_pgcnt, node_size; local
134 node_size = mem_node_config[mnode].physmax -
137 if (node_size > delta_pgcnt) {
/illumos-gate/usr/src/uts/i86pc/os/
H A Dmemnode.c125 pgcnt_t delta_pgcnt, node_size; local
138 node_size = mem_node_config[mnode].physmax -
141 if (node_size > delta_pgcnt) {
/illumos-gate/usr/src/uts/common/io/
H A Ddcopy.c149 static int dcopy_list_init(dcopy_list_t *list, size_t node_size,
540 dcopy_list_init(dcopy_list_t *list, size_t node_size, offset_t link_offset) argument
543 list_create(&list->dl_list, node_size, link_offset);

Completed in 74 milliseconds