Home
last modified time | relevance | path

Searched refs:olen (Results 76 - 100 of 365) sorted by relevance

12345678910>>...15

/third_party/node/deps/base64/base64/lib/arch/ssse3/
H A Dcodec.c42 enc_loop_ssse3(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION()
53 dec_loop_ssse3(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION()
H A Ddec_loop.c120 dec_loop_ssse3 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) in dec_loop_ssse3() argument
133 *olen += rounds * 12; // 12 bytes produced per round in dec_loop_ssse3()
172 *olen -= rounds * 12; in dec_loop_ssse3()
/third_party/node/deps/base64/base64/lib/arch/sse42/
H A Dcodec.c40 enc_loop_ssse3(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION()
51 dec_loop_ssse3(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION()
/third_party/node/deps/openssl/openssl/crypto/comp/
H A Dcomp_local.h16 unsigned char *out, unsigned int olen,
19 unsigned char *out, unsigned int olen,
H A Dc_zlib.c41 unsigned int olen, unsigned char *in,
44 unsigned int olen, unsigned char *in,
166 unsigned int olen, unsigned char *in, in zlib_stateful_compress_block()
178 state->ostream.avail_out = olen; in zlib_stateful_compress_block()
183 return olen - state->ostream.avail_out; in zlib_stateful_compress_block()
187 unsigned int olen, unsigned char *in, in zlib_stateful_expand_block()
199 state->istream.avail_out = olen; in zlib_stateful_expand_block()
204 return olen - state->istream.avail_out; in zlib_stateful_expand_block()
165 zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) zlib_stateful_compress_block() argument
186 zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) zlib_stateful_expand_block() argument
/third_party/openssl/crypto/comp/
H A Dcomp_local.h16 unsigned char *out, unsigned int olen,
19 unsigned char *out, unsigned int olen,
H A Dc_zlib.c41 unsigned int olen, unsigned char *in,
44 unsigned int olen, unsigned char *in,
166 unsigned int olen, unsigned char *in, in zlib_stateful_compress_block()
178 state->ostream.avail_out = olen; in zlib_stateful_compress_block()
183 return olen - state->ostream.avail_out; in zlib_stateful_compress_block()
187 unsigned int olen, unsigned char *in, in zlib_stateful_expand_block()
199 state->istream.avail_out = olen; in zlib_stateful_expand_block()
204 return olen - state->istream.avail_out; in zlib_stateful_expand_block()
165 zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) zlib_stateful_compress_block() argument
186 zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, unsigned int olen, unsigned char *in, unsigned int ilen) zlib_stateful_expand_block() argument
/third_party/mbedtls/include/mbedtls/
H A Dcipher.h332 void(*MBEDTLS_PRIVATE(add_padding))(unsigned char *output, size_t olen, size_t data_len);
945 * \param olen The length of the output data, to be updated with the
959 size_t *olen);
971 * \param olen The length of the data written to the \p output buffer.
984 unsigned char *output, size_t *olen);
1040 * \param olen The length of the output data, to be updated with the
1059 unsigned char *output, size_t *olen);
1093 * \param olen This will be filled with the actual number of Bytes
1111 size_t *olen, size_t tag_len);
1148 * \param olen Thi
[all...]
H A Decdh.h278 * \param olen The address at which to store the number of Bytes written.
291 int mbedtls_ecdh_make_params(mbedtls_ecdh_context *ctx, size_t *olen,
359 * \param olen The address at which to store the number of Bytes written.
373 int mbedtls_ecdh_make_public(mbedtls_ecdh_context *ctx, size_t *olen,
415 * \param olen The address at which to store the total number of
429 int mbedtls_ecdh_calc_secret(mbedtls_ecdh_context *ctx, size_t *olen,
/third_party/mbedtls/tests/src/
H A Dhelpers.c626 unsigned char *mbedtls_test_unhexify_alloc(const char *ibuf, size_t *olen) in mbedtls_test_unhexify_alloc() argument
631 *olen = strlen(ibuf) / 2; in mbedtls_test_unhexify_alloc()
633 if (*olen == 0) { in mbedtls_test_unhexify_alloc()
634 return mbedtls_test_zero_alloc(*olen); in mbedtls_test_unhexify_alloc()
637 obuf = mbedtls_calloc(1, *olen); in mbedtls_test_unhexify_alloc()
639 TEST_HELPER_ASSERT(mbedtls_test_unhexify(obuf, *olen, ibuf, &len) == 0); in mbedtls_test_unhexify_alloc()
/third_party/mbedtls/library/
H A Dsha3.c274 ctx->olen = 224 / 8; in mbedtls_sha3_starts()
278 ctx->olen = 256 / 8; in mbedtls_sha3_starts()
282 ctx->olen = 384 / 8; in mbedtls_sha3_starts()
286 ctx->olen = 512 / 8; in mbedtls_sha3_starts()
343 uint8_t *output, size_t olen) in mbedtls_sha3_finish()
348 if (ctx->olen > 0) { in mbedtls_sha3_finish()
349 if (ctx->olen > olen) { in mbedtls_sha3_finish()
353 olen = ctx->olen; in mbedtls_sha3_finish()
342 mbedtls_sha3_finish(mbedtls_sha3_context *ctx, uint8_t *output, size_t olen) mbedtls_sha3_finish() argument
379 mbedtls_sha3(mbedtls_sha3_id id, const uint8_t *input, size_t ilen, uint8_t *output, size_t olen) mbedtls_sha3() argument
[all...]
H A Dssl_tls12_client.c54 size_t *olen) in ssl_write_renegotiation_ext()
58 *olen = 0; in ssl_write_renegotiation_ext()
84 *olen = 5 + ssl->verify_data_len; in ssl_write_renegotiation_ext()
98 size_t *olen) in ssl_write_supported_point_formats_ext()
103 *olen = 0; in ssl_write_supported_point_formats_ext()
118 *olen = 6; in ssl_write_supported_point_formats_ext()
131 size_t *olen) in ssl_write_ecjpake_kkpp_ext()
137 *olen = 0; in ssl_write_ecjpake_kkpp_ext()
208 *olen = kkpp_len + 4; in ssl_write_ecjpake_kkpp_ext()
219 size_t *olen) in ssl_write_cid_ext()
51 ssl_write_renegotiation_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_renegotiation_ext() argument
95 ssl_write_supported_point_formats_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_supported_point_formats_ext() argument
128 ssl_write_ecjpake_kkpp_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_ecjpake_kkpp_ext() argument
216 ssl_write_cid_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_cid_ext() argument
259 ssl_write_max_fragment_length_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_max_fragment_length_ext() argument
293 ssl_write_encrypt_then_mac_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_encrypt_then_mac_ext() argument
325 ssl_write_extended_ms_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_extended_ms_ext() argument
357 ssl_write_session_ticket_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_session_ticket_ext() argument
402 ssl_write_use_srtp_ext(mbedtls_ssl_context *ssl, unsigned char *buf, const unsigned char *end, size_t *olen) ssl_write_use_srtp_ext() argument
1910 ssl_write_encrypted_pms(mbedtls_ssl_context *ssl, size_t offset, size_t *olen, size_t pms_offset) ssl_write_encrypted_pms() argument
2043 size_t olen = 0; ssl_get_ecdh_params_from_cert() local
[all...]
H A Ddhm.c224 unsigned char *output, size_t *olen, in mbedtls_dhm_make_params()
260 *olen = (size_t) (p - output); in mbedtls_dhm_make_params()
309 unsigned char *output, size_t olen, in mbedtls_dhm_make_public()
315 if (olen < 1 || olen > mbedtls_dhm_get_len(ctx)) { in mbedtls_dhm_make_public()
327 MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->GX, output, olen)); in mbedtls_dhm_make_public()
406 unsigned char *output, size_t output_size, size_t *olen, in mbedtls_dhm_calc_secret()
442 *olen = mbedtls_mpi_size(&ctx->K); in mbedtls_dhm_calc_secret()
443 MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&ctx->K, output, *olen)); in mbedtls_dhm_calc_secret()
223 mbedtls_dhm_make_params(mbedtls_dhm_context *ctx, int x_size, unsigned char *output, size_t *olen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) mbedtls_dhm_make_params() argument
308 mbedtls_dhm_make_public(mbedtls_dhm_context *ctx, int x_size, unsigned char *output, size_t olen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) mbedtls_dhm_make_public() argument
405 mbedtls_dhm_calc_secret(mbedtls_dhm_context *ctx, unsigned char *output, size_t output_size, size_t *olen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) mbedtls_dhm_calc_secret() argument
H A Dgcm.c108 size_t olen = 0; in gcm_gen_table() local
109 ret = mbedtls_cipher_update(&ctx->cipher_ctx, h, 16, h, &olen); in gcm_gen_table()
387 size_t olen = 0; in mbedtls_gcm_starts() local
441 ret = mbedtls_cipher_update(&ctx->cipher_ctx, ctx->y, 16, ctx->base_ectr, &olen); in mbedtls_gcm_starts()
545 size_t olen = 0; in gcm_mask() local
546 ret = mbedtls_cipher_update(&ctx->cipher_ctx, ctx->y, 16, ectr, &olen); in gcm_mask()
716 size_t olen; in mbedtls_gcm_crypt_and_tag() local
727 output, length, &olen)) != 0) { in mbedtls_gcm_crypt_and_tag()
731 if ((ret = mbedtls_gcm_finish(ctx, NULL, 0, &olen, tag, tag_len)) != 0) { in mbedtls_gcm_crypt_and_tag()
1024 size_t olen; in mbedtls_gcm_self_test() local
[all...]
/third_party/libwebsockets/lib/tls/mbedtls/
H A Dlws-genrsa.c201 size_t olen = 0; local
217 &olen, in, out,
227 &olen, in, out, out_max);
238 return (int)olen;
245 size_t olen = 0; local
261 &olen, in, out,
271 &olen, in, out, out_max);
282 return (int)olen;
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dcomp.h37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
39 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
/third_party/openssl/include/openssl/
H A Dcomp.h37 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
39 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
/third_party/openssl/ohos_lite/include/openssl/
H A Dcomp.h31 int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
33 int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dtls1.rs10 olen: size_t, in SSL_export_keying_material()
22 olen: size_t, in SSL_export_keying_material_early()
/third_party/node/deps/base64/base64/lib/arch/neon32/
H A Ddec_loop.c56 dec_loop_neon32 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) in dec_loop_neon32() argument
68 *olen += rounds * 48; // 48 bytes produced per round in dec_loop_neon32()
105 *olen -= rounds * 48; in dec_loop_neon32()
/third_party/node/deps/base64/base64/lib/arch/avx2/
H A Ddec_loop.c57 dec_loop_avx2 (const uint8_t **s, size_t *slen, uint8_t **o, size_t *olen) in dec_loop_avx2() argument
70 *olen += rounds * 24; // 24 bytes produced per round in dec_loop_avx2()
109 *olen -= rounds * 24; in dec_loop_avx2()
/kernel/linux/linux-5.10/fs/btrfs/
H A Dreflink.c17 const u64 olen, in clone_finish_inode_update()
30 if (endoff > destoff + olen) in clone_finish_inode_update()
31 endoff = destoff + olen; in clone_finish_inode_update()
323 * @olen: Original length, passed by user, of range to clone
324 * @olen_aligned: Block-aligned value of olen
329 const u64 off, const u64 olen, const u64 olen_aligned, in btrfs_clone()
537 destoff, olen, no_time_update); in btrfs_clone()
589 destoff, olen, no_time_update); in btrfs_clone()
637 static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen, in btrfs_extent_same() argument
656 tail_len = olen in btrfs_extent_same()
13 clone_finish_inode_update(struct btrfs_trans_handle *trans, struct inode *inode, u64 endoff, const u64 destoff, const u64 olen, int no_time_update) clone_finish_inode_update() argument
328 btrfs_clone(struct inode *src, struct inode *inode, const u64 off, const u64 olen, const u64 olen_aligned, const u64 destoff, int no_time_update) btrfs_clone() argument
679 btrfs_clone_files(struct file *file, struct file *file_src, u64 off, u64 olen, u64 destoff) btrfs_clone_files() argument
[all...]
/kernel/linux/linux-6.6/fs/btrfs/
H A Dreflink.c25 const u64 olen, in clone_finish_inode_update()
39 if (endoff > destoff + olen) in clone_finish_inode_update()
40 endoff = destoff + olen; in clone_finish_inode_update()
332 * @olen: Original length, passed by user, of range to clone
333 * @olen_aligned: Block-aligned value of olen
338 const u64 off, const u64 olen, const u64 olen_aligned, in btrfs_clone()
559 destoff, olen, no_time_update); in btrfs_clone()
609 destoff, olen, no_time_update); in btrfs_clone()
683 static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen, in btrfs_extent_same() argument
702 tail_len = olen in btrfs_extent_same()
21 clone_finish_inode_update(struct btrfs_trans_handle *trans, struct inode *inode, u64 endoff, const u64 destoff, const u64 olen, int no_time_update) clone_finish_inode_update() argument
337 btrfs_clone(struct inode *src, struct inode *inode, const u64 off, const u64 olen, const u64 olen_aligned, const u64 destoff, int no_time_update) btrfs_clone() argument
725 btrfs_clone_files(struct file *file, struct file *file_src, u64 off, u64 olen, u64 destoff) btrfs_clone_files() argument
[all...]
/third_party/libwebsockets/lib/core/
H A Dlibwebsockets.c536 int olen = 0; in lws_sql_purify_len() local
540 olen++; in lws_sql_purify_len()
541 olen++; in lws_sql_purify_len()
544 return olen; in lws_sql_purify_len()
1079 char *out, size_t olen) in lws_strexp_init()
1084 exp->olen = olen; in lws_strexp_init()
1090 lws_strexp_reset_out(lws_strexp_t *exp, char *out, size_t olen) in lws_strexp_reset_out() argument
1093 exp->olen = olen; in lws_strexp_reset_out()
1078 lws_strexp_init(lws_strexp_t *exp, void *priv, lws_strexp_expand_cb cb, char *out, size_t olen) lws_strexp_init() argument
[all...]
/third_party/curl/lib/
H A Dheaders.c227 size_t olen; /* length of the old value */ in unfold_value() local
232 olen = strlen(hs->value); in unfold_value()
234 oalloc = olen + offset + 1; in unfold_value()
262 memcpy(&newhs->value[olen], value, vlen); in unfold_value()
263 newhs->value[olen + vlen] = 0; /* null-terminate at newline */ in unfold_value()

Completed in 38 milliseconds

12345678910>>...15