mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-26 05:45:49 +03:00
Rename huge to large.
This commit is contained in:
parent
714d1640f3
commit
7d63fed0fd
37 changed files with 587 additions and 626 deletions
|
|
@ -40,7 +40,7 @@ extent_size_quantize_floor(size_t size)
|
|||
pszind_t pind;
|
||||
|
||||
assert(size > 0);
|
||||
assert(size - large_pad <= HUGE_MAXCLASS);
|
||||
assert(size - large_pad <= LARGE_MAXCLASS);
|
||||
assert((size & PAGE_MASK) == 0);
|
||||
|
||||
assert(size != 0);
|
||||
|
|
@ -77,7 +77,7 @@ extent_size_quantize_ceil(size_t size)
|
|||
size_t ret;
|
||||
|
||||
assert(size > 0);
|
||||
assert(size - large_pad <= HUGE_MAXCLASS);
|
||||
assert(size - large_pad <= LARGE_MAXCLASS);
|
||||
assert((size & PAGE_MASK) == 0);
|
||||
|
||||
ret = extent_size_quantize_floor(size);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue