Home | History | Annotate | Download | only in snapshot

Lines Matching refs:Payload

202   explicit Checksum(Vector<const byte> payload) {
206 MSAN_MEMORY_IS_INITIALIZED(payload.start(), payload.length());
211 const uintptr_t* cur = reinterpret_cast<const uintptr_t*>(payload.start());
212 DCHECK(IsAligned(payload.length(), kIntptrSize));
213 const uintptr_t* end = cur + payload.length() / kIntptrSize;
239 SerializedCodeData::SerializedCodeData(const List<byte>* payload,
253 int size = padded_payload_offset + payload->length();
267 SetHeaderValue(kPayloadLengthOffset, payload->length());
269 Checksum checksum(payload->ToConstVector());
284 CopyBytes(data_ + padded_payload_offset, payload->begin(),
285 static_cast<size_t>(payload->length()));
304 if (!Checksum(Payload()).Check(c1, c2)) return CHECKSUM_MISMATCH;
329 Vector<const byte> SerializedCodeData::Payload() const {
334 const byte* payload = data_ + padded_payload_offset;
335 DCHECK(IsAligned(reinterpret_cast<intptr_t>(payload), kPointerAlignment));
337 DCHECK_EQ(data_ + size_, payload + length);
338 return Vector<const byte>(payload, length);