Lines Matching defs:out
21 // Decompress zlib decompressed |in| into |out|. |out_len| is the number of
22 // bytes at |out| and must be exactly equal to the size of the decompressed
24 static bool DecompressZlib(uint8* out, int out_len, base::StringPiece in) {
30 z.next_out = reinterpret_cast<Bytef*>(out);
520 char* out = WriteInto(&ret, len + 1 /* to include final NUL */);
522 out[off++] = header.size();
523 out[off++] = header.size() >> 8;
524 memcpy(out + off, header.data(), header.size());
528 memcpy(out + off, i->first.data(), i->first.size());
531 memcpy(out + off, &num_serials, sizeof(num_serials));
536 out[off++] = j->size();
537 memcpy(out + off, j->data(), j->size());