| 3309 | } |
| 3310 | |
| 3311 | JEMALLOC_ALWAYS_INLINE size_t |
| 3312 | ixallocx_helper(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
| 3313 | size_t extra, size_t alignment, bool zero) { |
| 3314 | size_t newsize; |
| 3315 | |
| 3316 | if (ixalloc(tsdn, ptr, old_usize, size, extra, alignment, zero, |
| 3317 | &newsize)) { |
| 3318 | return old_usize; |
| 3319 | } |
| 3320 | |
| 3321 | return newsize; |
| 3322 | } |
| 3323 | |
| 3324 | static size_t |
| 3325 | ixallocx_prof_sample(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
no test coverage detected