Symbol: NBUCKETS
libexec/rtld-elf/malloc.c
103
static union overhead *nextf[NBUCKETS];
libexec/rtld-elf/malloc.c
113
static u_int nmalloc[NBUCKETS];
libexec/rtld-elf/malloc.c
298
ASSERT(size < NBUCKETS);
libexec/rtld-elf/malloc.c
351
i = NBUCKETS;
libexec/rtld-elf/malloc.c
394
for (i = 0; i < NBUCKETS; i++) {
libexec/rtld-elf/malloc.c
424
for (i = 0; i < NBUCKETS; i++) {
libexec/rtld-elf/malloc.c
431
for (i = 0; i < NBUCKETS; i++) {
sys/netgraph7/netflow/netflow.c
333
priv->hash = kmalloc(NBUCKETS * sizeof(struct flow_hash_entry),
sys/netgraph7/netflow/netflow.c
337
for (i = 0, hsh = priv->hash; i < NBUCKETS; i++, hsh++) {
sys/netgraph7/netflow/netflow.c
361
for (hsh = priv->hash, i = 0; i < NBUCKETS; hsh++, i++)
sys/netgraph7/netflow/netflow.c
373
for (i = 0, hsh = priv->hash; i < NBUCKETS; i++, hsh++)
sys/netgraph7/netflow/netflow.c
537
if (last > NBUCKETS-1)
sys/netgraph7/netflow/netflow.c
555
for (; i < NBUCKETS; hsh++, i++) {
sys/netgraph7/netflow/netflow.c
568
if (++i < NBUCKETS)
sys/netgraph7/netflow/netflow.c
63
(NBUCKETS - 1))
sys/netgraph7/netflow/netflow.c
671
for (hsh = priv->hash, i = 0; i < NBUCKETS; hsh++, i++) {
sys/netgraph7/netflow/netflow.c
69
(NBUCKETS - 1))
sys/netgraph7/netflow/netflow.c
691
if (used <= (NBUCKETS*2) && !INACTIVE(fle))
sys/netgraph7/netflow/netflow.c
695
(used > (NBUCKETS*2)))) || AGED(fle)) {
tools/test/malloc/main.c
17
if (argc > 2) NBUCKETS = strtoul(argv[2],0,0);
tools/test/malloc/main.c
20
foo = malloc (sizeof *foo * NBUCKETS);
tools/test/malloc/main.c
21
memset(foo,0,sizeof *foo * NBUCKETS);
tools/test/malloc/main.c
23
for (j = 0 ; j < 40960/i && j < NBUCKETS; j++) {
tools/test/malloc/main.c
26
for (j = 0 ; j < 40960/i && j < NBUCKETS; j++) {
tools/test/malloc/main.c
33
j = random() % NBUCKETS;
tools/test/malloc/main.c
40
for (j = 0 ; j < NBUCKETS ; j++) {
tools/test/malloc/main.c
47
sbrk(0),NOPS,NBUCKETS,NSIZE);
tools/test/malloc/main.c
5
u_long NBUCKETS = 2000;
usr.bin/mkstr/mkstr.c
263
} *bucket[NBUCKETS];
usr.bin/mkstr/mkstr.c
278
i = hashval % NBUCKETS;
usr.bin/mkstr/mkstr.c
280
i += NBUCKETS;