Searched defs:compressed (Results 1 - 10 of 10) sorted by relevance

/illumos-gate/usr/src/common/ficl/softcore/
H A Dmakesoftcore.c3 * Generates both uncompressed and Lempel-Ziv compressed versions.
77 unsigned char *compressed = malloc(128 * 1024); local
186 "** both uncompressed and LZ4 compressed versions.\n"
196 compressedSize = lz4_compress(uncompressed, compressed,
214 fprintDataAsHex(f, compressed, compressedSize);
247 free(compressed);
/illumos-gate/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dpages.c142 * run a checksum on un/compressed data when flag is set
196 * for compressed pages, run a checksum at the src vaddr and
280 int npages, compressed, regular; local
288 npages = compressed = regular = 0;
301 compressed += desc.cpd_pages;
325 "%s: total=%d, npages=%d, compressed=%d, regular=%d\n",
326 str, sfile.kpages, npages, compressed, regular);
/illumos-gate/usr/src/cmd/fm/modules/common/sw-diag-response/subsidiary/panic/
H A Dpanic_diag.c62 * device (if saving compressed) or to uncompress it off the dump device.
65 * number, image uuid, compressed form or not, and whether the dump
258 boolean_t compressed; local
267 (void) nvlist_lookup_boolean_value(attr, "compressed",
268 &compressed);
270 pathfmts = compressed ? &dumpfiles_comp[0] : &dumpfiles[0];
490 * either a compressed dump (vmdump.n) or uncompressed {unix.n, vmcore.n}
/illumos-gate/usr/src/cmd/cpio/
H A Dcpio.h265 char compressed; /* files compressed = 1 */ member in struct:b_block::bar_header
325 off_t data_size; /* compressed file size */
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddsl_dir.c1351 int64_t used, int64_t compressed, int64_t uncompressed, dmu_tx_t *tx)
1374 ASSERT(compressed >= 0 ||
1375 dsl_dir_phys(dd)->dd_compressed_bytes >= -compressed);
1380 dsl_dir_phys(dd)->dd_compressed_bytes += compressed;
1399 accounted_delta, compressed, uncompressed, tx);
1350 dsl_dir_diduse_space(dsl_dir_t *dd, dd_used_t type, int64_t used, int64_t compressed, int64_t uncompressed, dmu_tx_t *tx) argument
H A Ddmu_send.c288 /* only set the compression fields if the buf is compressed */
670 * We should only request compressed data from the ARC if all
1093 uint64_t compressed, boolean_t stream_compressed, uint64_t *sizep)
1113 * If we're estimating a send size for a compressed stream, use the
1114 * compressed data size to estimate the stream size. Otherwise, use the
1117 size = stream_compressed ? compressed : uncompressed;
1162 /* Get compressed and uncompressed size estimates of changed data. */
1181 uint64_t compressed; member in struct:calculate_send_arg
1186 * uncompressed and compressed sizes.
1196 space->compressed
1092 dmu_adjust_send_estimate_for_indirects(dsl_dataset_t *ds, uint64_t uncompressed, uint64_t compressed, boolean_t stream_compressed, uint64_t *sizep) argument
[all...]
H A Ddsl_dataset.c112 int compressed = BP_GET_PSIZE(bp); local
119 /* It could have been compressed away to nothing */
126 used, compressed, uncompressed);
135 dsl_dataset_phys(ds)->ds_compressed_bytes += compressed;
150 compressed, uncompressed, tx);
160 int compressed = BP_GET_PSIZE(bp); local
172 -used, -compressed, -uncompressed);
193 delta, -compressed, -uncompressed, tx);
230 ASSERT3U(dsl_dataset_phys(ds)->ds_compressed_bytes, >=, compressed); local
231 dsl_dataset_phys(ds)->ds_compressed_bytes -= compressed;
1771 uint8_t *compressed; local
[all...]
H A Darc.c138 * compressed ARC functionality is disabled, the b_pdata will point to an
151 * compressed form. The typical case is that consumers will want uncompressed
154 * compressed arc_buf_t's is "zfs send", when it streams data exactly as it
159 * first one is owned by a compressed send consumer (and therefore references
160 * the same compressed data buffer as the arc_buf_hdr_t) and the second could be
183 * compressed | | | |
185 * +------+ compressed, | data
196 * hdr is compressed and the desired compression characteristics of the
199 * the last buffer in the hdr's b_buf list, however a shared compressed buf can
246 * that when compressed AR
1870 arc_buf_fill(arc_buf_t *buf, boolean_t compressed) argument
2417 arc_buf_alloc_impl(arc_buf_hdr_t *hdr, void *tag, boolean_t compressed, boolean_t fill, arc_buf_t **ret) argument
[all...]
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c1369 char used[32], compressed[32], uncompressed[32], unique[32]; local
1378 zdb_nicenum(ds->ds_compressed_bytes, compressed);
1403 (void) printf("\t\tcompressed_bytes = %s\n", compressed);
2823 (void) printf("\t number of (compressed) bytes: "
3410 * We don't know how the data was compressed, so just try
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_sendrecv.c1512 unsigned char *compressed = zfs_alloc(hdl, len); local
1514 nread = sscanf(token + i * 2, "%2hhx", compressed + i);
1516 free(compressed);
1526 fletcher_4_native(compressed, len, NULL, &cksum);
1528 free(compressed);
1537 if (uncompress(packed, &packed_len_long, compressed, len) != Z_OK ||
1540 free(compressed);
1550 free(compressed);

Completed in 133 milliseconds