Searched defs:Offset (Results 1 - 5 of 5) sorted by last modified time

/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/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.h64 uint32_t Offset() const { function
73 return Offset() + Size();
334 DCHECK_ALIGNED(interned_strings.Offset(), kPageSize);
335 return interned_strings.Offset();
341 DCHECK_LE(start_offset, class_table.Offset());
342 size_t tables_size = class_table.Offset() + class_table.Size() - start_offset;
/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/optimizing/
H A Dnodes_vector.h47 size_t Offset() const { return offset_; } function in class:art::Alignment

Completed in 143 milliseconds