Searched defs:bounded_buffer (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/libs/thread/tutorial/ |
D | bounded_buffer.cpp | 13 class bounded_buffer : private boost::noncopyable class 17 bounded_buffer(int n) : begin(0), end(0), buffered(0), circular_buf(n) { } in bounded_buffer() function in bounded_buffer
|
/third_party/boost/libs/thread/example/ |
D | condition.cpp | 14 class bounded_buffer : private boost::noncopyable class 19 bounded_buffer(int n) : boost::noncopyable(), begin(0), end(0), buffered(0), circular_buf(n) { } in bounded_buffer() function in bounded_buffer
|
/third_party/boost/libs/circular_buffer/example/ |
D | circular_buffer_bound_example.cpp | 25 class bounded_buffer class 34 explicit bounded_buffer(size_type capacity) : m_unread(0), m_container(capacity) {} in bounded_buffer() function in bounded_buffer
|
D | bounded_buffer_comparison.cpp | 26 class bounded_buffer { class 34 explicit bounded_buffer(size_type capacity) : m_unread(0), m_container(capacity) {} in bounded_buffer() function in bounded_buffer
|
/third_party/boost/libs/circular_buffer/test/ |
D | bounded_buffer_comparison.cpp | 26 class bounded_buffer { class 34 explicit bounded_buffer(size_type capacity) : m_unread(0), m_container(capacity) {} in bounded_buffer() function in bounded_buffer
|