| 3322 | } |
| 3323 | |
| 3324 | static size_t |
| 3325 | ixallocx_prof_sample(tsdn_t *tsdn, void *ptr, size_t old_usize, size_t size, |
| 3326 | size_t extra, size_t alignment, bool zero, prof_tctx_t *tctx) { |
| 3327 | size_t usize; |
| 3328 | |
| 3329 | if (tctx == NULL) { |
| 3330 | return old_usize; |
| 3331 | } |
| 3332 | usize = ixallocx_helper(tsdn, ptr, old_usize, size, extra, alignment, |
| 3333 | zero); |
| 3334 | |
| 3335 | return usize; |
| 3336 | } |
| 3337 | |
| 3338 | JEMALLOC_ALWAYS_INLINE size_t |
| 3339 | ixallocx_prof(tsd_t *tsd, void *ptr, size_t old_usize, size_t size, |
no test coverage detected