Searched refs:is_not_full (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/libs/circular_buffer/test/ |
D | bounded_buffer_comparison.cpp | 38 m_not_full.wait(lock, boost::bind(&bounded_buffer<value_type>::is_not_full, this)); in push_front() 58 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer 80 …m_not_full.wait(lock, boost::bind(&bounded_buffer_space_optimized<value_type>::is_not_full, this)); in push_front() 101 bool is_not_full() const { return m_container.size() < m_container.capacity(); } in is_not_full() function in bounded_buffer_space_optimized 122 … m_not_full.wait(lock, boost::bind(&bounded_buffer_deque_based<value_type>::is_not_full, this)); in push_front() 143 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_deque_based 165 … m_not_full.wait(lock, boost::bind(&bounded_buffer_list_based<value_type>::is_not_full, this)); in push_front() 186 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_list_based
|
/third_party/boost/libs/circular_buffer/example/ |
D | bounded_buffer_comparison.cpp | 38 m_not_full.wait(lock, boost::bind(&bounded_buffer<value_type>::is_not_full, this)); in push_front() 58 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer 80 …m_not_full.wait(lock, boost::bind(&bounded_buffer_space_optimized<value_type>::is_not_full, this)); in push_front() 101 bool is_not_full() const { return m_container.size() < m_container.capacity(); } in is_not_full() function in bounded_buffer_space_optimized 122 … m_not_full.wait(lock, boost::bind(&bounded_buffer_deque_based<value_type>::is_not_full, this)); in push_front() 143 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_deque_based 165 … m_not_full.wait(lock, boost::bind(&bounded_buffer_list_based<value_type>::is_not_full, this)); in push_front() 186 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_list_based
|
D | circular_buffer_bound_example.cpp | 40 m_not_full.wait(lock, boost::bind(&bounded_buffer<value_type>::is_not_full, this)); in push_front() 60 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer
|