| 3662 | } |
| 3663 | |
| 3664 | JEMALLOC_ALWAYS_INLINE size_t |
| 3665 | ixallocx_helper(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
| 3666 | size_t extra, size_t alignment, bool zero) { |
| 3667 | size_t newsize; |
| 3668 | |
| 3669 | if (ixalloc(tsdn, ptr, old_usize, size, extra, alignment, zero, |
| 3670 | &newsize)) { |
| 3671 | return old_usize; |
| 3672 | } |
| 3673 | |
| 3674 | return newsize; |
| 3675 | } |
| 3676 | |
| 3677 | static size_t |
| 3678 | ixallocx_prof_sample(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
no test coverage detected