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

  /external/v8/src/
data-flow.cc 56 current_index_++;
58 val = target_->data_[current_index_];
59 current_ = current_index_ << 5;
data-flow.h 48 current_index_(0),
56 bool Done() const { return current_index_ >= target_->data_length_; }
81 int current_index_; member in class:v8::internal::BitVector::BASE_EMBEDDED
log.cc 61 int current_index_; member in class:v8::internal::SlidingStateWindow
240 : counters_(isolate->counters()), current_index_(0), is_full_(false) {
255 DecrementStateCounter(static_cast<StateTag>(buffer_[current_index_]));
256 } else if (current_index_ == kBufferSize - 1) {
259 buffer_[current_index_] = static_cast<byte>(state);
262 current_index_ = (current_index_ + 1) & (kBufferSize - 1);
    [all...]
  /sdk/emulator/qtools/
hash_table.h 37 int current_index_; member in class:HashTable
59 current_index_ = 0;
169 for (current_index_ = 0; current_index_ < size_; ++current_index_) {
170 if (table_[current_index_])
175 if (current_index_ == size_)
179 current_ptr_ = table_[current_index_];
196 current_index_ += 1;
200 for (; current_index_ < size_; ++current_index_)
    [all...]

Completed in 557 milliseconds