Searched refs:total_entry_count_ (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.cc21 total_entry_count_(0),
62 total_entry_count_ - put_ - (curr_get == 0 ? 1 : 0);
68 total_entry_count_ /
72 (put_ + total_entry_count_ - last_put_sent_) % total_entry_count_;
109 total_entry_count_ = ring_buffer_size_ / sizeof(CommandBufferEntry);
150 if (put_ == total_entry_count_)
247 DCHECK(count < total_entry_count_); argument
248 if (put_ + count > total_entry_count_) {
265 int32 num_entries = total_entry_count_
[all...]
H A Dcmd_buffer_helper.h134 DCHECK_LE(put_, total_entry_count_);
295 return (get_offset() - put_ - 1 + total_entry_count_) % total_entry_count_;
316 int32 total_entry_count_; // the total number of entries member in class:gpu::CommandBufferHelper

Completed in 376 milliseconds