Home
last modified time | relevance | path

Searched refs:position_ (Results 1 – 2 of 2) sorted by relevance

/ark/js_runtime/ecmascript/
Djs_serializer.cpp731 if (position_ >= end_) { in ReadType()
734 uid = static_cast<SerializationUID>(*position_); in ReadType()
738 position_++; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ReadType()
745 if (len > static_cast<size_t>(end_ - position_)) { in ReadInt()
748 if (memcpy_s(value, len, position_, len) != EOK) { in ReadInt()
751 position_ += len; in ReadInt()
758 if (len > static_cast<size_t>(end_ - position_)) { in ReadObjectId()
761 if (memcpy_s(objectId, len, position_, len) != EOK) { in ReadObjectId()
764 position_ += len; in ReadObjectId()
771 if (len > static_cast<size_t>(end_ - position_)) { in ReadDouble()
[all …]
Djs_serializer.h137 : thread_(thread), begin_(data), position_(data), end_(data + size) in JSDeserializer()
172 const uint8_t *position_ = nullptr; variable