Searched refs:position_ (Results 1 – 10 of 10) sorted by relevance
/art/compiler/utils/ |
D | label.h | 68 Label() : position_(0) {} in Label() 71 : position_(src.position_) { in Label() 74 src.position_ = 0; in Label() 86 return IsBound() ? -position_ - sizeof(void*) : position_ - sizeof(void*); in Position() 91 return position_ - sizeof(void*); in LinkPosition() 94 bool IsBound() const { return position_ < 0; } in IsBound() 95 bool IsUnused() const { return position_ == 0; } in IsUnused() 96 bool IsLinked() const { return position_ > 0; } in IsLinked() 99 int position_; 102 position_ = 0; in Reinitialize() [all …]
|
D | assembler.h | 56 int position_; variable 61 int position() const { return position_; } in position() 62 void set_position(int position_in) { position_ = position_in; } in set_position()
|
/art/dexlayout/ |
D | dex_writer.h | 82 return position_; in Tell() 86 position_ = position; in Seek() 94 DCHECK_EQ(data_[position_ + i], 0u); in Write() 96 memcpy(&data_[position_], buffer, length); in Write() 97 position_ += length; in Write() 103 memcpy(&data_[position_], buffer, length); in Overwrite() 104 position_ += length; in Overwrite() 116 uint8_t* ptr = &data_[position_]; in WriteSleb128() 118 position_ += len; in WriteSleb128() 124 uint8_t* ptr = &data_[position_]; in WriteUleb128() [all …]
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 115 position_(position) { in UsePosition() 121 position_(dchecked_integral_cast<uint32_t>(position)) { in UsePosition() 124 size_t GetPosition() const { return position_; } in GetPosition() 133 stream << position_; in Dump() 141 return new (allocator) UsePosition(user_, input_index_, position_); in Clone() 155 const size_t position_; variable 172 position_(position) { in EnvUsePosition() 176 size_t GetPosition() const { return position_; } in GetPosition() 182 stream << position_; in Dump() 186 return new (allocator) EnvUsePosition(environment_, input_index_, position_); in Clone() [all …]
|
D | load_store_analysis.h | 32 position_(pos), in ReferenceInfo() 48 return position_; in GetPosition() 74 const size_t position_; // position in HeapLocationCollector's ref_info_array_. variable
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 2722 label->position_ = next; in Bind() 2737 label->position_ = delta != 0u ? label->position_ - delta : 0; in Bind() 2809 EmitInt32(label->position_); in EmitLabelLink()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 3359 label->position_ = next; in Bind() 3374 label->position_ = delta != 0u ? label->position_ - delta : 0; in Bind() 3448 EmitInt32(label->position_); in EmitLabelLink()
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.cc | 2809 label->position_ = prev; in Bind() 2864 Emit(label->position_); in FinalizeLabeledBranch() 3103 literal.GetLabel()->position_ += sizeof(uint32_t); in PromoteBranches()
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 162 position_ -= delta; in AdjustBoundPosition()
|
D | assembler_mips.cc | 3525 label->position_ = prev; in Bind() 3583 Emit(label->position_); in FinalizeLabeledBranch()
|