Home | History | Annotate | Download | only in unit

Lines Matching defs:edata

7 	edata_t *edata = emap_edata_lookup(TSDN_NULL, &arena_emap_global, ptr);
8 assert_ptr_not_null(edata, "Unable to find edata for allocation");
9 expect_false(edata_slab_get(edata),
11 expect_ptr_eq(edata_base_get(edata), ptr,
13 expect_zu_eq(edata_usize_get(edata), size,
14 "Edata usize did not match requested size");
15 expect_zu_eq(edata_size_get(edata), PAGE_CEILING(size) + sz_large_pad,
16 "Edata actual size was not a multiple of PAGE");
17 prof_tctx_t *prof_tctx = edata_prof_tctx_get(edata);
18 expect_ptr_not_null(prof_tctx, "Edata had null prof_tctx");
20 "Edata had null prof_tdata despite being sampled");