Searched defs:length_ (Results 1 - 7 of 7) sorted by relevance

/art/runtime/mirror/
H A Darray.h53 return GetField32<kVerifyFlags>(OFFSET_OF_OBJECT_MEMBER(Array, length_));
60 SetField32<false, false, kVerifyNone>(OFFSET_OF_OBJECT_MEMBER(Array, length_), length);
64 return OFFSET_OF_OBJECT_MEMBER(Array, length_);
99 int32_t length_; member in class:art::mirror::Array
H A Darray-inl.h100 explicit SetLengthVisitor(int32_t length) : length_(length) {
108 array->SetLength(length_);
112 const int32_t length_; member in class:art::mirror::SetLengthVisitor
/art/runtime/base/
H A Dstringpiece.h50 StringPiece() : ptr_(nullptr), length_(0) { }
52 : ptr_(str), length_((str == nullptr) ? 0 : strlen(str)) { }
54 : ptr_(str.data()), length_(str.size()) { }
55 StringPiece(const char* offset, size_t len) : ptr_(offset), length_(len) { }
62 size_type size() const { return length_; }
63 size_type length() const { return length_; }
64 bool empty() const { return length_ == 0; }
68 length_ = 0;
72 length_ = len;
77 length_
168 size_type length_; member in class:art::StringPiece
[all...]
/art/compiler/utils/x86/
H A Dassembler_x86.h74 CHECK_GE(length_, 2);
75 return static_cast<int8_t>(encoding_[length_ - 1]);
79 CHECK_GE(length_, 5);
81 memcpy(&value, &encoding_[length_ - 4], sizeof(value));
92 Operand() : length_(0), fixup_(nullptr) { }
97 length_ = 1;
101 CHECK_EQ(length_, 1);
104 length_ = 2;
108 CHECK(length_ == 1 || length_
128 uint8_t length_; member in class:art::x86::Operand
[all...]
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h86 CHECK_GE(length_, 2);
87 return static_cast<int8_t>(encoding_[length_ - 1]);
91 CHECK_GE(length_, 5);
93 memcpy(&value, &encoding_[length_ - 4], sizeof(value));
109 Operand() : rex_(0), length_(0), fixup_(nullptr) { }
117 length_ = 1;
121 CHECK_EQ(length_, 1);
131 length_ = 2;
135 CHECK(length_ == 1 || length_
152 uint8_t length_; member in class:art::x86_64::Operand
[all...]
/art/runtime/gc/space/
H A Dimage_space.cc608 length_(length) {}
611 return address - source_ < length_;
615 return address - dest_ < length_;
638 return length_;
644 const uintptr_t length_; member in class:art::gc::space::RelocationRange
/art/runtime/hprof/
H A Dhprof.cc154 EndianOutput() : length_(0), sum_length_(0), max_length_(0), started_(false) {}
158 if (length_ > 0) {
161 DCHECK_EQ(length_, 0U);
172 length_ - sizeof(uint8_t) - 2 * sizeof(uint32_t));
177 sum_length_ += length_;
178 max_length_ = std::max(max_length_, length_);
179 length_ = 0;
224 length_ += count;
228 length_ += count * sizeof(uint16_t);
232 length_
283 size_t length_; // Current record size. member in class:art::hprof::EndianOutput
[all...]

Completed in 105 milliseconds