HomeSort by: relevance | last modified time | path
    Searched defs:uncomp (Results 1 - 12 of 12) sorted by relevancy

  /src/external/bsd/libarchive/dist/tar/
read.c 108 uint64_t comp, uncomp; local
118 uncomp = archive_filter_bytes(a, 0);
119 if (comp > uncomp)
122 compression = (int)((uncomp - comp) * 100 / uncomp);
127 archive_file_count(a), tar_i64toa(uncomp));
write.c 1025 uint64_t comp, uncomp; local
1031 uncomp = archive_filter_bytes(a, 0);
1033 archive_file_count(a), tar_i64toa(uncomp));
1034 if (comp >= uncomp)
1037 compression = (int)((uncomp - comp) * 100 / uncomp);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
bpobj.c 377 uint64_t used, comp, uncomp, subsubobjs; local
389 VERIFY3U(0, ==, bpobj_space(&subbpo, &used, &comp, &uncomp));
451 bpo->bpo_phys->bpo_uncomp += uncomp;
527 uint64_t uncomp; member in struct:space_range_arg
542 sra->uncomp += BP_GET_UCSIZE(bp);
590 *uncompp = sra.uncomp;
dsl_deadlist.c 49 * dl_phys->dl_used,comp,uncomp
405 uint64_t used, comp, uncomp; local
408 &used, &comp, &uncomp));
412 *uncompp += uncomp;
424 uint64_t used, comp, uncomp; local
428 VERIFY3U(0, ==, bpobj_space(&bpo, &used, &comp, &uncomp));
437 dl->dl_phys->dl_uncomp += uncomp;
514 uint64_t used, comp, uncomp; local
520 &used, &comp, &uncomp));
524 ASSERT3U(dl->dl_phys->dl_uncomp, >=, uncomp);
    [all...]
dsl_destroy.c 140 uint64_t used, comp, uncomp; member in struct:process_old_arg
162 poa->uncomp += BP_GET_UCSIZE(bp);
191 -poa.used, -poa.comp, -poa.uncomp, tx);
306 uint64_t used = 0, comp = 0, uncomp = 0; local
331 &used, &comp, &uncomp);
338 &used, &comp, &uncomp);
340 -used, -comp, -uncomp, tx);
347 DD_USED_HEAD, used, comp, uncomp, tx);
380 &used, &comp, &uncomp);
794 uint64_t used, comp, uncomp; local
    [all...]
dsl_scan.c 1466 uint64_t used = 0, comp, uncomp; local
1478 &used, &comp, &uncomp);
dsl_dataset.c 1965 uint64_t written, comp, uncomp; local
1973 &comp, &uncomp);
2452 uint64_t used, comp, uncomp, unique, cloneusedsnap, originusedsnap; member in struct:dsl_dataset_promote_arg
2525 ddpa->uncomp = dsl_dataset_phys(origin_ds)->ds_uncompressed_bytes;
2565 ddpa->uncomp += dluncomp;
2577 ddpa->uncomp -=
2818 ddpa->used - delta, ddpa->comp, ddpa->uncomp, tx);
2826 -ddpa->used - delta, -ddpa->comp, -ddpa->uncomp, tx);
2881 uint64_t used, comp, uncomp; local
2883 mintxg, UINT64_MAX, &used, &comp, &uncomp);
3150 uint64_t comp, uncomp; local
3575 uint64_t used, comp, uncomp; local
3664 uint64_t used, comp, uncomp; local
    [all...]
zfs_ioctl.c 5605 uint64_t used, comp, uncomp; local
5634 error = dsl_dataset_space_wouldfree(old, new, &used, &comp, &uncomp);
5640 fnvlist_add_uint64(outnvl, "uncompressed", uncomp);
  /src/external/bsd/wpa/dist/src/common/
dpp_reconfig.c 42 struct wpabuf *uncomp; local
68 uncomp = crypto_ec_key_get_pubkey_point(csign, 1);
70 if (!uncomp)
72 addr[0] = wpabuf_head(uncomp);
73 len[0] = wpabuf_len(uncomp);
76 wpabuf_free(uncomp);
dpp_crypto.c 251 struct wpabuf *uncomp; local
259 uncomp = crypto_ec_key_get_pubkey_point(key, 1);
260 if (!uncomp)
262 addr[0] = wpabuf_head(uncomp);
263 len[0] = wpabuf_len(uncomp);
265 wpabuf_free(uncomp);
689 struct wpabuf *uncomp; local
697 uncomp = crypto_ec_key_get_pubkey_point(pub, 1);
698 if (!uncomp)
700 addr[0] = wpabuf_head(uncomp);
    [all...]
  /src/external/mpl/dhcp/dist/common/
tree.c 4187 char *uncomp = uncompbuf; local
4196 list1->len, uncomp,
4205 uncomp += list_len;
4212 *uncomp++ = ',';
4217 uncomp, (sizeof(uncompbuf)
4226 uncomp += list_len;
4249 uncomp = uncompbuf;
4251 if (*uncomp++ == ',')
  /src/external/cddl/osnet/dist/cmd/zdb/
zdb.c 440 char bytes[32], comp[32], uncomp[32]; local
447 zdb_nicenum(bpop->bpo_uncomp, uncomp);
454 (void) printf("\t\tuncomp = %s\n", uncomp);
1494 char uncomp[32]; local
1502 zdb_nicenum(bpo->bpo_phys->bpo_uncomp, uncomp);
1510 bytes, comp, uncomp);
1554 char uncomp[32]; local
1566 zdb_nicenum(dl->dl_phys->dl_uncomp, uncomp);
1568 bytes, comp, uncomp);

Completed in 61 milliseconds