Searched refs:position_ (Results 1 - 10 of 10) sorted by relevance

/art/compiler/utils/
H A Dlabel.h68 Label() : position_(0) {}
71 : position_(src.position_) {
74 src.position_ = 0;
86 return IsBound() ? -position_ - sizeof(void*) : position_ - sizeof(void*);
91 return position_ - sizeof(void*);
94 bool IsBound() const { return position_ < 0; }
95 bool IsUnused() const { return position_ == 0; }
96 bool IsLinked() const { return position_ >
99 int position_; member in class:art::Label
[all...]
H A Dassembler.h56 int position_; member in class:art::AssemblerFixup
61 int position() const { return position_; }
62 void set_position(int position_in) { position_ = position_in; }
/art/dexlayout/
H A Ddex_writer.h82 return position_;
86 position_ = position;
94 DCHECK_EQ(data_[position_ + i], 0u);
96 memcpy(&data_[position_], buffer, length);
97 position_ += length;
103 memcpy(&data_[position_], buffer, length);
104 position_ += length;
116 uint8_t* ptr = &data_[position_];
118 position_ += len;
124 uint8_t* ptr = &data_[position_];
170 size_t position_ = 0u; member in class:art::DexWriter::Stream
[all...]
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h115 position_(position) {
121 position_(dchecked_integral_cast<uint32_t>(position)) {
124 size_t GetPosition() const { return position_; }
133 stream << position_; local
141 return new (allocator) UsePosition(user_, input_index_, position_);
155 const size_t position_; member in class:art::UsePosition
172 position_(position) {
176 size_t GetPosition() const { return position_; }
182 stream << position_; local
186 return new (allocator) EnvUsePosition(environment_, input_index_, position_);
192 const size_t position_; member in class:art::EnvUsePosition
[all...]
H A Dload_store_analysis.h32 position_(pos),
48 return position_;
74 const size_t position_; // position in HeapLocationCollector's ref_info_array_. member in class:art::ReferenceInfo
/art/compiler/utils/x86/
H A Dassembler_x86.cc2722 label->position_ = next;
2737 label->position_ = delta != 0u ? label->position_ - delta : 0;
2809 EmitInt32(label->position_);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc3359 label->position_ = next;
3374 label->position_ = delta != 0u ? label->position_ - delta : 0;
3448 EmitInt32(label->position_);
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc2809 label->position_ = prev;
2864 Emit(label->position_);
3103 literal.GetLabel()->position_ += sizeof(uint32_t);
/art/compiler/utils/mips/
H A Dassembler_mips.h162 position_ -= delta;
H A Dassembler_mips.cc3525 label->position_ = prev;
3583 Emit(label->position_);

Completed in 176 milliseconds