Lines Matching defs:offset
75 ptrdiff_t GetOffsetFrom(ptrdiff_t offset) const {
77 VIXL_ASSERT((offset >= 0) && (offset <= cursor_offset));
78 return cursor_offset - offset;
81 ptrdiff_t OffsetFrom(ptrdiff_t offset) const) {
82 return GetOffsetFrom(offset);
90 void Rewind(ptrdiff_t offset) {
91 byte* rewound_cursor = buffer_ + offset;
97 T GetOffsetAddress(ptrdiff_t offset) const {
99 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_)));
100 return reinterpret_cast<T>(buffer_ + offset);
153 void UpdateData(size_t offset, const void* data, size_t size);