Searched defs:Offset (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Doffsets.h27 class Offset { class in namespace:art
29 explicit Offset(size_t val) : val_(val) {} function in class:art::Offset
43 std::ostream& operator<<(std::ostream& os, const Offset& offs);
46 class FrameOffset : public Offset {
48 explicit FrameOffset(size_t val) : Offset(val) {}
55 class ThreadOffset : public Offset {
57 explicit ThreadOffset(size_t val) : Offset(val) {}
61 class MemberOffset : public Offset {
63 explicit MemberOffset(size_t val) : Offset(val) {}
H A Dimage.h34 uint32_t Offset() const { function
43 return Offset() + Size();
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DOffset.java21 public class Offset { class
28 * The Offsettable that this Offset points to.
33 * The location of this Offset in the new file, ONLY SET IF the Offset
40 * Was the output location for this Offset set?.
45 * Does this Offset need to be written out using ULEB128?.
50 * Was this Offset created after reading, during mutation?.
55 * Only one Offset should have this flag set, the MapItem that points
61 * If an Offset pointed at 0 (because it is not actually a valid Offset),
66 public Offset(boolean header) { method in class:Offset
[all...]
/art/compiler/dwarf/
H A Ddebug_frame_opcode_writer.h72 Offset(reg, offset - current_cfa_offset_);
115 void ALWAYS_INLINE Offset(Reg reg, int offset) { function in class:art::dwarf::DebugFrameOpCodeWriter
/art/compiler/utils/arm/
H A Dassembler_arm.h177 Offset = (8|4|0) << 21, // offset (w/o writeback to base) enumerator in enum:art::arm::Address::Mode
185 Address(Register rn, int32_t offset = 0, Mode am = Offset) : rn_(rn), rm_(R0), argument
190 Address(Register rn, Register rm, Mode am = Offset) : rn_(rn), rm_(rm), offset_(0), argument
195 Address(Register rn, Register rm, Shift shift, uint32_t count, Mode am = Offset) : argument
204 am_(Offset), is_immed_offset_(false), shift_(LSL) {
701 void LoadRawPtr(ManagedRegister dest, ManagedRegister base, Offset offs) OVERRIDE;
718 void Copy(FrameOffset dest, ManagedRegister src_base, Offset src_offset, ManagedRegister scratch,
721 void Copy(ManagedRegister dest_base, Offset dest_offset, FrameOffset src, ManagedRegister scratch,
724 void Copy(FrameOffset dest, FrameOffset src_base, Offset src_offset, ManagedRegister scratch,
727 void Copy(ManagedRegister dest, Offset dest_offse
[all...]

Completed in 183 milliseconds