Lines Matching refs:position_
731 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()
774 if (memcpy_s(value, len, position_, len) != EOK) { in ReadDouble()
777 position_ += len; in ReadDouble()
1215 if (len > static_cast<size_t>(end_ - position_)) { in ReadJSTaggedValue()
1218 if (memcpy_s(value, len, position_, len) != EOK) { in ReadJSTaggedValue()
1221 position_ += len; in ReadJSTaggedValue()
1228 if (bufferSize > static_cast<size_t>(end_ - position_)) { in GetBuffer()
1231 buffer = position_; in GetBuffer()
1232 position_ += bufferSize; in GetBuffer()