Lines Matching refs:bfhead_t
164 } bfhead_t; typedef
165 #define BFH(p) ((bfhead_t *)(p))
168 bfhead_t freelist[MAX_BGET_BINS];
189 bfhead_t *last_pool; /* Last pool owned by this thread (delay deallocation) */
298 bfhead_t *b = BFH(((char *)p) - sizeof(bhead_t)); in __kmp_bget_dequeue()
319 bfhead_t *b = BFH(((char *)buf) - sizeof(bhead_t)); in __kmp_bget_enqueue()
365 static void __kmp_bget_insert_into_freelist(thr_data_t *thr, bfhead_t *b) { in __kmp_bget_insert_into_freelist()
386 static void __kmp_bget_remove_from_freelist(bfhead_t *b) { in __kmp_bget_remove_from_freelist()
402 bfhead_t *b, *best; in bcheck()
428 bfhead_t *b; in bget()
433 bfhead_t *best; in bget()
703 bfhead_t *b, *bn; in brel()
817 (void)memset(((char *)b) + sizeof(bfhead_t), 0x55, in brel()
818 (size_t)(b->bh.bb.bsize - sizeof(bfhead_t))); in brel()
880 bfhead_t *b = BFH(buf); in bpool()
927 (void)memset(((char *)b) + sizeof(bfhead_t), 0x55, in bpool()
928 (size_t)(len - sizeof(bfhead_t))); in bpool()
957 bfhead_t *b; in bfreed()
974 char *lerr = ((char *)b) + sizeof(bfhead_t); in bfreed()
975 if ((bs > sizeof(bfhead_t)) && in bfreed()
977 (memcmp(lerr, lerr + 1, (size_t)(bs - (sizeof(bfhead_t) + 1))) != in bfreed()
1003 bfhead_t *b; in __kmp_finalize_bget()
2117 bfhead_t *b = thr->freelist[bin].ql.flink; in __kmp_free_fast_memory()