Home
last modified time | relevance | path

Searched refs:dstlen (Results 1 – 8 of 8) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dgzip.c55 zlen_t dstlen = d_len; in gzip_compress() local
62 d_len, &dstlen); in gzip_compress()
64 return ((size_t)dstlen); in gzip_compress()
75 if (compress_func(d_start, &dstlen, s_start, s_len, n) != Z_OK) { in gzip_compress()
83 return ((size_t)dstlen); in gzip_compress()
90 zlen_t dstlen = d_len; in gzip_decompress() local
97 d_start, d_len, &dstlen) == CPA_STATUS_SUCCESS) in gzip_decompress()
102 if (uncompress_func(d_start, &dstlen, s_start, s_len) != Z_OK) in gzip_decompress()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dcrypto_scrypt-common.c34 encode64_uint32(uint8_t *dst, size_t dstlen, uint32_t src, uint32_t srcbits) in encode64_uint32() argument
39 if (dstlen < 1) { in encode64_uint32()
43 dstlen--; in encode64_uint32()
50 encode64(uint8_t *dst, size_t dstlen, const uint8_t *src, size_t srclen) in encode64() argument
63 dnext = encode64_uint32(dst, dstlen, value, bits); in encode64()
67 dstlen -= dnext - dst; in encode64()
/f-stack/freebsd/kern/
H A Dsubr_mchain.c203 size_t srclen, dstlen; in mb_put_mem() local
218 srclen = dstlen = cplen; in mb_put_mem()
223 dstlen = mleft; in mb_put_mem()
224 error = mbp->mb_copy(mbp, source, dst, &srclen, &dstlen); in mb_put_mem()
246 m->m_len += dstlen; in mb_put_mem()
247 mleft -= dstlen; in mb_put_mem()
248 mbp->mb_count += dstlen; in mb_put_mem()
/f-stack/dpdk/drivers/crypto/openssl/
H A Drte_openssl_pmd.c804 int dstlen; in process_openssl_encryption_update() local
830 *dst += dstlen; in process_openssl_encryption_update()
834 uint8_t diff = l - dstlen, rem; in process_openssl_encryption_update()
842 &dstlen, src, rem) <= 0) in process_openssl_encryption_update()
854 *dst += dstlen; in process_openssl_encryption_update()
866 int dstlen; in process_openssl_decryption_update() local
892 *dst += dstlen; in process_openssl_decryption_update()
904 &dstlen, src, rem) <= 0) in process_openssl_decryption_update()
916 *dst += dstlen; in process_openssl_decryption_update()
1218 size_t dstlen; in process_openssl_auth() local
[all …]
/f-stack/freebsd/libkern/
H A Diconv_ucs.c69 static u_char *ucs4_to_utf8(uint32_t ucs4, char * dst, size_t *utf8width, size_t dstlen);
483 ucs4_to_utf8(uint32_t ucs4, char *dst, size_t *utf8width, size_t dstlen) in ucs4_to_utf8() argument
507 if (dstlen < w) in ucs4_to_utf8()
/f-stack/freebsd/sys/
H A Dmchain.h48 size_t *srclen, size_t *dstlen);
/f-stack/app/redis-5.0.5/src/
H A Dutil.c294 int ll2string(char *dst, size_t dstlen, long long svalue) { in ll2string() argument
320 if (length >= dstlen) return 0; in ll2string()
/f-stack/dpdk/drivers/crypto/ccp/
H A Dccp_crypto.c606 int dstlen, totlen; in generate_cmac_subkeys() local
633 if (EVP_EncryptUpdate(ctx, dst, &dstlen, zero_iv, in generate_cmac_subkeys()
636 if (EVP_EncryptFinal_ex(ctx, dst + dstlen, &totlen) <= 0) in generate_cmac_subkeys()
1432 size_t dstlen; in process_cpu_auth_hmac() local
1441 if (EVP_DigestSignFinal(ctx, temp_dst, &dstlen) <= 0) in process_cpu_auth_hmac()