Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dsafety_check.h9 safety_check_set_redzone(void *ptr, size_t usize, size_t bumped_usize) { in safety_check_set_redzone() argument
10 assert(usize < bumped_usize); in safety_check_set_redzone()
11 for (size_t i = usize; i < bumped_usize && i < usize + 32; ++i) { in safety_check_set_redzone()
17 safety_check_verify_redzone(const void *ptr, size_t usize, size_t bumped_usize) in safety_check_verify_redzone() argument
19 for (size_t i = usize; i < bumped_usize && i < usize + 32; ++i) { in safety_check_verify_redzone()
/freebsd/contrib/jemalloc/src/
H A Darena.c1604 size_t bumped_usize = arena_prof_demote(tsdn, extent, ptr); in arena_dalloc_promoted() local
1610 assert(bumped_usize == SC_LARGE_MINCLASS); in arena_dalloc_promoted()
1611 safety_check_verify_redzone(ptr, usize, bumped_usize); in arena_dalloc_promoted()
1613 if (bumped_usize <= tcache_maxclass && tcache != NULL) { in arena_dalloc_promoted()
1615 sz_size2index(bumped_usize), slow_path); in arena_dalloc_promoted()
H A Djemalloc.c1967 size_t bumped_usize = usize; in imalloc_sample() local
1975 bumped_usize = sz_s2u(SC_LARGE_MINCLASS); in imalloc_sample()
1976 ret = imalloc_no_sample(sopts, dopts, tsd, bumped_usize, in imalloc_sample()
1977 bumped_usize, ind_large); in imalloc_sample()