| 2750 | } |
| 2751 | |
| 2752 | JEMALLOC_ALWAYS_INLINE size_t |
| 2753 | ixallocx_helper(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
| 2754 | size_t extra, size_t alignment, bool zero) { |
| 2755 | size_t usize; |
| 2756 | |
| 2757 | if (ixalloc(tsdn, ptr, old_usize, size, extra, alignment, zero)) { |
| 2758 | return old_usize; |
| 2759 | } |
| 2760 | usize = isalloc(tsdn, ptr); |
| 2761 | |
| 2762 | return usize; |
| 2763 | } |
| 2764 | |
| 2765 | static size_t |
| 2766 | ixallocx_prof_sample(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
no test coverage detected