Home | History | Annotate | Download | only in internal

Lines Matching defs:slab

23 		if (unlikely(!alloc_ctx->slab)) {
43 if (unlikely(!alloc_ctx->slab)) {
152 /* Only slab members should be looked up via interior pointers. */
168 bool slab;
170 true, &szind, &slab);
177 assert(slab == extent_slab_get(extent));
180 if (likely(slab)) {
201 bool slab;
205 slab = alloc_ctx->slab;
210 (uintptr_t)ptr, true, &szind, &slab);
219 assert(slab == extent_slab_get(extent));
222 if (likely(slab)) {
248 bool slab;
252 * object, so base szind and slab on the given size.
255 slab = (szind < NBINS);
264 (uintptr_t)ptr, true, &szind, &slab);
267 assert((config_prof && opt_prof) || slab == (szind < NBINS));
273 assert(slab == extent_slab_get(extent));
277 if (likely(slab)) {
299 bool slab;
309 &local_ctx.slab);
313 slab = alloc_ctx->slab;
318 * object, so base szind and slab on the given size.
321 slab = (szind < NBINS);
327 (uintptr_t)ptr, true, &szind, &slab);
331 assert(slab == extent_slab_get(extent));
334 if (likely(slab)) {