Home
last modified time | relevance | path

Searched defs:is_not_full (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/circular_buffer/test/
Dbounded_buffer_comparison.cpp58 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer
101 bool is_not_full() const { return m_container.size() < m_container.capacity(); } in is_not_full() function in bounded_buffer_space_optimized
143 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_deque_based
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/
Dbounded_buffer_comparison.cpp58 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer
101 bool is_not_full() const { return m_container.size() < m_container.capacity(); } in is_not_full() function in bounded_buffer_space_optimized
143 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_deque_based
186 bool is_not_full() const { return m_container.size() < m_capacity; } in is_not_full() function in bounded_buffer_list_based
Dcircular_buffer_bound_example.cpp60 bool is_not_full() const { return m_unread < m_container.capacity(); } in is_not_full() function in bounded_buffer