/openssl/crypto/sm4/asm/ |
H A D | sm4-riscv64-zvksed.pl | 153 li $stride, -4 154 @{[vsse32_v $vk7, $keys, $stride]} # rk[31:28] 156 @{[vsse32_v $vk6, $keys, $stride]} # rk[27:24] 158 @{[vsse32_v $vk5, $keys, $stride]} # rk[23:20] 164 @{[vsse32_v $vk2, $keys, $stride]} # rk[11:8] 166 @{[vsse32_v $vk1, $keys, $stride]} # rk[7:4] 168 @{[vsse32_v $vk0, $keys, $stride]} # rk[3:0] 223 li $stride, -4 225 @{[vsse32_v $vdata, $out, $stride]} 279 li $stride, -4 [all …]
|
/openssl/ssl/rio/ |
H A D | poll_immediate.c | 15 #define ITEM_N(items, stride, n) \ argument 16 (*(SSL_POLL_ITEM *)((char *)(items) + (n)*(stride))) 23 ITEM_N(items, stride, j).revents = 0; \ 31 ITEM_N(items, stride, i).revents = SSL_POLL_EVENT_F; \ 38 size_t stride, in SSL_poll() argument 71 item = &ITEM_N(items, stride, i); in SSL_poll()
|
/openssl/test/helpers/ |
H A D | pktsplitbio.c | 33 static int pkt_split_dgram_sendmmsg(BIO *bio, BIO_MSG *msg, size_t stride, in pkt_split_dgram_sendmmsg() argument 46 return BIO_sendmmsg(next, msg, stride, num_msg, flags, msgs_processed); in pkt_split_dgram_sendmmsg() 49 static int pkt_split_dgram_recvmmsg(BIO *bio, BIO_MSG *msg, size_t stride, in pkt_split_dgram_recvmmsg() argument 74 if (!BIO_recvmmsg(next, msg, stride, num_msg, flags, msgs_processed)) in pkt_split_dgram_recvmmsg()
|
H A D | noisydgrambio.c | 169 static int noisy_dgram_sendmmsg(BIO *bio, BIO_MSG *msg, size_t stride, in noisy_dgram_sendmmsg() argument 199 return BIO_sendmmsg(next, msg, stride, num_msg, flags, msgs_processed); in noisy_dgram_sendmmsg() 302 static int noisy_dgram_recvmmsg(BIO *bio, BIO_MSG *msg, size_t stride, in noisy_dgram_recvmmsg() argument 336 if (!BIO_recvmmsg(next, msg, stride, num_msg, flags, msgs_processed)) in noisy_dgram_recvmmsg()
|
H A D | quictestlib.c | 1069 # define BIO_MSG_N(array, stride, n) (*(BIO_MSG *)((char *)(array) + (n)*(stride))) argument 1071 static int pcipher_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, in pcipher_sendmmsg() argument 1089 return BIO_sendmmsg(next, msg, stride, num_msg, flags, num_processed); in pcipher_sendmmsg() 1097 fault->msg = BIO_MSG_N(msg, stride, i); in pcipher_sendmmsg() 1142 && !fault->datagramcb(fault, &fault->msg, stride, in pcipher_sendmmsg() 1146 if (!BIO_sendmmsg(next, &fault->msg, stride, 1, flags, &tmpnump)) { in pcipher_sendmmsg()
|
H A D | quictestlib.h | 237 size_t stride,
|
/openssl/test/ |
H A D | evp_xof_test.c | 291 size_t i, stride, sz; in shake_absorb_test() local 296 for (stride = 1; stride < total; ++stride) { in shake_absorb_test() 299 sz += stride; in shake_absorb_test()
|
H A D | quicfaultstest.c | 242 static int on_datagram_cb(QTEST_FAULT *fault, BIO_MSG *m, size_t stride, in on_datagram_cb() argument
|
H A D | quic_multistream_test.c | 99 BIO_MSG *m, size_t stride); 133 BIO_MSG *m, size_t stride); 986 BIO_MSG *msg, size_t stride, in helper_datagram_listener() argument 991 return h->qtf_datagram_cb(h, msg, stride); in helper_datagram_listener() 4936 static int server_gen_version_neg(struct helper *h, BIO_MSG *msg, size_t stride) in server_gen_version_neg() argument
|
/openssl/crypto/bio/ |
H A D | bio_lib.c | 395 size_t stride, size_t num_msg, uint64_t flags, in BIO_sendmmsg() argument 415 args.stride = stride; in BIO_sendmmsg() 432 ret = b->method->bsendmmsg(b, msg, stride, num_msg, flags, msgs_processed); in BIO_sendmmsg() 442 size_t stride, size_t num_msg, uint64_t flags, in BIO_recvmmsg() argument 462 args.stride = stride; in BIO_recvmmsg() 479 ret = b->method->brecvmmsg(b, msg, stride, num_msg, flags, msgs_processed); in BIO_recvmmsg()
|
H A D | bss_dgram.c | 140 # define BIO_MSG_N(array, stride, n) (*(BIO_MSG *)((char *)(array) + (n)*(stride))) argument 150 size_t stride, size_t num_msg, 153 size_t stride, size_t num_msg, 1314 static int dgram_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, in dgram_sendmmsg() argument 1377 if (BIO_MSG_N(msg, stride, i).local != NULL) { in dgram_sendmmsg() 1402 BIO_MSG_N(msg, stride, i).data_len = mh[i].msg_len; in dgram_sendmmsg() 1403 BIO_MSG_N(msg, stride, i).flags = 0; in dgram_sendmmsg() 1516 size_t stride, size_t num_msg, in dgram_recvmmsg() argument 1595 BIO_MSG_N(msg, stride, i).data_len = mh[i].msg_len; in dgram_recvmmsg() 1596 BIO_MSG_N(msg, stride, i).flags = 0; in dgram_recvmmsg() [all …]
|
H A D | bss_conn.c | 816 static int conn_sendmmsg(BIO *bio, BIO_MSG *msg, size_t stride, size_t num_msgs, in conn_sendmmsg() argument 843 return BIO_sendmmsg(data->dgram_bio, msg, stride, num_msgs, in conn_sendmmsg() 847 static int conn_recvmmsg(BIO *bio, BIO_MSG *msg, size_t stride, size_t num_msgs, in conn_recvmmsg() argument 874 return BIO_recvmmsg(data->dgram_bio, msg, stride, num_msgs, in conn_recvmmsg()
|
H A D | bss_dgram_pair.c | 186 static int dgram_pair_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, 189 static int dgram_pair_recvmmsg(BIO *b, BIO_MSG *msg, size_t stride, 197 #define BIO_MSG_N(array, n) (*(BIO_MSG *)((char *)(array) + (n)*stride)) 1034 size_t stride, size_t num_msg, in dgram_pair_recvmmsg() argument 1284 size_t stride, size_t num_msg, in dgram_pair_sendmmsg() argument
|
/openssl/crypto/bn/ |
H A D | bn_exp.c | 844 int stride = 5 * (6 - (top / 16 - 1)); /* multiple of 5, but less in BN_mod_exp_mont_consttime() local 893 if (bits < stride) in BN_mod_exp_mont_consttime() 894 stride = bits; in BN_mod_exp_mont_consttime() 895 bits -= stride; in BN_mod_exp_mont_consttime() 898 if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride)) in BN_mod_exp_mont_consttime() 901 if ((*pwr5_worker) (tmp.d, np, n0, powerbuf, wvalue, stride)) in BN_mod_exp_mont_consttime() 904 bits += stride - 5; in BN_mod_exp_mont_consttime() 905 wvalue >>= stride - 5; in BN_mod_exp_mont_consttime()
|
/openssl/doc/man3/ |
H A D | BIO_set_callback.pod | 40 size_t stride, num_msg; 228 =item B<BIO_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, size_t num_msg, uint64_t flags, size_t *m… 251 =item B<BIO_recvmmsg(BIO *b, BIO_MSG *msg, size_t stride, size_t num_msg, uint64_t flags, size_t *m…
|
H A D | BIO_sendmmsg.pod | 21 size_t stride, size_t num_msg, uint64_t flags, 24 size_t stride, size_t num_msg, uint64_t flags, 94 The I<stride> argument must be set to C<sizeof(BIO_MSG)>. This argument
|
H A D | SSL_poll.pod | 69 size_t stride, 123 be set to the number of entries in the array, and I<stride> must be set to
|
/openssl/doc/designs/quic-design/ |
H A D | dgram-api.md | 45 ABI compatibility using a `stride` argument which callers must set to 46 `sizeof(BIO_MSG)`. Implementations can examine the stride field to determine 115 ossl_ssize_t BIO_sendmmsg(BIO *b, BIO_MSG *msg, size_t stride, 117 ossl_ssize_t BIO_recvmmsg(BIO *b, BIO_MSG *msg, size_t stride, 132 - `stride` must be set to `sizeof(BIO_MSG)`.
|
H A D | quic-fault-injector.md | 374 size_t stride,
|
/openssl/apps/lib/ |
H A D | s_cb.c | 497 + (i * mmsgargs->stride)); in bio_dump_callback() 517 + (i * mmsgargs->stride)); in bio_dump_callback()
|
/openssl/include/openssl/ |
H A D | bio.h.in | 383 size_t stride, num_msg; member 716 size_t stride, size_t num_msg, uint64_t flags, 723 size_t stride, size_t num_msg, uint64_t flags,
|
H A D | ssl.h.in | 2484 size_t stride,
|