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

1 2 3 4

  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 29 , begin_()
35 if (begin_)
36 internal_free(begin_);
40 if (begin_)
41 internal_free(begin_);
42 begin_ = 0;
48 return end_ - begin_;
52 DCHECK_LT(i, end_ - begin_);
53 return begin_[i];
57 DCHECK_LT(i, end_ - begin_);
95 T *begin_; member in class:__tsan::Vector
    [all...]
  /external/libchrome/base/timer/
elapsed_timer.cc 10 begin_ = TimeTicks::Now();
14 return TimeTicks::Now() - begin_;
elapsed_timer.h 23 TimeTicks begin_; member in class:base::ElapsedTimer
  /tools/dexter/slicer/export/slicer/
arrayview.h 34 ArrayView(T* ptr, size_t count) : begin_(ptr), end_(ptr + count) {}
36 T* begin() const { return begin_; }
39 T* data() const { return begin_; }
43 return *(begin_ + i);
46 size_t size() const { return end_ - begin_; }
47 bool empty() const { return begin_ == end_; }
50 T* begin_ = nullptr;
intrusive_list.h 91 if (pos == begin_) {
93 begin_ = p;
119 assert(pos != begin_);
122 assert(pos == begin_);
123 begin_ = pos->next;
131 bool empty() const { return begin_ == end_; }
133 Iterator begin() const { return Iterator(begin_); }
137 T* begin_ = &end_sentinel_; member in class:slicer::IntrusiveList
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
string_piece.h 37 string_piece(const char* begin, const char* end) : begin_(begin), end_(end) {
42 string_piece(const char* string) : begin_(string), end_(string) {
50 begin_ = &(str.front());
56 begin_ = other.begin_;
62 begin_ = nullptr;
68 const char* data() const { return begin_; }
71 std::string str() const { return std::string(begin_, end_); }
76 return string_piece(begin_ + pos, len == npos ? end_ : begin_ + pos + len)
319 string_piece::iterator begin_ = nullptr; member in class:shaderc_util::string_piece
    [all...]
  /art/runtime/gc/collector/
immune_region.h 48 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_;
52 begin_ = begin;
62 return begin_;
75 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
78 mirror::Object* begin_; member in class:art::gc::collector::ImmuneRegion
  /external/v8/src/base/
iterator.h 28 iterator_range() : begin_(), end_() {}
31 : begin_(begin), end_(end) {}
33 iterator begin() { return begin_; }
35 const_iterator begin() const { return begin_; }
37 const_iterator cbegin() const { return begin_; }
47 const_iterator const begin_; member in class:v8::base::iterator_range
  /external/libchrome/base/trace_event/
category_registry.h 32 Range(TraceCategory* begin, TraceCategory* end) : begin_(begin), end_(end) {
35 TraceCategory* begin() const { return begin_; }
39 TraceCategory* const begin_; member in class:base::trace_event::CategoryRegistry::Range
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorystream.h 37 MemoryStream(const Ch *src, size_t size) : src_(src), begin_(src), end_(src + size), size_(size) {}
41 size_t Tell() const { return static_cast<size_t>(src_ - begin_); }
54 const Ch* begin_; //!< Original head of the string. member in struct:MemoryStream
  /art/runtime/gc/accounting/
atomic_stack.h 76 DCHECK(begin_ != nullptr);
113 *start_address = begin_ + index;
114 *end_address = begin_ + new_index;
118 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr))
128 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr)) << "i=" << i;
140 begin_[index].Assign(value);
147 return begin_[back_index_.LoadRelaxed()].AsMirrorPtr();
155 return begin_[index];
178 return begin_ + front_index_.LoadRelaxed();
181 return begin_ + back_index_.LoadRelaxed()
271 StackReference<T>* begin_; member in class:art::gc::accounting::AtomicStack
    [all...]
  /bionic/linker/
linker_reloc_iterators.h 48 : begin_(rel_array), end_(begin_ + count), current_(begin_) {}
58 rel_t* const begin_; member in class:plain_reloc_iterator
  /art/cmdline/
token_range.h 44 begin_(token_list_->begin()),
52 begin_(token_list_->begin()),
62 begin_(token_list_->begin()),
72 begin_(token_list_->begin()),
79 begin_(token_list_->begin()),
88 begin_(it_begin),
103 begin_(token_list_->begin()),
147 return begin_;
157 return std::distance(begin_, end_);
168 return *(begin_ + offset)
422 const iterator begin_; member in struct:art::TokenRange
    [all...]
  /art/runtime/
oat_file-inl.h 39 return reinterpret_cast<const uint8_t*>(method_header) - begin_;
47 return reinterpret_cast<const uint8_t*>(method_header->GetCodeSizeAddr()) - begin_;
76 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u);
84 return reinterpret_cast<const uint8_t*>(method_header->GetVmapTableOffsetAddr()) - begin_;
  /frameworks/base/libs/androidfw/include/androidfw/
AttributeFinder.h 68 Iterator begin_; member in class:android::BackTrackingAttributeFinder
87 begin_(begin),
148 if (!(begin_ < end_)) {
157 current_attr_ = static_cast<const Derived*>(this)->GetAttribute(begin_);
  /external/jsoncpp/src/lib_json/
json_reader.cpp 80 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
85 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
118 begin_ = beginDoc;
121 current_ = begin_;
172 currentValue().setOffsetLimit(current_ - begin_);
176 currentValue().setOffsetLimit(current_ - begin_);
186 currentValue().setOffsetStart(token.start_ - begin_);
187 currentValue().setOffsetLimit(token.end_ - begin_);
191 currentValue().setOffsetStart(token.start_ - begin_);
192 currentValue().setOffsetLimit(token.end_ - begin_);
    [all...]
  /external/tensorflow/tensorflow/contrib/coder/kernels/
range_coder.h 102 const string::const_iterator begin_; member in class:tensorflow::RangeDecoder
  /external/libtextclassifier/
types.h 287 VectorSpan() : begin_(), end_() {}
289 : begin_(v.begin()), end_(v.end()) {}
292 : begin_(begin), end_(end) {}
295 return *(begin_ + i);
298 int size() const { return end_ - begin_; }
299 typename std::vector<T>::const_iterator begin() const { return begin_; }
301 const float* data() const { return &(*begin_); }
304 typename std::vector<T>::const_iterator begin_; member in class:libtextclassifier2::VectorSpan
  /external/clang/test/SemaCXX/
for-range-examples.cpp 16 value_range(const T &a, const T &b) : begin_(a), end_(b) {}
17 value_range_iter<T> begin_, end_; member in struct:value_range_detail::value_range
21 value_range_iter<T> begin(const value_range<T> &r) { return r.begin_; }
94 T begin_, end_; member in struct:map_range::iter_pair
95 iter_pair(T begin, T end) : begin_(begin), end_(end) {}
97 template<typename T> T begin(iter_pair<T> p) { return p.begin_; }
  /external/perfetto/include/perfetto/tracing/core/
shared_memory_abi.h 344 uint8_t* begin() const { return begin_; }
345 uint8_t* end() const { return begin_ + size_; }
351 uint8_t* payload_begin() const { return begin_ + sizeof(ChunkHeader); }
357 bool is_valid() const { return begin_ && size_; }
362 ChunkHeader* header() { return reinterpret_cast<ChunkHeader*>(begin_); }
404 uint8_t* begin_ = nullptr; member in class:perfetto::Chunk
  /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_) {}
364 begin_ = rhs.begin_;
457 const T* begin_; member in struct:ThrowingIterator
482 : begin_(nullptr), end_(nullptr), current_(nullptr) {}
484 : begin_(first), end_(last), current_(first) {}
486 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_) {
537 const T* begin_; member in struct:NonThrowingIterator
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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_) {}
364 begin_ = rhs.begin_;
457 const T* begin_; member in struct:ThrowingIterator
482 : begin_(nullptr), end_(nullptr), current_(nullptr) {}
484 : begin_(first), end_(last), current_(first) {}
486 : begin_(rhs.begin_), end_(rhs.end_), current_(rhs.current_) {
537 const T* begin_; member in struct:NonThrowingIterator
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
iterator.h 111 IteratorRange(IteratorType b, IteratorType e) : begin_(b), end_(e) {}
113 IteratorType begin() const { return begin_; }
116 bool empty() const { return begin_ == end_; }
117 size_t size() const { return end_ - begin_; }
120 IteratorType begin_; member in class:spvtools::ir::IteratorRange
  /art/libdexfile/dex/
dex_file_verifier.cc 110 // infrastructure at this point, so do it all by hand. begin and header correspond to begin_ and
283 const uint8_t* file_start = reinterpret_cast<const uint8_t*>(begin_);
444 const DexFile::MapList* map = reinterpret_cast<const DexFile::MapList*>(begin_ +
567 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
573 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
580 if (!DecodeSignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
646 (reinterpret_cast<const DexFile::FieldId*>(begin_ + header_->field_ids_off_) + idx)->
687 (reinterpret_cast<const DexFile::MethodId*>(begin_ + header_->method_ids_off_) + idx)->
706 if (!FindMethodName(idx, begin_, header_, &method_name, &error_msg)) {
743 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section"))
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 275 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
280 : errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
313 begin_ = beginDoc;
316 current_ = begin_;
367 currentValue().setOffsetLimit(current_ - begin_);
371 currentValue().setOffsetLimit(current_ - begin_);
383 currentValue().setOffsetStart(token.start_ - begin_);
384 currentValue().setOffsetLimit(token.end_ - begin_);
391 currentValue().setOffsetStart(token.start_ - begin_);
392 currentValue().setOffsetLimit(token.end_ - begin_);
    [all...]

Completed in 798 milliseconds

1 2 3 4