Home
last modified time | relevance | path

Searched refs:slabp (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/kern/
H A Dkern_kmalloc.c183 slabp = &slab->next; in gslab_cache()
194 slabp = &next->next; in gslab_cache()
202 *slabp = NULL; in gslab_cache()
329 slabp = &dst->empty; in malloc_mgt_relocate()
331 while (*slabp) { in malloc_mgt_relocate()
332 slabp = &(*slabp)->next; in malloc_mgt_relocate()
372 if (*slabp == NULL) in malloc_slab_destroy()
395 slabp = &slab->next; in malloc_slab_destroy()
553 slabp = &ggm->full; in malloc_mgt_poll()
578 *slabp = slab->next; in malloc_mgt_poll()
[all …]
/dragonfly/lib/libc/stdlib/
H A Ddmalloc.c1009 slab_t *slabp; in memfree() local
1119 slabp = &zinfo->avail_base; in memfree()
1120 while ((stmp = *slabp) != slab) in memfree()
1121 slabp = &stmp->next; in memfree()
1122 *slabp = slab->next; in memfree()
1181 slabp = &zinfo->avail_base; in memfree()
1182 while (slab != *slabp) in memfree()
1183 slabp = &(*slabp)->next; in memfree()
1184 *slabp = slab->next; in memfree()