Home
last modified time | relevance | path

Searched refs:alloced (Results 1 - 21 of 21) sorted by relevance

/third_party/node/deps/openssl/openssl/ssl/record/
H A Dtls_pad.c28 int *alloced,
38 int *alloced,
46 int *alloced,
56 * |recdata| buffer. If allocated then |*alloced| is set to 1, otherwise it is
72 int *alloced, in ssl3_cbc_remove_padding_and_mac()
92 return ssl3_cbc_copy_mac(reclen, origreclen, recdata, mac, alloced, in ssl3_cbc_remove_padding_and_mac()
101 * |recdata| buffer. If allocated then |*alloced| is set to 1, otherwise it is
117 int *alloced, in tls1_cbc_remove_padding_and_mac()
176 return ssl3_cbc_copy_mac(reclen, origreclen, recdata, mac, alloced, in tls1_cbc_remove_padding_and_mac()
201 int *alloced, in ssl3_cbc_copy_mac()
68 ssl3_cbc_remove_padding_and_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, OSSL_LIB_CTX *libctx) ssl3_cbc_remove_padding_and_mac() argument
113 tls1_cbc_remove_padding_and_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, int aead, OSSL_LIB_CTX *libctx) tls1_cbc_remove_padding_and_mac() argument
197 ssl3_cbc_copy_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, size_t good, OSSL_LIB_CTX *libctx) ssl3_cbc_copy_mac() argument
[all...]
H A Drecord_local.h114 int *alloced,
121 int *alloced,
H A Dssl3_record.c790 if (macbufs[j].alloced) in ssl3_get_record()
927 mac->alloced = 0; in ssl3_enc()
952 (mac != NULL) ? &mac->alloced : NULL, in ssl3_enc()
1217 macs[0].alloced = 0; in tls1_enc()
1273 (macs != NULL) ? &macs[ctr].alloced in tls1_enc()
1685 if (macbuf.alloced) in dtls1_process_record()
H A Drecord.h183 int alloced; member
/third_party/openssl/ssl/record/
H A Dtls_pad.c28 int *alloced,
38 int *alloced,
46 int *alloced,
56 * |recdata| buffer. If allocated then |*alloced| is set to 1, otherwise it is
72 int *alloced, in ssl3_cbc_remove_padding_and_mac()
92 return ssl3_cbc_copy_mac(reclen, origreclen, recdata, mac, alloced, in ssl3_cbc_remove_padding_and_mac()
101 * |recdata| buffer. If allocated then |*alloced| is set to 1, otherwise it is
117 int *alloced, in tls1_cbc_remove_padding_and_mac()
176 return ssl3_cbc_copy_mac(reclen, origreclen, recdata, mac, alloced, in tls1_cbc_remove_padding_and_mac()
201 int *alloced, in ssl3_cbc_copy_mac()
68 ssl3_cbc_remove_padding_and_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, OSSL_LIB_CTX *libctx) ssl3_cbc_remove_padding_and_mac() argument
113 tls1_cbc_remove_padding_and_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, int aead, OSSL_LIB_CTX *libctx) tls1_cbc_remove_padding_and_mac() argument
197 ssl3_cbc_copy_mac(size_t *reclen, size_t origreclen, unsigned char *recdata, unsigned char **mac, int *alloced, size_t block_size, size_t mac_size, size_t good, OSSL_LIB_CTX *libctx) ssl3_cbc_copy_mac() argument
[all...]
H A Drecord_local.h114 int *alloced,
121 int *alloced,
H A Dssl3_record.c790 if (macbufs[j].alloced) in ssl3_get_record()
927 mac->alloced = 0; in ssl3_enc()
952 (mac != NULL) ? &mac->alloced : NULL, in ssl3_enc()
1217 macs[0].alloced = 0; in tls1_enc()
1273 (macs != NULL) ? &macs[ctr].alloced in tls1_enc()
1685 if (macbuf.alloced) in dtls1_process_record()
H A Drecord.h183 int alloced; member
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dciphercommon_block.c23 int *alloced,
31 int *alloced,
149 * alloced: Whether the MAC is stored in a newly allocated buffer, or whether
161 unsigned char **mac, int *alloced, size_t macsize, in ossl_cipher_tlsunpadblock()
169 alloced, blocksize, macsize, in ossl_cipher_tlsunpadblock()
183 alloced, blocksize, macsize, in ossl_cipher_tlsunpadblock()
158 ossl_cipher_tlsunpadblock(OSSL_LIB_CTX *libctx, unsigned int tlsversion, unsigned char *buf, size_t *buflen, size_t blocksize, unsigned char **mac, int *alloced, size_t macsize, int aead) ossl_cipher_tlsunpadblock() argument
H A Dciphercommon.c181 if (ctx != NULL && ctx->alloced) { in ossl_cipher_generic_reset_ctx()
183 ctx->alloced = 0; in ossl_cipher_generic_reset_ctx()
318 if (ctx->alloced) { in ossl_cipher_generic_block_update()
320 ctx->alloced = 0; in ossl_cipher_generic_block_update()
329 blksz, &ctx->tlsmac, &ctx->alloced, in ossl_cipher_generic_block_update()
H A Dcipher_chacha20.c75 if (dupctx != NULL && dupctx->base.tlsmac != NULL && dupctx->base.alloced) { in chacha20_dupctx()
H A Dcipher_aes_wrp.c78 if (dctx != NULL && dctx->base.tlsmac != NULL && dctx->base.alloced) { in aes_wrap_dupctx()
H A Dcipher_chacha20_poly1305.c70 if (dctx != NULL && dctx->base.tlsmac != NULL && dctx->base.alloced) { in chacha20_poly1305_dupctx()
/third_party/openssl/providers/implementations/ciphers/
H A Dciphercommon_block.c23 int *alloced,
31 int *alloced,
149 * alloced: Whether the MAC is stored in a newly allocated buffer, or whether
161 unsigned char **mac, int *alloced, size_t macsize, in ossl_cipher_tlsunpadblock()
169 alloced, blocksize, macsize, in ossl_cipher_tlsunpadblock()
183 alloced, blocksize, macsize, in ossl_cipher_tlsunpadblock()
158 ossl_cipher_tlsunpadblock(OSSL_LIB_CTX *libctx, unsigned int tlsversion, unsigned char *buf, size_t *buflen, size_t blocksize, unsigned char **mac, int *alloced, size_t macsize, int aead) ossl_cipher_tlsunpadblock() argument
H A Dciphercommon.c178 if (ctx != NULL && ctx->alloced) { in ossl_cipher_generic_reset_ctx()
180 ctx->alloced = 0; in ossl_cipher_generic_reset_ctx()
309 if (ctx->alloced) { in ossl_cipher_generic_block_update()
311 ctx->alloced = 0; in ossl_cipher_generic_block_update()
320 blksz, &ctx->tlsmac, &ctx->alloced, in ossl_cipher_generic_block_update()
/third_party/python/Objects/
H A Dlistobject.c1201 * alloced entries.
1204 Py_ssize_t alloced; member
1553 ms->alloced = (list_size + 1) / 2; in merge_init()
1555 /* ms->alloced describes how many keys will be stored at in merge_init()
1557 ms->alloced is capped at half of MERGESTATE_TEMP_SIZE. */ in merge_init()
1558 if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced) in merge_init()
1559 ms->alloced = MERGESTATE_TEMP_SIZE / 2; in merge_init()
1560 ms->a.values = &ms->temparray[ms->alloced]; in merge_init()
1563 ms->alloced = MERGESTATE_TEMP_SIZE; in merge_init()
1596 if (need <= ms->alloced) in merge_getmem()
[all...]
/third_party/alsa-utils/aplay/
H A Daplay.c3465 int alloced = 0; local
3481 alloced = 1;
3504 if (alloced)
3507 if (alloced)
3518 int alloced = 0; local
3534 alloced = 1;
3557 if (alloced)
3560 if (alloced)
/third_party/node/deps/openssl/openssl/providers/implementations/include/prov/
H A Dciphercommon.h69 int alloced; /* member
/third_party/openssl/providers/implementations/include/prov/
H A Dciphercommon.h68 int alloced; /* member
/third_party/node/deps/openssl/openssl/apps/
H A Ds_server.c262 size_t alloced; member
289 wbuf->alloced = 1024; in ebcdic_new()
341 if (inl > (num = wbuf->alloced)) { in ebcdic_write()
348 wbuf->alloced = num; in ebcdic_write()
/third_party/openssl/apps/
H A Ds_server.c262 size_t alloced; member
289 wbuf->alloced = 1024; in ebcdic_new()
341 if (inl > (num = wbuf->alloced)) { in ebcdic_write()
348 wbuf->alloced = num; in ebcdic_write()

Completed in 29 milliseconds