Home | History | Annotate | Download | only in internal

Lines Matching defs:prof_info

66     prof_info_t *prof_info) {
69 assert(prof_info != NULL);
71 arena_prof_info_get(tsd, ptr, alloc_ctx, prof_info, false);
76 emap_alloc_ctx_t *alloc_ctx, prof_info_t *prof_info) {
79 assert(prof_info != NULL);
81 arena_prof_info_get(tsd, ptr, alloc_ctx, prof_info, true);
202 prof_info_t prof_info;
203 prof_info_get(tsd, ptr, NULL, &prof_info);
204 assert((uintptr_t)prof_info.alloc_tctx == (uintptr_t)1U);
237 prof_info_t prof_info;
238 prof_info_get(tsd, ptr, NULL, &prof_info);
239 bool sampled = (uintptr_t)prof_info.alloc_tctx > (uintptr_t)1U;
249 prof_info_t prof_info;
250 prof_info_get_and_reset_recent(tsd, ptr, alloc_ctx, &prof_info);
255 if (unlikely((uintptr_t)prof_info.alloc_tctx > (uintptr_t)1U)) {
257 prof_free_sampled_object(tsd, usize, &prof_info);