HomeSort by relevance Sort by last modified time
    Searched refs:immediate_entry_count_ (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/gpu/command_buffer/client/
cmd_buffer_helper.cc 21 immediate_entry_count_(0),
52 immediate_entry_count_ = 0;
59 immediate_entry_count_ = curr_get - put_ - 1;
61 immediate_entry_count_ =
76 immediate_entry_count_ = 0;
82 immediate_entry_count_ =
83 immediate_entry_count_ > limit ? limit : immediate_entry_count_;
275 if (immediate_entry_count_ < count) {
279 if (immediate_entry_count_ < count)
    [all...]
cmd_buffer_helper.h 119 if (entries > immediate_entry_count_) {
121 if (entries > immediate_entry_count_)
125 DCHECK_LE(entries, immediate_entry_count_);
130 immediate_entry_count_ -= entries;
315 int32 immediate_entry_count_; member in class:gpu::CommandBufferHelper
cmd_buffer_helper_test.cc 128 int32 ImmediateEntryCount() const { return helper_->immediate_entry_count_; }
272 // Checks immediate_entry_count_ changes based on 'usable' state.
282 // Checks immediate_entry_count_ changes based on RingBuffer state.
290 // Checks immediate_entry_count_ calc when Put >= Get and Get == 0.
314 // Checks immediate_entry_count_ calc when Put >= Get and Get > 0.
340 // Checks immediate_entry_count_ calc when Put < Get.
371 // Checks immediate_entry_count_ calc when automatic flushing is enabled.
402 // Checks immediate_entry_count_ calc when automatic flushing is enabled, and
403 // we allocate commands over the immediate_entry_count_ size.

Completed in 53 milliseconds