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

  /external/v8/src/interpreter/
bytecode-array-random-iterator.h 23 ++current_index_;
28 --current_index_;
34 current_index_ += offset;
40 current_index_ -= offset;
45 int current_index() const { return current_index_; }
50 current_index_ = index;
54 current_index_ = 0;
59 current_index_ = static_cast<int>(offsets_.size() - 1);
67 int current_index_; member in class:v8::internal::interpreter::final
bytecode-array-random-iterator.cc 26 return current_index_ >= 0 &&
27 static_cast<size_t>(current_index_) < offsets_.size();
32 SetOffset(offsets_[current_index_]);
  /external/tensorflow/tensorflow/lite/profiling/
profile_buffer.h 69 : enabled_(enabled), current_index_(0), event_buffer_(max_num_entries) {}
81 int index = current_index_ % event_buffer_.size();
82 if (current_index_ != 0 && index == 0) {
90 current_index_++;
102 event_handle > current_index_) {
106 if (current_index_ > (max_size + event_handle)) {
118 return (current_index_ >= event_buffer_.size()) ? event_buffer_.size()
119 : current_index_;
125 current_index_ = 0;
138 (current_index_ > max_size) ? current_index_ % max_size : max_size
145 uint32_t current_index_; member in class:tflite::tflite::profiling::ProfileBuffer
    [all...]
  /external/webrtc/webrtc/common_audio/resampler/
sinusoidal_linear_chirp_source.cc 27 current_index_(0),
35 for (size_t i = 0; i < frames; ++i, ++current_index_) {
37 if (Frequency(current_index_) > 0.5 * sample_rate_) {
41 if (current_index_ < delay_samples_) {
45 double t = (current_index_ - delay_samples_) / sample_rate_;
sinusoidal_linear_chirp_source.h 47 size_t current_index_; member in class:webrtc::SinusoidalLinearChirpSource
  /external/libchrome/base/containers/
ring_buffer.h 27 RingBuffer() : current_index_(0) {}
31 size_t CurrentIndex() const { return current_index_; }
56 current_index_++;
59 void Clear() { current_index_ = 0; }
102 if (current_index_ < kSize)
103 return Iterator(*this, kSize - current_index_);
114 return (current_index_ + n) % kSize;
122 return buffer_index < current_index_;
126 size_t current_index_; member in class:base::RingBuffer
  /external/v8/src/
bit-vector.cc 33 current_index_++;
36 val = target_->data_.ptr_[current_index_];
37 current_ = current_index_ << kDataBitShift;
string-builder-inl.h 150 return part_length_ - current_index_ > length;
235 : NoExtend<DestChar>(builder->current_part(), builder->current_index_),
241 builder_->current_index_ += NoExtend<DestChar>::written();
271 DCHECK(current_index_ < part_length_);
273 Handle<SeqString>::cast(current_part()), current_index_));
284 int current_index_;
295 ->SeqOneByteStringSet(current_index_++, c);
299 ->SeqTwoByteStringSet(current_index_++, c);
301 if (current_index_ == part_length_) Extend();
string-builder.cc 237 current_index_(0) {
246 return accumulator_->length() + current_index_;
264 DCHECK_EQ(current_index_, current_part()->length());
277 current_index_ = 0;
bit-vector.h 28 current_index_(0),
36 bool Done() const { return current_index_ >= target_->data_length_; }
61 int current_index_; member in class:v8::internal::BitVector::BASE_EMBEDDED
  /external/tensorflow/tensorflow/compiler/jit/
create_xla_launch_op.cc 44 : current_index_(0), values_(values) {}
52 while (current_index_ < values_->size() &&
53 (*values_)[current_index_] <= value) {
54 if ((*values_)[current_index_] == value) {
55 current_index_++;
58 current_index_++;
64 int current_index_; member in class:tensorflow::__anon44055::SinglePassSearch
  /external/tensorflow/tensorflow/core/kernels/data/experimental/
unbatch_dataset_op.cc 89 current_index_(0),
107 if (current_index_ < current_batch_size_) {
114 &tensors_[i], &out_tensors->back(), current_index_));
116 ++current_index_;
120 current_index_ = 0;
173 writer->WriteScalar(full_name("current_index"), current_index_));
176 if (current_index_ < current_batch_size_) {
194 reader->ReadScalar(full_name("current_index"), &current_index_));
199 if (current_index_ < current_batch_size_) {
212 int64 current_index_ GUARDED_BY(mu_)
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
http_request_fake.h 198 EXPECT_EQ(current_index_, requests_->size())
203 EXPECT_LT(current_index_, requests_->size())
205 return (*requests_)[current_index_++];
210 int current_index_ = 0; member in class:tensorflow::FakeHttpRequestFactory

Completed in 3628 milliseconds