Lines Matching refs:bfhead_t
178 } bfhead_t; typedef
179 #define BFH(p) ((bfhead_t *)(p))
182 bfhead_t freelist[MAX_BGET_BINS];
203 bfhead_t *last_pool; /* Last pool owned by this thread (delay deallocation) */
312 bfhead_t *b = BFH(((char *)p) - sizeof(bhead_t)); in __kmp_bget_dequeue()
333 bfhead_t *b = BFH(((char *)buf) - sizeof(bhead_t)); in __kmp_bget_enqueue()
379 static void __kmp_bget_insert_into_freelist(thr_data_t *thr, bfhead_t *b) { in __kmp_bget_insert_into_freelist()
400 static void __kmp_bget_remove_from_freelist(bfhead_t *b) { in __kmp_bget_remove_from_freelist()
416 bfhead_t *b, *best; in bcheck()
442 bfhead_t *b; in bget()
447 bfhead_t *best; in bget()
717 bfhead_t *b, *bn; in brel()
831 (void)memset(((char *)b) + sizeof(bfhead_t), 0x55, in brel()
832 (size_t)(b->bh.bb.bsize - sizeof(bfhead_t))); in brel()
894 bfhead_t *b = BFH(buf); in bpool()
941 (void)memset(((char *)b) + sizeof(bfhead_t), 0x55, in bpool()
942 (size_t)(len - sizeof(bfhead_t))); in bpool()
971 bfhead_t *b; in bfreed()
988 char *lerr = ((char *)b) + sizeof(bfhead_t); in bfreed()
989 if ((bs > sizeof(bfhead_t)) && in bfreed()
991 (memcmp(lerr, lerr + 1, (size_t)(bs - (sizeof(bfhead_t) + 1))) != in bfreed()
1017 bfhead_t *b; in __kmp_finalize_bget()
2786 bfhead_t *b = thr->freelist[bin].ql.flink; in __kmp_free_fast_memory()