Home
last modified time | relevance | path

Searched refs:cursor_ (Results 1 – 10 of 10) sorted by relevance

/external/vixl/src/vixl/
Dcode-buffer.cc41 cursor_ = buffer_; in CodeBuffer()
49 cursor_(reinterpret_cast<byte*>(buffer)), in CodeBuffer()
66 char* dst = reinterpret_cast<char*>(cursor_); in EmitString()
69 cursor_ = reinterpret_cast<byte*>(null_char) + 1; in EmitString()
74 byte* end = AlignUp(cursor_, 4); in Align()
75 VIXL_ASSERT(end >= cursor_); in Align()
76 const size_t padding_size = end - cursor_; in Align()
81 memcpy(cursor_, padding, padding_size); in Align()
82 cursor_ = end; in Align()
93 cursor_ = buffer_; in Reset()
[all …]
Dcode-buffer.h44 ptrdiff_t cursor_offset = cursor_ - buffer_; in OffsetFrom()
55 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_))); in GetOffsetAddress()
60 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_))); in RemainingBytes()
61 return (buffer_ + capacity_) - cursor_; in RemainingBytes()
92 memcpy(cursor_, &value, sizeof(value)); in Emit()
93 cursor_ += sizeof(value); in Emit()
103 byte* cursor_; variable
/external/google-breakpad/src/common/linux/
Delf_symbols_to_module.cc74 : value_size_(value_size), cursor_(buffer, big_endian) { in ELFSymbolIterator()
99 cursor_ in Fetch()
108 cursor_ in Fetch()
116 symbol_.at_end = !cursor_; in Fetch()
123 ByteCursor cursor_; member in google_breakpad::ELFSymbolIterator
/external/v8/src/crankshaft/
Dhydrogen-check-elimination.cc80 cursor_(0), in HCheckTable()
195 copy->cursor_ = cursor_; in Copy()
315 cursor_ = 0; in Merge()
670 cursor_ = 0; in Kill()
708 int max = size_, dest = 0, old_cursor = cursor_; in Compact()
714 if (i < old_cursor) cursor_--; in Compact()
719 DCHECK(cursor_ <= size_); in Compact()
722 if (cursor_ == size_) return; // Cursor already points at end. in Compact()
723 if (cursor_ != 0) { in Compact()
727 int L = cursor_; in Compact()
[all …]
/external/google-breakpad/src/common/dwarf/
Ddwarf2reader.cc1209 address_(address), entry_(NULL), cursor_(NULL) { } in State()
1290 uint64 CursorOffset() { return entry_->offset + (cursor_ - entry_->start); } in CursorOffset()
1315 const char *cursor_; member in dwarf2reader::CallFrameInfo::State
1332 cursor_ = entry_->instructions; in InterpretCIE()
1333 while (cursor_ < entry_->end) in InterpretCIE()
1344 cursor_ = entry_->instructions; in InterpretFDE()
1345 while (cursor_ < entry_->end) in InterpretFDE()
1357 size_t bytes_left = entry_->end - cursor_; in ParseOperands()
1360 operands->register_number = reader_->ReadUnsignedLEB128(cursor_, &len); in ParseOperands()
1362 cursor_ += len; in ParseOperands()
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Ddesktop_and_cursor_composer.cc154 if (frame && cursor_.get() && cursor_state_ == MouseCursorMonitor::INSIDE) { in OnCaptureCompleted()
156 new DesktopFrameWithCursor(frame, *cursor_, cursor_position_); in OnCaptureCompleted()
164 cursor_.reset(cursor); in OnMouseCursor()
Ddesktop_and_cursor_composer.h54 rtc::scoped_ptr<MouseCursor> cursor_; variable
/external/google-breakpad/src/common/
Dstabs_reader.cc50 : value_size_(value_size), cursor_(buffer, big_endian) { in EntryIterator()
59 cursor_ in Fetch()
65 entry_.at_end = !cursor_; in Fetch()
Dstabs_reader.h173 ByteCursor cursor_; variable
/external/v8/src/
Dstring-builder.h324 cursor_ = start_; in NoExtend()
327 INLINE(void Append(DestChar c)) { *(cursor_++) = c; } in INLINE()
333 int written() { return static_cast<int>(cursor_ - start_); } in written()
337 DestChar* cursor_; variable