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

  /external/libmojo/mojo/public/cpp/bindings/lib/
buffer.h 32 cursor_ = reinterpret_cast<uintptr_t>(data);
33 data_end_ = cursor_ + size;
46 uintptr_t result = cursor_;
47 cursor_ += num_bytes;
48 if (cursor_ > data_end_ || cursor_ < result) {
50 cursor_ -= num_bytes;
61 uintptr_t cursor_ = 0; member in class:mojo::internal::Buffer
  /external/vixl/src/
code-buffer-vixl.cc 46 cursor_(NULL),
69 cursor_ = buffer_;
76 cursor_(reinterpret_cast<byte*>(buffer)),
115 char* dst = reinterpret_cast<char*>(cursor_);
118 cursor_ = reinterpret_cast<byte*>(null_char) + 1;
125 memcpy(cursor_, data, size);
126 cursor_ = cursor_ + size;
133 VIXL_ASSERT(dst + size <= cursor_);
139 byte* end = AlignUp(cursor_, 4)
    [all...]
code-buffer-vixl.h 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_
182 byte* cursor_; member in class:vixl::CodeBuffer
    [all...]
  /frameworks/compile/libbcc/bcinfo/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 62 cursor_(0),
94 cursor_ = 0;
116 if (cursor_ > 0) {
121 if (cursor_ < buffer_size_) {
123 while (cursor_ < buffer_size_) {
124 buffer_[i++] = buffer_[cursor_++];
126 cursor_ = 0;
163 cursor_ += kWordSize;
211 &buffer_[cursor_]);
221 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
  /external/protobuf/js/binary/
decoder.js 78 this.cursor_ = 0;
104 this.cursor_ = 0;
160 this.cursor_ = 0;
200 if (this.cursor_ == this.elements_.length) {
204 this.nextValue_ = this.elements_[this.cursor_++];
246 this.cursor_ = 0;
331 this.cursor_ = 0;
358 this.cursor_ = this.start_;
382 this.cursor_ = this.start_;
391 return this.cursor_;
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
payload.h 25 cursor_(buffer_.begin()),
30 typename BufferType::iterator& Cursor() { return cursor_; }
42 cursor_ = buffer_.begin();
54 cursor_ = buffer_.begin() + offset;
61 cursor_ = buffer_.begin();
72 typename BufferType::iterator cursor_; member in class:android::pdx::rpc::MessagePayload
  /art/compiler/utils/
assembler.h 103 *reinterpret_cast<T*>(cursor_) = value;
104 cursor_ += sizeof(T);
121 cursor_ = contents_ + new_size;
161 CHECK_GE(cursor_, contents_);
162 return cursor_ - contents_;
239 int GetPosition() { return cursor_ - contents_; }
258 uint8_t* cursor_; member in class:art::AssemblerBuffer
268 uint8_t* cursor() const { return cursor_; }
assembler.cc 32 cursor_ = contents_;
87 cursor_ = contents_ + old_size;
  /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);
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 81 cursor_(0),
196 copy->cursor_ = cursor_;
316 cursor_ = 0;
671 cursor_ = 0;
709 int max = size_, dest = 0, old_cursor = cursor_;
715 if (i < old_cursor) cursor_--;
720 DCHECK(cursor_ <= size_);
723 if (cursor_ == size_) return; // Cursor already points at end.
724 if (cursor_ != 0)
804 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 335 cursor_ = start_;
338 INLINE(void Append(DestChar c)) { *(cursor_++) = c; }
344 int written() { return static_cast<int>(cursor_ - start_); }
348 DestChar* cursor_; member in class:v8::internal::ReplacementStringBuilder::IncrementalStringBuilder::NoExtend
  /art/compiler/optimizing/
scheduler.cc 582 cursor_ = block->GetLastInstruction();
650 if (instruction == cursor_) {
651 cursor_ = cursor_->GetPrevious();
653 MoveAfterInBlock(instruction, cursor_);
scheduler.h 445 cursor_(nullptr),
488 HInstruction* cursor_; member in class:art::HScheduler
  /external/flatbuffers/src/
idl_parser.cpp 216 if (!isxdigit(static_cast<const unsigned char>(cursor_[i])))
219 std::string target(cursor_, cursor_ + nibbles);
221 cursor_ += nibbles;
226 if (static_cast<unsigned char>(*cursor_) != 0xef)
228 cursor_++;
229 if (static_cast<unsigned char>(*cursor_) != 0xbb)
231 cursor_++;
232 if (static_cast<unsigned char>(*cursor_) != 0xbf)
234 cursor_++
    [all...]
  /external/flatbuffers/include/flatbuffers/
idl.h 447 ParserState() : cursor_(nullptr), line_(1), token_(-1) {}
450 const char *cursor_; member in struct:flatbuffers::ParserState

Completed in 971 milliseconds