Lines Matching defs:cdata
6244 void *cdata;
6254 cdata = zio_data_buf_alloc(len);
6255 ASSERT3P(cdata, !=, NULL);
6257 cdata, l2hdr->b_asize);
6261 bzero((char *)cdata + csize, rounded - csize);
6267 zio_data_buf_free(cdata, len);
6275 * Compression succeeded, we'll keep the cdata around for
6280 hdr->b_l1hdr.b_tmp_cdata = cdata;
6288 zio_data_buf_free(cdata, len);
6341 void *cdata;
6344 cdata = zio_data_buf_alloc(csize);
6345 bcopy(zio->io_data, cdata, csize);
6346 if (zio_decompress_data(c, cdata, zio->io_data, csize,
6349 zio_data_buf_free(cdata, csize);