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

/art/runtime/
H A Doffsets.h28 class Offset { class in namespace:art
30 explicit Offset(size_t val) : val_(val) {} function in class:art::Offset
44 std::ostream& operator<<(std::ostream& os, const Offset& offs);
47 class FrameOffset : public Offset {
49 explicit FrameOffset(size_t val) : Offset(val) {}
56 class ThreadOffset : public Offset {
58 explicit ThreadOffset(size_t val) : Offset(val) {}
65 class MemberOffset : public Offset {
67 explicit MemberOffset(size_t val) : Offset(val) {}
H A Dimage.h52 uint32_t Offset() const { function
61 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/debug/dwarf/
H A Ddebug_frame_opcode_writer.h74 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 Dassembler_arm.h241 Offset = (8|4|0) << 21, // offset (w/o writeback to base) enumerator in enum:art::arm::Address::Mode
249 explicit Address(Register rn, int32_t offset = 0, Mode am = Offset) : rn_(rn), rm_(R0), argument
254 Address(Register rn, Register rm, Mode am = Offset) : rn_(rn), rm_(rm), offset_(0), argument
259 Address(Register rn, Register rm, Shift shift, uint32_t count, Mode am = Offset) : argument

Completed in 86 milliseconds