Home
last modified time | relevance | path

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

/aosp12/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp62 cursor_(0), in BitcodeWrapperer()
94 cursor_ = 0; in ClearBuffer()
116 if (cursor_ > 0) { in FillBuffer()
121 if (cursor_ < buffer_size_) { in FillBuffer()
123 while (cursor_ < buffer_size_) { in FillBuffer()
124 buffer_[i++] = buffer_[cursor_++]; in FillBuffer()
126 cursor_ = 0; in FillBuffer()
163 cursor_ += kWordSize; in ReadWord()
211 &buffer_[cursor_]); in ParseWrapperHeader()
221 field.Read(&buffer_[cursor_], buffer_size_); in ParseWrapperHeader()
[all …]
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dpayload.h25 cursor_(buffer_.begin()), in MessagePayload()
30 typename BufferType::iterator& Cursor() { return cursor_; } in Cursor()
42 cursor_ = buffer_.begin(); in Resize()
54 cursor_ = buffer_.begin() + offset; in Extend()
61 cursor_ = buffer_.begin(); in Clear()
72 typename BufferType::iterator cursor_; variable
/aosp12/frameworks/compile/libbcc/bcinfo/include/bcinfo/Wrap/
H A Dbitcode_wrapperer.h138 uint8_t BufferLookahead(int i) { return buffer_[cursor_ + i]; } in BufferLookahead()
141 size_t GetBufferUnreadBytes() { return buffer_size_ - cursor_; } in GetBufferUnreadBytes()
146 cursor_ = 0; in ResetCursor()
187 size_t cursor_; variable
/aosp12/art/compiler/utils/
H A Dassembler.h102 *reinterpret_cast<T*>(cursor_) = value; in Emit()
103 cursor_ += sizeof(T); in Emit()
120 cursor_ = contents_ + new_size; in Resize()
160 CHECK_GE(cursor_, contents_); in Size()
161 return cursor_ - contents_; in Size()
238 int GetPosition() { return cursor_ - contents_; } in GetPosition()
257 uint8_t* cursor_; variable
267 uint8_t* cursor() const { return cursor_; } in cursor()
H A Dassembler.cc32 cursor_ = contents_; in AssemblerBuffer()
87 cursor_ = contents_ + old_size; in ExtendCapacity()
/aosp12/art/compiler/optimizing/
H A Dscheduler.cc592 cursor_ = block->GetLastInstruction(); in Schedule()
666 if (instruction == cursor_) { in Schedule()
667 cursor_ = cursor_->GetPrevious(); in Schedule()
669 MoveAfterInBlock(instruction, cursor_); in Schedule()
H A Dscheduler.h503 cursor_(nullptr) {} in HScheduler()
542 HInstruction* cursor_; variable