Lines Matching refs:tsdn
29 tsdn_t *tsdn; in TEST_BEGIN() local
33 tsdn = tsdn_fetch(); in TEST_BEGIN()
34 base = base_new(tsdn, 0, (extent_hooks_t *)&extent_hooks_default); in TEST_BEGIN()
37 base_stats_get(tsdn, base, &allocated0, &resident, &mapped); in TEST_BEGIN()
42 assert_ptr_not_null(base_alloc(tsdn, base, 42, 1), in TEST_BEGIN()
46 base_stats_get(tsdn, base, &allocated1, &resident, &mapped); in TEST_BEGIN()
58 tsdn_t *tsdn; in TEST_BEGIN() local
70 tsdn = tsdn_fetch(); in TEST_BEGIN()
71 base = base_new(tsdn, 0, &hooks); in TEST_BEGIN()
75 base_stats_get(tsdn, base, &allocated0, &resident, &mapped); in TEST_BEGIN()
80 assert_ptr_not_null(base_alloc(tsdn, base, 42, 1), in TEST_BEGIN()
84 base_stats_get(tsdn, base, &allocated1, &resident, &mapped); in TEST_BEGIN()
98 tsdn_t *tsdn; in TEST_BEGIN() local
110 tsdn = tsdn_fetch(); in TEST_BEGIN()
112 base = base_new(tsdn, 0, &hooks); in TEST_BEGIN()
134 p = base_alloc(tsdn, base, 1, alignment); in TEST_BEGIN()
140 q = base_alloc(tsdn, base, alignment, alignment); in TEST_BEGIN()
146 r = base_alloc(tsdn, base, 1, alignment); in TEST_BEGIN()
164 p = base_alloc(tsdn, base, QUANTUM, QUANTUM); in TEST_BEGIN()
169 q = base_alloc(tsdn, base, QUANTUM + 1, QUANTUM); in TEST_BEGIN()
173 r = base_alloc(tsdn, base, QUANTUM, QUANTUM); in TEST_BEGIN()
190 p = base_alloc(tsdn, base, QUANTUM, alignment); in TEST_BEGIN()