HomeSort by relevance Sort by last modified time
    Searched refs:index_ (Results 1 - 25 of 215) sorted by null

1 2 3 4 5 6 7 8 9

  /art/runtime/
dex_file_types.h 28 uint32_t index_; member in class:art::dex::StringIndex
30 constexpr StringIndex() : index_(std::numeric_limits<decltype(index_)>::max()) {}
31 explicit constexpr StringIndex(uint32_t idx) : index_(idx) {}
34 return index_ != std::numeric_limits<decltype(index_)>::max();
37 return StringIndex(std::numeric_limits<decltype(index_)>::max());
41 return index_ == other.index_;
44 return index_ != other.index_
63 uint16_t index_; member in class:art::dex::TypeIndex
    [all...]
bytecode_utils.h 139 index_(0u) {}
141 bool Done() const { return index_ >= num_entries_; }
142 bool IsLast() const { return index_ == num_entries_ - 1; }
146 index_++;
150 return table_.IsSparse() ? table_.GetEntryAt(index_) : table_.GetEntryAt(0) + index_;
154 return table_.GetEntryAt(index_ + first_target_offset_);
157 uint32_t GetDexPcForCurrentIndex() const { return table_.GetDexPcForIndex(index_); }
164 size_t index_; member in class:art::DexSwitchTableIterator
  /external/webrtc/webrtc/modules/audio_processing/vad/
vad_circular_buffer.cc 21 index_(0),
31 index_ = 0;
45 return buffer_[index_];
53 if (index_ > 0)
54 m = sum_ / index_;
63 sum_ -= buffer_[index_];
66 buffer_[index_] = value;
67 index_++;
68 if (index_ >= buffer_size_) {
70 index_ = 0
    [all...]
standalone_vad.cc 24 : vad_(vad), buffer_(), index_(0), mode_(kDefaultStandaloneVadMode) {
49 if (index_ + length > kLength10Ms * kMaxNum10msFrames)
53 index_ = 0;
55 memcpy(&buffer_[index_], data, sizeof(int16_t) * length);
56 index_ += length;
61 if (index_ == 0)
64 const size_t num_frames = index_ / kLength10Ms;
67 assert(WebRtcVad_ValidRateAndFrameLength(kSampleRateHz, index_) == 0);
69 int activity = WebRtcVad_Process(vad_, kSampleRateHz, buffer_, index_);
79 index_ = 0
    [all...]
standalone_vad.h 64 size_t index_; member in class:webrtc::StandaloneVad
vad_circular_buffer.h 63 int index_; member in class:webrtc::VadCircularBuffer
  /system/core/libunwindstack/
ElfInterfaceArm.h 36 iterator(ElfInterfaceArm* interface, size_t index) : interface_(interface), index_(index) { }
38 iterator& operator++() { index_++; return *this; }
39 iterator& operator++(int increment) { index_ += increment; return *this; }
40 iterator& operator--() { index_--; return *this; }
41 iterator& operator--(int decrement) { index_ -= decrement; return *this; }
43 bool operator==(const iterator& rhs) { return this->index_ == rhs.index_; }
44 bool operator!=(const iterator& rhs) { return this->index_ != rhs.index_; }
47 uint32_t addr = interface_->addrs_[index_];
59 size_t index_ = 0; member in class:ElfInterfaceArm::iterator
    [all...]
  /external/google-breakpad/src/processor/
static_map_iterator-inl.h 47 index_(index), base_(base) {
64 if (++index_ > num_nodes_) index_ = num_nodes_;
76 if (++index_ > num_nodes_) index_ = num_nodes_;
88 if (--index_ < 0) index_ = 0;
101 if (--index_ < 0) index_ = 0;
111 return &(keys_[index_]);
    [all...]
static_map_iterator.h 55 StaticMapIterator(): index_(-1), base_(NULL) { }
93 int32_t index_; member in class:google_breakpad::StaticMapIterator
  /external/v8/src/
collector.h 28 : index_(0), size_(0) {
42 if (index_ >= current_chunk_.length()) {
45 current_chunk_[index_] = value;
46 index_++;
56 if (size > current_chunk_.length() - index_) {
59 T* position = current_chunk_.start() + index_;
60 index_ += size;
73 if (source.length() > current_chunk_.length() - index_) {
76 T* position = current_chunk_.start() + index_;
77 index_ += source.length()
129 int index_; \/\/ Current index in current chunk. member in class:v8::internal::Collector
    [all...]
dateparser.h 53 : index_(0),
59 int position() { return index_; }
63 ch_ = (index_ < buffer_.length()) ? buffer_[index_] : 0;
64 index_++;
116 int index_; member in class:v8::internal::DateParser::BASE_EMBEDDED
296 TimeComposer() : index_(0), hour_offset_(kNone) {}
297 bool IsEmpty() const { return index_ == 0; }
299 return (index_ == 1 && IsMinute(n)) ||
300 (index_ == 2 && IsSecond(n)) |
    [all...]
dateparser.cc 14 if (index_ < 1) return false;
16 while (index_ < kSize) {
17 comp_[index_++] = 1;
25 if (is_iso_date_ || (index_ == 3 && !IsDay(comp_[0]))) {
34 if (index_ == 3) year = comp_[2];
38 if (index_ == 1) {
68 while (index_ < kSize) {
69 comp_[index_++] = 0;
  /external/webrtc/webrtc/base/
window.h 92 DesktopId() : id_(0), index_(-1) {}
94 : id_(id), index_(index) {
97 int index() const { return index_; }
98 bool IsValid() const { return index_ != -1; }
100 return id_ == other.id() && index_ == other.index();
108 int index_; member in class:rtc::DesktopId
  /system/update_engine/payload_generator/
tarjan.h 35 TarjanAlgorithm() : index_(0), required_vertex_(0) {}
44 Vertex::Index index_; member in class:chromeos_update_engine::TarjanAlgorithm
tarjan.cc 39 index_ = 0;
51 (*graph)[vertex].index = index_;
52 (*graph)[vertex].lowlink = index_;
53 index_++;
  /external/libchrome/base/containers/
mru_cache.h 89 typename KeyIndex::iterator index_iter = index_.find(key);
90 if (index_iter != index_.end()) {
101 index_.insert(std::make_pair(key, ordering_.begin()));
111 typename KeyIndex::iterator index_iter = index_.find(key);
112 if (index_iter == index_.end())
124 typename KeyIndex::const_iterator index_iter = index_.find(key);
125 if (index_iter == index_.end())
131 typename KeyIndex::const_iterator index_iter = index_.find(key);
132 if (index_iter == index_.end())
140 index_.swap(other.index_)
201 KeyIndex index_; member in class:base::MRUCacheBase
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
basic_resolver_iterator.hpp 65 : index_(0)
182 if (++index_ == values_->size())
186 index_ = 0;
196 return index_ == other.index_;
201 return (*values_)[index_];
206 std::size_t index_; member in class:asio::ip::basic_resolver_iterator
  /system/tools/aidl/
generate_java.cpp 40 index_(0) {
45 type, StringPrintf("%s%d", base_.c_str(), index_));
47 index_++;
  /external/v8/src/interpreter/
bytecode-register.h 21 explicit Register(int index = kInvalidIndex) : index_(index) {}
23 int index() const { return index_; }
25 bool is_valid() const { return index_ != kInvalidIndex; }
60 int32_t ToOperand() const { return kRegisterFileStartOffset - index_; }
99 int index_; member in class:v8::internal::interpreter::final
  /external/libchrome/base/metrics/
sample_vector.cc 134 index_(0) {
146 index_(0) {
154 return index_ >= counts_size_;
159 index_++;
168 *min = bucket_ranges_->range(index_);
170 *max = bucket_ranges_->range(index_ + 1);
172 *count = subtle::NoBarrier_Load(&counts_[index_]);
178 *index = index_;
186 while (index_ < counts_size_) {
187 if (subtle::NoBarrier_Load(&counts_[index_]) != 0
    [all...]
  /external/google-breakpad/src/tools/mac/dump_syms/
macho_dump.cc 75 DumpSection() : index_(0) { }
82 index_++, section.section_name.c_str(), section.segment_name.c_str(),
90 int index_; member in class:__anon19605::DumpSection
95 DumpCommand(mach_o::Reader *reader) : reader_(reader), index_(0) { }
98 printf(" load command %d: %d", index_++, type);
109 index_++, (segment.bits_64 ? "64" : "32"), segment.name.c_str(),
119 int index_; member in class:__anon19605::DumpCommand
  /external/libchrome/base/
observer_list.h 93 size_t index_; member in class:base::ObserverListBase::Iterator
136 index_(0),
155 while (index_ < max_index && !observers[index_])
156 ++index_;
157 return index_ < max_index ? observers[index_++] : nullptr;
  /external/libcxx/test/support/
test_iterators.h 345 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
347 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
349 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
354 if (index_ == 0)
362 --index_;
368 index_ = rhs.index_;
377 if (index_ == 0)
384 --index_;
461 mutable size_t index_; member in struct:ThrowingIterator
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
test_iterators.h 342 : begin_(nullptr), end_(nullptr), current_(nullptr), action_(TADereference), index_(0) {}
344 : begin_(first), end_(last), current_(first), action_(action), index_(index) {}
346 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_), action_(rhs.action_), index_(rhs.index_) {}
351 if (index_ == 0)
359 --index_;
365 index_ = rhs.index_;
374 if (index_ == 0)
381 --index_;
458 mutable size_t index_; member in struct:ThrowingIterator
    [all...]
  /external/libchrome/base/trace_event/
heap_profiler_allocation_register.cc 17 index_(index) {}
20 index_ = register_.allocations_.Next(index_ + 1);
25 return index_ != other.index_;
30 return register_.GetAllocation(index_);

Completed in 1756 milliseconds

1 2 3 4 5 6 7 8 9