| 2763 | } |
| 2764 | |
| 2765 | static size_t |
| 2766 | ixallocx_prof_sample(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
| 2767 | size_t extra, size_t alignment, bool zero, prof_tctx_t *tctx) { |
| 2768 | size_t usize; |
| 2769 | |
| 2770 | if (tctx == NULL) { |
| 2771 | return old_usize; |
| 2772 | } |
| 2773 | usize = ixallocx_helper(tsdn, ptr, old_usize, size, extra, alignment, |
| 2774 | zero); |
| 2775 | |
| 2776 | return usize; |
| 2777 | } |
| 2778 | |
| 2779 | JEMALLOC_ALWAYS_INLINE size_t |
| 2780 | ixallocx_prof(tsd_t *tsd, void *ptr, size_t old_usize, size_t size, |
no test coverage detected