Home | History | Annotate | Download | only in ext

Lines Matching refs:__thread_id

223       _M_reserve_block(size_t __bytes, const size_t __thread_id);
334 _M_reserve_block(size_t __bytes, const size_t __thread_id);
345 size_t __thread_id)
349 __block->_M_thread_id = __thread_id;
350 --__bin._M_free[__thread_id];
351 ++__bin._M_used[__thread_id];
696 const size_t __thread_id = __pool._M_get_thread_id();
703 if (__bin._M_first[__thread_id])
707 _Block_record* __block = __bin._M_first[__thread_id];
708 __bin._M_first[__thread_id] = __block->_M_next;
710 __pool._M_adjust_freelist(__bin, __block, __thread_id);
716 __c = __pool._M_reserve_block(__bytes, __thread_id);