Lines Matching refs:my_first_block
64 , my_first_block{}, my_size{}, my_segment_table_allocation_failed{} in my_segment_table_allocator()
73 … , my_segment_table(nullptr), my_first_block{}, my_size{}, my_segment_table_allocation_failed{} in segment_table()
86 , my_first_block{}, my_size{}, my_segment_table_allocation_failed{} in segment_table()
99 , my_first_block{}, my_size{}, my_segment_table_allocation_failed{} in segment_table()
107 : my_segment_table_allocator(alloc), my_segment_table(nullptr), my_first_block{} in segment_table()
250 my_first_block.store(0, std::memory_order_relaxed); in clear()
348 assign_first_block_if_necessary(other.my_first_block.load(std::memory_order_relaxed)); in internal_transfer()
378 …my_first_block.store(other.my_first_block.load(std::memory_order_relaxed), std::memory_order_relax… in internal_move()
488 auto first_block = other.my_first_block.load(std::memory_order_relaxed); in internal_swap_fields()
489 …other.my_first_block.store(my_first_block.load(std::memory_order_relaxed), std::memory_order_relax… in internal_swap_fields()
490 my_first_block.store(first_block, std::memory_order_relaxed); in internal_swap_fields()
532 if (this->my_first_block.load(std::memory_order_relaxed) == zero) { in assign_first_block_if_necessary()
533 this->my_first_block.compare_exchange_strong(zero, index); in assign_first_block_if_necessary()
551 std::atomic<size_type> my_first_block; variable