HomeSort by relevance Sort by last modified time
    Searched refs:cursor_ (Results 1 - 16 of 16) sorted by null

  /external/vixl/src/vixl/
code-buffer.cc 41 cursor_ = buffer_;
49 cursor_(reinterpret_cast<byte*>(buffer)),
66 char* dst = reinterpret_cast<char*>(cursor_);
69 cursor_ = reinterpret_cast<byte*>(null_char) + 1;
74 byte* end = AlignUp(cursor_, 4);
75 VIXL_ASSERT(end >= cursor_);
76 const size_t padding_size = end - cursor_;
81 memcpy(cursor_, padding, padding_size);
82 cursor_ = end;
93 cursor_ = buffer_
    [all...]
code-buffer.h 44 ptrdiff_t cursor_offset = cursor_ - buffer_;
55 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_)));
60 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_)));
61 return (buffer_ + capacity_) - cursor_;
92 memcpy(cursor_, &value, sizeof(value));
93 cursor_ += sizeof(value);
103 byte* cursor_; member in class:vixl::CodeBuffer
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
bitcode_wrapperer.h 138 uint8_t BufferLookahead(int i) { return buffer_[cursor_ + i]; }
141 size_t GetBufferUnreadBytes() { return buffer_size_ - cursor_; }
146 cursor_ = 0;
187 size_t cursor_; member in class:BitcodeWrapperer
  /frameworks/compile/libbcc/bcinfo/Wrap/
bitcode_wrapperer.cpp 61 cursor_(0),
93 cursor_ = 0;
115 if (cursor_ > 0) {
120 if (cursor_ < buffer_size_) {
122 while (cursor_ < buffer_size_) {
123 buffer_[i++] = buffer_[cursor_++];
125 cursor_ = 0;
162 cursor_ += kWordSize;
210 &buffer_[cursor_]);
220 field.Read(&buffer_[cursor_], buffer_size_)
    [all...]
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 74 : value_size_(value_size), cursor_(buffer, big_endian) {
93 // Read the symbol at cursor_, and set symbol_ appropriately.
99 cursor_
108 cursor_
116 symbol_.at_end = !cursor_;
123 ByteCursor cursor_; member in class:google_breakpad::ELFSymbolIterator
  /bionic/tools/relocation_packer/src/
sleb128.cc 85 cursor_ = start_with;
105 byte = encoding_[cursor_++];
121 while (cursor_ < encoding_.size()) {
sleb128.h 71 size_t cursor_; member in class:relocation_packer::Sleb128Decoder
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_and_cursor_composer.h 54 rtc::scoped_ptr<MouseCursor> cursor_; member in class:webrtc::DesktopAndCursorComposer
desktop_and_cursor_composer.cc 154 if (frame && cursor_.get() && cursor_state_ == MouseCursorMonitor::INSIDE) {
156 new DesktopFrameWithCursor(frame, *cursor_, cursor_position_);
164 cursor_.reset(cursor);
  /art/compiler/utils/
assembler.h 100 *reinterpret_cast<T*>(cursor_) = value;
101 cursor_ += sizeof(T);
118 cursor_ = contents_ + new_size;
158 CHECK_GE(cursor_, contents_);
159 return cursor_ - contents_;
236 int GetPosition() { return cursor_ - contents_; }
255 uint8_t* cursor_; member in class:art::AssemblerBuffer
265 uint8_t* cursor() const { return cursor_; }
assembler.cc 51 cursor_ = contents_;
106 cursor_ = contents_ + old_size;
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 80 cursor_(0),
195 copy->cursor_ = cursor_;
315 cursor_ = 0;
670 cursor_ = 0;
708 int max = size_, dest = 0, old_cursor = cursor_;
714 if (i < old_cursor) cursor_--;
719 DCHECK(cursor_ <= size_);
722 if (cursor_ == size_) return; // Cursor already points at end.
723 if (cursor_ != 0)
803 int16_t cursor_; \/\/ Must be <= kMaxTrackedObjects member in class:v8::internal::HCheckTable
    [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 1315 const char *cursor_; member in class:CallFrameInfo::State
    [all...]
  /external/google-breakpad/src/common/
stabs_reader.h 166 // Read the STABS entry at cursor_, and set entry_ appropriately.
173 ByteCursor cursor_; member in class:google_breakpad::StabsReader::EntryIterator
stabs_reader.cc 50 : value_size_(value_size), cursor_(buffer, big_endian) {
59 cursor_
65 entry_.at_end = !cursor_;
  /external/v8/src/
string-builder.h 334 cursor_ = start_;
337 INLINE(void Append(DestChar c)) { *(cursor_++) = c; }
343 int written() { return static_cast<int>(cursor_ - start_); }
347 DestChar* cursor_; member in class:v8::internal::ReplacementStringBuilder::IncrementalStringBuilder::NoExtend

Completed in 1573 milliseconds