Home
last modified time | relevance | path

Searched refs:bytes_until_wrap (Results 1 – 1 of 1) sorted by relevance

/external/pigweed/pw_ring_buffer/
Dprefixed_entry_ring_buffer.cc190 size_t bytes_until_wrap = buffer_bytes_ - data_read_idx; in InternalRead() local
191 size_t bytes_to_copy = std::min(read_bytes, bytes_until_wrap); in InternalRead()
384 size_t bytes_until_wrap = buffer_bytes_ - write_idx_; in RawWrite() local
385 size_t bytes_to_copy = std::min(source.size(), bytes_until_wrap); in RawWrite()
400 size_t bytes_until_wrap = buffer_bytes_ - source_idx; in RawRead() local
401 size_t bytes_to_copy = std::min(length_bytes, bytes_until_wrap); in RawRead()