Searched refs:cursor_ (Results 1 – 10 of 10) sorted by relevance
/external/vixl/src/vixl/ |
D | code-buffer.cc | 41 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 …]
|
D | code-buffer.h | 44 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/ |
D | elf_symbols_to_module.cc | 74 : 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/ |
D | hydrogen-check-elimination.cc | 80 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/ |
D | dwarf2reader.cc | 1209 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/ |
D | desktop_and_cursor_composer.cc | 154 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()
|
D | desktop_and_cursor_composer.h | 54 rtc::scoped_ptr<MouseCursor> cursor_; variable
|
/external/google-breakpad/src/common/ |
D | stabs_reader.cc | 50 : value_size_(value_size), cursor_(buffer, big_endian) { in EntryIterator() 59 cursor_ in Fetch() 65 entry_.at_end = !cursor_; in Fetch()
|
D | stabs_reader.h | 173 ByteCursor cursor_; variable
|
/external/v8/src/ |
D | string-builder.h | 324 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
|