/third_party/protobuf/js/binary/ |
H A D | decoder.js | 88 this.cursor_ = 0; 159 this.cursor_ = 0; 186 this.cursor_ = this.start_; 210 this.cursor_ = this.start_; 219 return this.cursor_; 228 this.cursor_ = cursor; 237 this.cursor_ += count; 238 goog.asserts.assert(this.cursor_ <= this.end_); 247 return this.cursor_ == this.end_; 256 return this.cursor_ > thi [all...] |
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | buffer_decoder.js | 77 this.cursor_ = startIndex; 110 return this.cursor_; 118 this.cursor_ = position; 126 return this.cursor_ < this.endIndex_; 135 this.cursor_ = index + 4; 145 this.cursor_ = index + 8; 155 this.cursor_ = index + 4; 165 this.cursor_ = index + 4; 176 this.cursor_ = index; 181 const b = this.dataView_.getUint8(this.cursor_ [all...] |
/third_party/vixl/src/ |
H A D | code-buffer-vixl.cc | 35 cursor_(NULL), in CodeBuffer() 58 cursor_ = buffer_; in CodeBuffer() 66 cursor_(reinterpret_cast<byte*>(buffer)), in CodeBuffer() 130 char* dst = reinterpret_cast<char*>(cursor_); in EmitString() 133 cursor_ = reinterpret_cast<byte*>(dst + len); in EmitString() 140 memcpy(cursor_, data, size); in EmitData() 141 cursor_ = cursor_ + size; in EmitData() 148 VIXL_ASSERT(dst + size <= cursor_); in UpdateData() 154 byte* end = AlignUp(cursor_, in Align() [all...] |
H A D | code-buffer-vixl.h | 76 ptrdiff_t cursor_offset = cursor_ - buffer_; in GetOffsetFrom() 92 VIXL_ASSERT((buffer_ <= rewound_cursor) && (rewound_cursor <= cursor_)); in Rewind() 93 cursor_ = rewound_cursor; in Rewind() 99 VIXL_ASSERT((offset >= 0) && (offset <= (cursor_ - buffer_))); in GetOffsetAddress() 116 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_))); in GetRemainingBytes() 117 return (buffer_ + capacity_) - cursor_; in GetRemainingBytes() 124 VIXL_ASSERT((cursor_ >= buffer_) && (cursor_ <= (buffer_ + capacity_))); in GetSizeInBytes() 125 return cursor_ in GetSizeInBytes() 200 byte* cursor_; global() member in vixl::CodeBuffer [all...] |
/third_party/node/deps/v8/src/json/ |
H A D | json-parser.h | 193 void advance() { ++cursor_; } in advance() 197 return *cursor_; in CurrentCharacter() 241 size_t remaining = static_cast<size_t>(end_ - cursor_); in ScanLiteral() 243 CompareCharsEqual(s + 1, cursor_ + 1, N - 2))) { in ScanLiteral() 244 cursor_ += N - 1; in ScanLiteral() 248 cursor_++; in ScanLiteral() 250 if (*(s + 1 + i) != *cursor_) { in ScanLiteral() 251 ReportUnexpectedCharacter(*cursor_); in ScanLiteral() 254 cursor_++; in ScanLiteral() 323 size_t position = cursor_ in UpdatePointers() 355 const Char* cursor_; global() member [all...] |
H A D | json-parser.cc | 238 cursor_ = chars_ + start; in JsonParser() 239 end_ = cursor_ + length; in JsonParser() 270 arg1 = factory->LookupSingleCharacterStringFromCode(*cursor_); in ReportUnexpectedToken() 296 cursor_ = end_; in ReportUnexpectedToken() 340 cursor_ = std::find_if(cursor_, end_, [this](Char c) { in SkipWhitespace() 366 const Char* start = cursor_; in ScanJsonPropertyKey() 381 cursor_ = std::find_if(cursor_ + 1, end_, [&index](Char c) { in ScanJsonPropertyKey() 401 // Reset cursor_ t in ScanJsonPropertyKey() [all...] |
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-iterator.h | 80 cursor_ += current_bytecode_size_without_prefix(); in Advance() 90 uint8_t current_byte = *cursor_; in current_bytecode() 102 return static_cast<int>(cursor_ - start_ - prefix_size_); in current_offset() 156 inline bool done() const { return cursor_ >= end_; } in done() 165 uint8_t current_byte = *cursor_; in UpdateOperandScale() 170 ++cursor_; in UpdateOperandScale() 183 uint8_t* cursor_; member in v8::internal::interpreter::BytecodeArrayIterator
|
H A D | bytecode-array-iterator.cc | 23 cursor_(start_ + initial_offset), in BytecodeArrayIterator() 39 cursor_ = reinterpret_cast<uint8_t*>( in SetOffset() 48 uint8_t* cursor = cursor_ - prefix_size_; in ApplyDebugBreak() 64 reinterpret_cast<Address>(cursor_) + in GetUnsignedOperand() 79 reinterpret_cast<Address>(cursor_) + in GetSignedOperand() 139 reinterpret_cast<Address>(cursor_) + in GetRegisterOperand() 269 return BytecodeDecoder::Decode(os, cursor_ - prefix_size_); in PrintTo() 279 size_t distance_to_end = end_ - cursor_; in UpdatePointers() 280 cursor_ = end - distance_to_end; in UpdatePointers()
|
/third_party/node/deps/v8/src/wasm/ |
H A D | struct-types.h | 92 cursor_(0), in Builder() 97 DCHECK_LT(cursor_, field_count_); in AddField() 98 mutabilities_[cursor_] = mutability; in AddField() 99 buffer_[cursor_++] = type; in AddField() 103 DCHECK_EQ(cursor_, field_count_); in Build() 112 uint32_t cursor_; member in v8::internal::wasm::StructType::Builder
|
/third_party/node/deps/v8/src/strings/ |
H A D | string-builder-inl.h | 221 cursor_ = start_; in NoExtend() 239 DCHECK_LE(cursor_, end + 1); in ~NoExtend() 243 V8_INLINE void Append(DestChar c) { *(cursor_++) = c; } in Append() 249 int written() { return static_cast<int>(cursor_ - start_); } in written() 253 DestChar* cursor_; member in v8::internal::ReplacementStringBuilder::NoExtend
|
/third_party/node/deps/v8/src/numbers/ |
H A D | conversions.cc | 349 int cursor() { return cursor_; } in cursor() 364 int cursor_ = 0; member 466 cursor_ = static_cast<int>(current - start); in DetectRadixInternal()
|