Searched refs:length_ (Results 1 – 9 of 9) sorted by relevance
/art/runtime/hprof/ |
D | hprof.cc | 160 EndianOutput() : length_(0), sum_length_(0), max_length_(0), started_(false) {} in EndianOutput() 164 if (length_ > 0) { in StartNewRecord() 167 DCHECK_EQ(length_, 0U); in StartNewRecord() 178 length_ - sizeof(uint8_t) - 2 * sizeof(uint32_t)); in EndRecord() 183 sum_length_ += length_; in EndRecord() 184 max_length_ = std::max(max_length_, length_); in EndRecord() 185 length_ = 0; in EndRecord() 230 length_ += count; in AddU1List() 234 length_ += count * sizeof(uint16_t); in AddU2List() 238 length_ += count * sizeof(uint32_t); in AddU4List() [all …]
|
/art/runtime/mirror/ |
D | array-alloc-inl.h | 67 explicit SetLengthVisitor(int32_t length) : length_(length) { in SetLengthVisitor() 75 array->SetLength(length_); in operator() 79 const int32_t length_;
|
D | array.h | 68 return GetField32<kVerifyFlags>(OFFSET_OF_OBJECT_MEMBER(Array, length_)); in GetLength() 75 SetField32<false, false, kVerifyNone>(OFFSET_OF_OBJECT_MEMBER(Array, length_), length); in SetLength() 79 return OFFSET_OF_OBJECT_MEMBER(Array, length_); in LengthOffset() 144 [[maybe_unused]] int32_t length_; variable
|
/art/compiler/utils/x86/ |
D | assembler_x86.h | 81 CHECK_GE(length_, 2); in disp8() 82 return static_cast<int8_t>(encoding_[length_ - 1]); in disp8() 86 CHECK_GE(length_, 5); in disp32() 88 memcpy(&value, &encoding_[length_ - 4], sizeof(value)); in disp32() 98 return length_ == op.length_ && 99 memcmp(encoding_, op.encoding_, length_) == 0 && 106 Operand() : length_(0), disp_(0), fixup_(nullptr) { } in Operand() 111 length_ = 1; in SetModRM() 115 CHECK_EQ(length_, 1); in SetSIB() 118 length_ = 2; in SetSIB() [all …]
|
D | assembler_x86.cc | 179 EmitLabel(lbl, dst.length_ + 5); in movl() 3911 const int length = operand.length_; in EmitOperand()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.h | 103 CHECK_GE(length_, 2); in disp8() 104 return static_cast<int8_t>(encoding_[length_ - 1]); in disp8() 108 CHECK_GE(length_, 5); in disp32() 110 memcpy(&value, &encoding_[length_ - 4], sizeof(value)); in disp32() 142 length_ == op.length_ && 143 memcmp(encoding_, op.encoding_, length_) == 0 && 149 Operand() : rex_(0), length_(0), fixup_(nullptr) { } in Operand() 157 length_ = 1; in SetModRM() 161 CHECK_EQ(length_, 1); in SetSIB() 171 length_ = 2; in SetSIB() [all …]
|
D | assembler_x86_64.cc | 5400 const int length = operand.length_; in EmitOperand()
|
/art/test/913-heaps/ |
D | heaps.cc | 281 : referrer_(referrer), referree_(referree), size_(size), length_(length) {} in Java_art_Test913_followReferences() 290 length_); in Java_art_Test913_followReferences() 300 jint length_; in Java_art_Test913_followReferences() member in art::Test913Heaps::Java_art_Test913_followReferences::PrintIterationConfig::Elem
|
/art/runtime/gc/space/ |
D | image_space.cc | 211 length_(length) {} in RelocationRange() 214 return address - source_ < length_; in InSource() 222 return address - dest_ < length_; in InDest() 250 return length_; in Length() 256 const uintptr_t length_; member in art::gc::space::RelocationRange
|