Home
last modified time | relevance | path

Searched refs:bigbytes (Results 1 – 1 of 1) sorted by relevance

/dragonfly/lib/libc/stdlib/
H A Dnmalloc.c1385 size_t bigbytes; in _slabrealloc() local
1390 bigbytes = big->bytes; in _slabrealloc()
1400 if (size >= (bigbytes >> 1) && in _slabrealloc()
1401 size <= bigbytes) { in _slabrealloc()
1430 if (chunking > bigbytes) { in _slabrealloc()
1434 addr = mmap((char *)ptr + bigbytes, in _slabrealloc()
1435 chunking - bigbytes, in _slabrealloc()
1441 if (addr == (char *)ptr + bigbytes) { in _slabrealloc()
1473 if (size > bigbytes) in _slabrealloc()
1474 size = bigbytes; in _slabrealloc()