/third_party/curl/lib/ |
H A D | escape.c | 108 * *olen. If length == 0, the length is assumed to be strlen(string). 121 char **ostring, size_t *olen, in Curl_urldecode() 164 if(olen) in Curl_urldecode() 166 *olen = ns - *ostring; in Curl_urldecode() 173 * pointer to a malloced string with length given in *olen. 175 * If olen == NULL, no output length is stored. 179 int length, int *olen) in curl_easy_unescape() 191 if(olen) { in curl_easy_unescape() 193 *olen = curlx_uztosi(outputlen); in curl_easy_unescape() 217 unsigned char *out, size_t olen) /* outpu in Curl_hexencode() 120 Curl_urldecode(const char *string, size_t length, char **ostring, size_t *olen, enum urlreject ctrl) Curl_urldecode() argument 178 curl_easy_unescape(struct Curl_easy *data, const char *string, int length, int *olen) curl_easy_unescape() argument 216 Curl_hexencode(const unsigned char *src, size_t len, unsigned char *out, size_t olen) Curl_hexencode() argument [all...] |
/third_party/mbedtls/3rdparty/everest/library/ |
H A D | x25519.c | 59 int mbedtls_x25519_make_params( mbedtls_x25519_context *ctx, size_t *olen, in mbedtls_x25519_make_params() argument 71 *olen = MBEDTLS_X25519_KEY_SIZE_BYTES + 4; in mbedtls_x25519_make_params() 72 if( blen < *olen ) in mbedtls_x25519_make_params() 107 size_t olen = 0; in mbedtls_x25519_get_params() local 111 return mbedtls_ecp_point_write_binary( &key->grp, &key->Q, MBEDTLS_ECP_PF_COMPRESSED, &olen, ctx->peer_point, MBEDTLS_X25519_KEY_SIZE_BYTES ); in mbedtls_x25519_get_params() 119 int mbedtls_x25519_calc_secret( mbedtls_x25519_context *ctx, size_t *olen, in mbedtls_x25519_calc_secret() argument 129 *olen = MBEDTLS_X25519_KEY_SIZE_BYTES; in mbedtls_x25519_calc_secret() 131 if( blen < *olen ) in mbedtls_x25519_calc_secret() 145 int mbedtls_x25519_make_public( mbedtls_x25519_context *ctx, size_t *olen, in mbedtls_x25519_make_public() argument 159 *olen in mbedtls_x25519_make_public() [all...] |
H A D | everest.c | 48 int mbedtls_everest_make_params( mbedtls_ecdh_context_everest *ctx, size_t *olen, in mbedtls_everest_make_params() argument 54 return mbedtls_x25519_make_params( x25519_ctx, olen, buf, blen, f_rng, p_rng ); in mbedtls_everest_make_params() 76 int mbedtls_everest_make_public( mbedtls_ecdh_context_everest *ctx, size_t *olen, in mbedtls_everest_make_public() argument 82 return mbedtls_x25519_make_public( x25519_ctx, olen, buf, blen, f_rng, p_rng ); in mbedtls_everest_make_public() 92 int mbedtls_everest_calc_secret( mbedtls_ecdh_context_everest *ctx, size_t *olen, in mbedtls_everest_calc_secret() argument 98 return mbedtls_x25519_calc_secret( x25519_ctx, olen, buf, blen, f_rng, p_rng ); in mbedtls_everest_calc_secret()
|
/third_party/mbedtls/library/ |
H A D | entropy_poll.c | 44 size_t *olen) in mbedtls_platform_entropy_poll() 47 *olen = 0; in mbedtls_platform_entropy_poll() 63 *olen += ulong_bytes; in mbedtls_platform_entropy_poll() 149 unsigned char *output, size_t len, size_t *olen) in mbedtls_platform_entropy_poll() 159 *olen = (size_t) ret; in mbedtls_platform_entropy_poll() 175 *olen = len; in mbedtls_platform_entropy_poll() 179 *olen = 0; in mbedtls_platform_entropy_poll() 196 *olen = len; in mbedtls_platform_entropy_poll() 206 unsigned char *output, size_t len, size_t *olen) in mbedtls_nv_seed_poll() 223 *olen in mbedtls_nv_seed_poll() 43 mbedtls_platform_entropy_poll(void *data, unsigned char *output, size_t len, size_t *olen) mbedtls_platform_entropy_poll() argument 148 mbedtls_platform_entropy_poll(void *data, unsigned char *output, size_t len, size_t *olen) mbedtls_platform_entropy_poll() argument 205 mbedtls_nv_seed_poll(void *data, unsigned char *output, size_t len, size_t *olen) mbedtls_nv_seed_poll() argument [all...] |
H A D | ecdh.c | 274 size_t *olen, int point_format, in ecdh_make_params_internal() 326 *olen = grp_len + pt_len; in ecdh_make_params_internal() 337 int mbedtls_ecdh_make_params(mbedtls_ecdh_context *ctx, size_t *olen, in mbedtls_ecdh_make_params() argument 350 return ecdh_make_params_internal(ctx, olen, ctx->point_format, buf, blen, in mbedtls_ecdh_make_params() 356 return mbedtls_everest_make_params(&ctx->ctx.everest_ecdh, olen, in mbedtls_ecdh_make_params() 360 return ecdh_make_params_internal(&ctx->ctx.mbed_ecdh, olen, in mbedtls_ecdh_make_params() 493 size_t *olen, int point_format, in ecdh_make_public_internal() 530 return mbedtls_ecp_tls_write_point(&ctx->grp, &ctx->Q, point_format, olen, in ecdh_make_public_internal() 537 int mbedtls_ecdh_make_public(mbedtls_ecdh_context *ctx, size_t *olen, in mbedtls_ecdh_make_public() argument 548 return ecdh_make_public_internal(ctx, olen, ct in mbedtls_ecdh_make_public() 273 ecdh_make_params_internal(mbedtls_ecdh_context_mbed *ctx, size_t *olen, int point_format, unsigned char *buf, size_t blen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, int restart_enabled) ecdh_make_params_internal() argument 492 ecdh_make_public_internal(mbedtls_ecdh_context_mbed *ctx, size_t *olen, int point_format, unsigned char *buf, size_t blen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, int restart_enabled) ecdh_make_public_internal() argument 610 ecdh_calc_secret_internal(mbedtls_ecdh_context_mbed *ctx, size_t *olen, unsigned char *buf, size_t blen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, int restart_enabled) ecdh_calc_secret_internal() argument 665 mbedtls_ecdh_calc_secret(mbedtls_ecdh_context *ctx, size_t *olen, unsigned char *buf, size_t blen, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng) mbedtls_ecdh_calc_secret() argument [all...] |
H A D | cipher.c | 580 size_t ilen, unsigned char *output, size_t *olen) in mbedtls_cipher_update() 598 *olen = 0; in mbedtls_cipher_update() 609 *olen = ilen; in mbedtls_cipher_update() 624 output, ilen, olen); in mbedtls_cipher_update() 632 output, ilen, olen); in mbedtls_cipher_update() 638 *olen = ilen; in mbedtls_cipher_update() 687 *olen += block_size; in mbedtls_cipher_update() 729 *olen += ilen; in mbedtls_cipher_update() 746 *olen = ilen; in mbedtls_cipher_update() 762 *olen in mbedtls_cipher_update() 579 mbedtls_cipher_update(mbedtls_cipher_context_t *ctx, const unsigned char *input, size_t ilen, unsigned char *output, size_t *olen) mbedtls_cipher_update() argument 1011 mbedtls_cipher_finish(mbedtls_cipher_context_t *ctx, unsigned char *output, size_t *olen) mbedtls_cipher_finish() argument 1306 mbedtls_cipher_crypt(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *input, size_t ilen, unsigned char *output, size_t *olen) mbedtls_cipher_crypt() argument 1402 mbedtls_cipher_aead_encrypt(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *ad, size_t ad_len, const unsigned char *input, size_t ilen, unsigned char *output, size_t *olen, unsigned char *tag, size_t tag_len) mbedtls_cipher_aead_encrypt() argument 1479 mbedtls_cipher_aead_decrypt(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *ad, size_t ad_len, const unsigned char *input, size_t ilen, unsigned char *output, size_t *olen, const unsigned char *tag, size_t tag_len) mbedtls_cipher_aead_decrypt() argument 1582 mbedtls_cipher_auth_encrypt_ext(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *ad, size_t ad_len, const unsigned char *input, size_t ilen, unsigned char *output, size_t output_len, size_t *olen, size_t tag_len) mbedtls_cipher_auth_encrypt_ext() argument 1633 mbedtls_cipher_auth_decrypt_ext(mbedtls_cipher_context_t *ctx, const unsigned char *iv, size_t iv_len, const unsigned char *ad, size_t ad_len, const unsigned char *input, size_t ilen, unsigned char *output, size_t output_len, size_t *olen, size_t tag_len) mbedtls_cipher_auth_decrypt_ext() argument [all...] |
H A D | base64.c | 61 int mbedtls_base64_encode(unsigned char *dst, size_t dlen, size_t *olen, in mbedtls_base64_encode() argument 69 *olen = 0; in mbedtls_base64_encode() 76 *olen = SIZE_MAX; in mbedtls_base64_encode() 83 *olen = n + 1; in mbedtls_base64_encode() 119 *olen = (size_t) (p - dst); in mbedtls_base64_encode() 128 int mbedtls_base64_decode(unsigned char *dst, size_t dlen, size_t *olen, in mbedtls_base64_decode() argument 187 *olen = 0; in mbedtls_base64_decode() 199 *olen = n; in mbedtls_base64_decode() 228 *olen = (size_t) (p - dst); in mbedtls_base64_decode()
|
H A D | nist_kw.c | 133 size_t olen, padlen = 0; in mbedtls_nist_kw_wrap() local 197 inbuff, 16, output, &olen); in mbedtls_nist_kw_wrap() 219 inbuff, 16, outbuff, &olen); in mbedtls_nist_kw_wrap() 263 size_t olen; in unwrap() local 286 inbuff, 16, outbuff, &olen); in unwrap() 325 size_t olen; in mbedtls_nist_kw_unwrap() local 379 input, 16, outbuff, &olen); in mbedtls_nist_kw_unwrap() 584 size_t olen; in mbedtls_nist_kw_self_test() local 611 kw_msg_len[i], out, &olen, sizeof(out)); in mbedtls_nist_kw_self_test() 612 if (ret != 0 || kw_out_len[i] != olen || in mbedtls_nist_kw_self_test() [all...] |
H A D | rsa.c | 432 * \param olen The address at which to store the length of 446 size_t *olen) in mbedtls_ct_rsaes_pkcs1_v15_unpadding() 453 * the designated outputs (output, olen, return value). Otherwise in mbedtls_ct_rsaes_pkcs1_v15_unpadding() 559 * of errors (bad padding or output too large), the value of *olen in mbedtls_ct_rsaes_pkcs1_v15_unpadding() 562 *olen = plaintext_size; in mbedtls_ct_rsaes_pkcs1_v15_unpadding() 1239 size_t olen; in mbedtls_rsa_public() local 1261 olen = ctx->len; in mbedtls_rsa_public() 1263 MBEDTLS_MPI_CHK(mbedtls_mpi_write_binary(&T, output, olen)); in mbedtls_rsa_public() 1415 size_t olen; in mbedtls_rsa_private() local 1570 olen in mbedtls_rsa_private() 442 mbedtls_ct_rsaes_pkcs1_v15_unpadding(unsigned char *input, size_t ilen, unsigned char *output, size_t output_max_len, size_t *olen) mbedtls_ct_rsaes_pkcs1_v15_unpadding() argument 1768 size_t olen; mbedtls_rsa_rsaes_oaep_encrypt() local 1838 size_t nb_pad, olen; mbedtls_rsa_rsaes_pkcs1_v15_encrypt() local 1915 mbedtls_rsa_rsaes_oaep_decrypt(mbedtls_rsa_context *ctx, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, const unsigned char *label, size_t label_len, size_t *olen, const unsigned char *input, unsigned char *output, size_t output_max_len) mbedtls_rsa_rsaes_oaep_decrypt() argument 2042 mbedtls_rsa_rsaes_pkcs1_v15_decrypt(mbedtls_rsa_context *ctx, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, size_t *olen, const unsigned char *input, unsigned char *output, size_t output_max_len) mbedtls_rsa_rsaes_pkcs1_v15_decrypt() argument 2083 mbedtls_rsa_pkcs1_decrypt(mbedtls_rsa_context *ctx, int (*f_rng)(void *, unsigned char *, size_t), void *p_rng, size_t *olen, const unsigned char *input, unsigned char *output, size_t output_max_len) mbedtls_rsa_pkcs1_decrypt() argument 2120 size_t olen; rsa_rsassa_pss_sign_no_mode_check() local [all...] |
H A D | ssl_tls12_server.c | 1690 size_t *olen) in ssl_write_cid_ext() 1696 *olen = 0; in ssl_write_cid_ext() 1727 *olen = ssl->own_cid_len + 5; in ssl_write_cid_ext() 1734 size_t *olen) in ssl_write_encrypt_then_mac_ext() 1761 *olen = 0; in ssl_write_encrypt_then_mac_ext() 1773 *olen = 4; in ssl_write_encrypt_then_mac_ext() 1780 size_t *olen) in ssl_write_extended_ms_ext() 1785 *olen = 0; in ssl_write_extended_ms_ext() 1798 *olen = 4; in ssl_write_extended_ms_ext() 1805 size_t *olen) in ssl_write_session_ticket_ext() 1688 ssl_write_cid_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_cid_ext() argument 1732 ssl_write_encrypt_then_mac_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_encrypt_then_mac_ext() argument 1778 ssl_write_extended_ms_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_extended_ms_ext() argument 1803 ssl_write_session_ticket_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_session_ticket_ext() argument 1826 ssl_write_renegotiation_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_renegotiation_ext() argument 1864 ssl_write_max_fragment_length_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_max_fragment_length_ext() argument 1892 ssl_write_supported_point_formats_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_supported_point_formats_ext() argument 1923 ssl_write_ecjpake_kkpp_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_ecjpake_kkpp_ext() argument 1978 ssl_write_use_srtp_ext(mbedtls_ssl_context *ssl, unsigned char *buf, size_t *olen) ssl_write_use_srtp_ext() argument 2166 size_t olen, ext_len = 0, n; ssl_write_server_hello() local [all...] |
H A D | entropy_poll.h | 46 unsigned char *output, size_t len, size_t *olen); 59 unsigned char *output, size_t len, size_t *olen); 69 unsigned char *output, size_t len, size_t *olen);
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 77 unsigned char *out, size_t olen); 290 unsigned char *out, size_t olen) in tls1_prf_P_hash() 324 if (olen > chunk) { in tls1_prf_P_hash() 331 if (olen <= chunk) { in tls1_prf_P_hash() 335 memcpy(out, Ai, olen); in tls1_prf_P_hash() 338 if (!EVP_MAC_final(ctx, out, NULL, olen)) in tls1_prf_P_hash() 343 olen -= chunk; in tls1_prf_P_hash() 376 unsigned char *out, size_t olen) in tls1_prf_alg() 387 seed, seed_len, out, olen)) in tls1_prf_alg() 390 if ((tmp = OPENSSL_malloc(olen)) in tls1_prf_alg() 287 tls1_prf_P_hash(EVP_MAC_CTX *ctx_init, const unsigned char *sec, size_t sec_len, const unsigned char *seed, size_t seed_len, unsigned char *out, size_t olen) tls1_prf_P_hash() argument 373 tls1_prf_alg(EVP_MAC_CTX *mdctx, EVP_MAC_CTX *sha1ctx, const unsigned char *sec, size_t slen, const unsigned char *seed, size_t seed_len, unsigned char *out, size_t olen) tls1_prf_alg() argument [all...] |
/third_party/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 77 unsigned char *out, size_t olen); 290 unsigned char *out, size_t olen) in tls1_prf_P_hash() 324 if (olen > chunk) { in tls1_prf_P_hash() 331 if (olen <= chunk) { in tls1_prf_P_hash() 335 memcpy(out, Ai, olen); in tls1_prf_P_hash() 338 if (!EVP_MAC_final(ctx, out, NULL, olen)) in tls1_prf_P_hash() 343 olen -= chunk; in tls1_prf_P_hash() 376 unsigned char *out, size_t olen) in tls1_prf_alg() 387 seed, seed_len, out, olen)) in tls1_prf_alg() 390 if ((tmp = OPENSSL_malloc(olen)) in tls1_prf_alg() 287 tls1_prf_P_hash(EVP_MAC_CTX *ctx_init, const unsigned char *sec, size_t sec_len, const unsigned char *seed, size_t seed_len, unsigned char *out, size_t olen) tls1_prf_P_hash() argument 373 tls1_prf_alg(EVP_MAC_CTX *mdctx, EVP_MAC_CTX *sha1ctx, const unsigned char *sec, size_t slen, const unsigned char *seed, size_t seed_len, unsigned char *out, size_t olen) tls1_prf_alg() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | base64.c | 28 size_t olen; in base64_gen_encode() local 33 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */ in base64_gen_encode() 35 olen += olen / 72; /* line feeds */ in base64_gen_encode() 36 olen++; /* nul termination */ in base64_gen_encode() 37 if (olen < len) in base64_gen_encode() 39 out = os_malloc(olen); in base64_gen_encode() 91 size_t i, count, olen; in base64_gen_decode() local 110 olen = (count + extra_pad) / 4 * 3; in base64_gen_decode() 111 pos = out = os_malloc(olen); in base64_gen_decode() [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
H A D | base64.c | 31 size_t olen; in base64_gen_encode() local 36 olen = len * 4 / 3 + 4; /* 3-byte blocks to 4-byte */ in base64_gen_encode() 38 olen += olen / 72; /* line feeds */ in base64_gen_encode() 39 olen++; /* nul termination */ in base64_gen_encode() 40 if (olen < len) in base64_gen_encode() 42 out = os_malloc(olen); in base64_gen_encode() 93 size_t i, count, olen; in base64_gen_decode() local 112 olen = (count + extra_pad) / 4 * 3; in base64_gen_decode() 113 pos = out = os_malloc(olen); in base64_gen_decode() [all...] |
/third_party/toybox/toys/posix/ |
H A D | uudecode.c | 54 int olen; in uudecode_main() local 63 olen = 0; in uudecode_main() 65 if (!m) olen = (*(in++) - 32) & 0x3f; in uudecode_main() 72 if (olen < 1) break; in uudecode_main() 73 if (olen < 3) len = olen + 1; in uudecode_main() 97 olen--; in uudecode_main()
|
/third_party/mbedtls/programs/aes/ |
H A D | crypt_and_hash.c | 64 size_t keylen, ilen, olen; in main() local 339 if (mbedtls_cipher_update(&cipher_ctx, buffer, ilen, output, &olen) != 0) { in main() 344 if (mbedtls_md_hmac_update(&md_ctx, output, olen) != 0) { in main() 349 if (fwrite(output, 1, olen, fout) != olen) { in main() 350 mbedtls_fprintf(stderr, "fwrite(%ld bytes) failed\n", (long) olen); in main() 355 if (mbedtls_cipher_finish(&cipher_ctx, output, &olen) != 0) { in main() 359 if (mbedtls_md_hmac_update(&md_ctx, output, olen) != 0) { in main() 364 if (fwrite(output, 1, olen, fout) != olen) { in main() [all...] |
/third_party/curl/tests/unit/ |
H A D | unit1655.c | 104 size_t olen = 100000; variable 113 &olen); 133 fail_unless(olen <= sizeof(victim.dohbuffer), "wrote outside bounds"); 134 fail_unless(olen > strlen(name), "unrealistic low size"); 152 size_t olen; variable 156 fail_if(olen1 == magic1, "olen has not been assigned properly"); 163 fail_if(olen2 == magic1, "olen has not been assigned properly"); 164 fail_unless(olen1 == olen2, "olen should not grow for a trailing dot"); 170 fail_if(olen2 == magic1, "olen has not been assigned properly"); 171 fail_unless(olen1 + 1 == olen2, "olen shoul [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | fils_hlp.c | 59 u8 opt, olen; in fils_dhcp_request() local 66 olen = *pos++; in fils_dhcp_request() 67 if (olen > end - pos) in fils_dhcp_request() 72 if (olen > 0) in fils_dhcp_request() 80 os_memmove(pos, pos + 2 + olen, end - pos - 2 - olen); in fils_dhcp_request() 81 end -= 2 + olen; in fils_dhcp_request() 82 olen = 0; in fils_dhcp_request() 85 pos += olen; in fils_dhcp_request() 98 u8 opt, olen; in fils_dhcp_request() local 202 u8 opt, olen; fils_dhcp_handler() local 360 u8 opt, olen; fils_process_hlp_dhcp() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | fils_hlp.c | 59 u8 opt, olen; in fils_dhcp_request() local 66 olen = *pos++; in fils_dhcp_request() 67 if (olen > end - pos) in fils_dhcp_request() 72 if (olen > 0) in fils_dhcp_request() 80 os_memmove(pos, pos + 2 + olen, end - pos - 2 - olen); in fils_dhcp_request() 81 end -= 2 + olen; in fils_dhcp_request() 82 olen = 0; in fils_dhcp_request() 85 pos += olen; in fils_dhcp_request() 98 u8 opt, olen; in fils_dhcp_request() local 202 u8 opt, olen; fils_dhcp_handler() local 360 u8 opt, olen; fils_process_hlp_dhcp() local [all...] |
/third_party/mbedtls/programs/cipher/ |
H A D | cipher_aead_demo.c | 195 size_t olen; in aead_encrypt() local 203 CHK(mbedtls_cipher_update(ctx, part1, part1_len, p, &olen)); in aead_encrypt() 204 p += olen; in aead_encrypt() 205 CHK(mbedtls_cipher_update(ctx, part2, part2_len, p, &olen)); in aead_encrypt() 206 p += olen; in aead_encrypt() 207 CHK(mbedtls_cipher_finish(ctx, p, &olen)); in aead_encrypt() 208 p += olen; in aead_encrypt() 212 olen = p - out; in aead_encrypt() 213 print_buf("out", out, olen); in aead_encrypt()
|
/third_party/mbedtls/programs/psa/ |
H A D | aead_demo.c | 210 size_t olen, olen_tag; in aead_encrypt() local 220 PSA_CHECK(psa_aead_update(&op, part1, part1_len, p, end - p, &olen)); in aead_encrypt() 221 p += olen; in aead_encrypt() 222 PSA_CHECK(psa_aead_update(&op, part2, part2_len, p, end - p, &olen)); in aead_encrypt() 223 p += olen; in aead_encrypt() 224 PSA_CHECK(psa_aead_finish(&op, p, end - p, &olen, in aead_encrypt() 226 p += olen; in aead_encrypt() 230 olen = p - out; in aead_encrypt() 231 print_buf("out", out, olen); in aead_encrypt()
|
/third_party/node/deps/base64/base64/lib/arch/neon32/ |
H A D | codec.c | 59 enc_loop_neon32(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 60 enc_loop_generic_32(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 71 dec_loop_neon32(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION() 72 dec_loop_generic_32(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION()
|
/third_party/node/deps/base64/base64/lib/arch/neon64/ |
H A D | codec.c | 79 enc_loop_neon64(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 80 enc_loop_generic_64(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 91 dec_loop_neon64(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION() 92 dec_loop_generic_32(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION()
|
/third_party/node/deps/base64/base64/lib/arch/generic/ |
H A D | codec.c | 25 enc_loop_generic_32(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 27 enc_loop_generic_64(&s, &slen, &o, &olen); in BASE64_ENC_FUNCTION() 36 dec_loop_generic_32(&s, &slen, &o, &olen); in BASE64_DEC_FUNCTION()
|