Lines Matching refs:byte_length
480 void* backing_store, int32_t byte_length, Maybe<int32_t> max_byte_length) {
495 sink_->PutInt(byte_length, "length");
499 sink_->PutRaw(static_cast<byte*>(backing_store), byte_length, "BackingStore");
519 // We cannot store byte_length or max_byte_length larger than int32
521 CHECK_LE(buffer.byte_length(), std::numeric_limits<int32_t>::max());
522 int32_t byte_length = static_cast<int32_t>(buffer.byte_length());
538 SerializeBackingStore(backing_store, byte_length, max_byte_length);
555 // We cannot store byte_length or max_byte_length larger than int32 range in
557 CHECK_LE(buffer.byte_length(), std::numeric_limits<int32_t>::max());
558 int32_t byte_length = static_cast<int32_t>(buffer.byte_length());
571 SerializeBackingStore(backing_store, byte_length, max_byte_length);