Home
last modified time | relevance | path

Searched refs:stride (Results 1 – 22 of 22) sorted by relevance

/openssl/crypto/sm4/asm/
H A Dsm4-riscv64-zvksed.pl153 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 Dpoll_immediate.c15 #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 Dpktsplitbio.c33 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 Dnoisydgrambio.c169 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 Dquictestlib.c1069 # 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 Dquictestlib.h237 size_t stride,
/openssl/test/
H A Devp_xof_test.c291 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 Dquicfaultstest.c242 static int on_datagram_cb(QTEST_FAULT *fault, BIO_MSG *m, size_t stride, in on_datagram_cb() argument
H A Dquic_multistream_test.c99 BIO_MSG *m, size_t stride);
133 BIO_MSG *m, size_t stride);
983 BIO_MSG *msg, size_t stride, in helper_datagram_listener() argument
988 return h->qtf_datagram_cb(h, msg, stride); in helper_datagram_listener()
4928 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 Dbio_lib.c395 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 Dbss_dgram.c140 # 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 Dbss_conn.c816 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 Dbss_dgram_pair.c186 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 Dbn_exp.c844 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 DBIO_set_callback.pod40 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 DBIO_sendmmsg.pod21 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 DSSL_poll.pod69 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 Ddgram-api.md45 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 Dquic-fault-injector.md374 size_t stride,
/openssl/apps/lib/
H A Ds_cb.c472 + (i * mmsgargs->stride)); in bio_dump_callback()
492 + (i * mmsgargs->stride)); in bio_dump_callback()
/openssl/include/openssl/
H A Dbio.h.in383 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 Dssl.h.in2484 size_t stride,

Completed in 90 milliseconds