Searched defs:trailing_byte_count (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chromecast/media/cma/ipc/
H A Dmedia_message_fifo.cc171 // trailing_byte_count < size_to_reserve
173 // we also have trailing_byte_count <= free_size
175 size_t trailing_byte_count = size_ - wr_offset; local
176 if (trailing_byte_count < MediaMessage::minimum_msg_size()) {
180 if (free_size < trailing_byte_count)
185 } else if (trailing_byte_count < size_to_reserve) {
189 ReserveMemoryNoCheck(trailing_byte_count));
215 size_t trailing_byte_count = size_ - rd_offset;
216 if (trailing_byte_count < MediaMessage::minimum_msg_size()) {
220 // trailing_byte_count < MediaMessag
[all...]

Completed in 89 milliseconds