Home | History | Annotate | Download | only in src

Lines Matching refs:cursor_

58     ptrdiff_t cursor_offset = cursor_ - buffer_;
74 VIXL_ASSERT((buffer_ <= rewound_cursor) && (rewound_cursor <= cursor_));
75 cursor_ = rewound_cursor;
81 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_)));
98 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_)));
99 return (buffer_ + capacity_) - cursor_;
106 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_)));
107 return cursor_ - buffer_;
130 memcpy(cursor_, &value, sizeof(value));
131 cursor_ += sizeof(value);
142 bool Is16bitAligned() const { return IsAligned<2>(cursor_); }
144 bool Is32bitAligned() const { return IsAligned<4>(cursor_); }
182 byte* cursor_;