Searched refs:position_ (Results 1 – 10 of 10) sorted by relevance
/art/compiler/utils/ |
D | label.h | 60 Label() : position_(0) {} in Label() 63 : position_(src.position_) { in Label() 66 src.position_ = 0; in Label() 78 return IsBound() ? -position_ - sizeof(void*) : position_ - sizeof(void*); in Position() 83 return position_ - sizeof(void*); in LinkPosition() 86 bool IsBound() const { return position_ < 0; } in IsBound() 87 bool IsUnused() const { return position_ == 0; } in IsUnused() 88 bool IsLinked() const { return position_ > 0; } in IsLinked() 91 int position_; 94 position_ = 0; in Reinitialize() [all …]
|
D | assembler.h | 55 int position_; variable 60 int position() const { return position_; } in position() 61 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 …]
|
D | dex_ir.h | 130 position_(position), in Iterator() 132 Iterator() : vector_(nullptr), position_(0U), iterator_end_(0U) { } in Iterator() 134 bool IsValid() const { return position_ < iterator_end_; } in IsValid() 136 bool operator==(const Iterator& rhs) const { return position_ == rhs.position_; } 138 bool operator<(const Iterator& rhs) const { return position_ < rhs.position_; } 144 ++position_; 150 ++position_; 155 position_ += delta; 166 --position_; 172 --position_; [all …]
|
/art/libdexfile/dex/ |
D | class_accessor.h | 193 position_(position), in DataIterator() 200 return position_ < iterator_end_; in IsValid() 205 ++position_; 220 return position_ == rhs.position_; 229 return position_ < rhs.position_; 253 if (position_ == partition_pos_) { in ReadData() 262 uint32_t position_; variable
|
/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 | 48 position_(pos), in ReferenceInfo() 93 return position_; in GetPosition() 142 const size_t position_; // position in HeapLocationCollector's ref_info_array_. variable
|
D | load_store_elimination_test.cc | 307 const Position position_; member 336 << ", " << (position_ == Position::kLeft ? "kLeft" : "kRight") << "}"; in Dump() 381 HInstruction* other = kind.position_ == Position::kLeft ? ins->AsBinaryOperation()->GetRight() in CheckFinalInstruction() 412 EXPECT_INS_EQ(ins->InputAt(1)->InputAt(kind.position_ == Position::kLeft ? 0 : 1), in CheckFinalInstruction() 468 std::tie(target_left, target_right) = kind.position_ == PartialComparisonKind::Position::kLeft in GetComparisonInstructions()
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 3796 label->position_ = next; in Bind() 3811 label->position_ = delta != 0u ? label->position_ - delta : 0; in Bind() 3883 EmitInt32(label->position_); in EmitLabelLink()
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 5119 label->position_ = next; in Bind() 5134 label->position_ = delta != 0u ? label->position_ - delta : 0; in Bind() 5208 EmitInt32(label->position_); in EmitLabelLink()
|