Searched defs:Offset (Results 1 - 5 of 5) sorted by relevance
/art/runtime/ |
H A D | offsets.h | 27 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 D | image.h | 51 uint32_t Offset() const { function 60 return Offset() + Size();
|
/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
H A D | Offset.java | 21 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/debug/dwarf/ |
H A D | debug_frame_opcode_writer.h | 74 Offset(reg, offset - current_cfa_offset_); 117 void ALWAYS_INLINE Offset(Reg reg, int offset) { function in class:art::dwarf::DebugFrameOpCodeWriter
|
/art/compiler/utils/arm/ |
H A D | assembler_arm.h | 263 Offset = (8|4|0) << 21, // offset (w/o writeback to base) enumerator in enum:art::arm::Address::Mode 271 Address(Register rn, int32_t offset = 0, Mode am = Offset) : rn_(rn), rm_(R0), argument 276 Address(Register rn, Register rm, Mode am = Offset) : rn_(rn), rm_(rm), offset_(0), argument 281 Address(Register rn, Register rm, Shift shift, uint32_t count, Mode am = Offset) : argument 290 am_(Offset), is_immed_offset_(false), shift_(LSL) { 949 void LoadRawPtr(ManagedRegister dest, ManagedRegister base, Offset offs) OVERRIDE; 966 void Copy(FrameOffset dest, ManagedRegister src_base, Offset src_offset, ManagedRegister scratch, 969 void Copy(ManagedRegister dest_base, Offset dest_offset, FrameOffset src, ManagedRegister scratch, 972 void Copy(FrameOffset dest, FrameOffset src_base, Offset src_offset, ManagedRegister scratch, 975 void Copy(ManagedRegister dest, Offset dest_offse [all...] |
Completed in 49 milliseconds