Home
last modified time | relevance | path

Searched refs:datal (Results 1 – 11 of 11) sorted by relevance

/freebsd/secure/lib/libcrypt/
H A Dblowfish.c398 u_int32_t datal; in Blowfish_expand0state() local
409 datal = 0x00000000; in Blowfish_expand0state()
412 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
414 c->P[i] = datal; in Blowfish_expand0state()
420 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
422 c->S[i][k] = datal; in Blowfish_expand0state()
436 u_int32_t datal; in Blowfish_expandstate() local
447 datal = 0x00000000; in Blowfish_expandstate()
450 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
452 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
[all …]
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_meth.c72 int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written) in bwrite_conv() argument
76 if (datal > INT_MAX) in bwrite_conv()
77 datal = INT_MAX; in bwrite_conv()
79 ret = bio->method->bwrite_old(bio, data, (int)datal); in bwrite_conv()
120 int bread_conv(BIO *bio, char *data, size_t datal, size_t *readbytes) in bread_conv() argument
124 if (datal > INT_MAX) in bread_conv()
125 datal = INT_MAX; in bread_conv()
127 ret = bio->method->bread_old(bio, data, (int)datal); in bread_conv()
/freebsd/crypto/openssh/openbsd-compat/
H A Dblowfish.c427 u_int32_t datal; in Blowfish_expand0state() local
438 datal = 0x00000000; in Blowfish_expand0state()
441 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
443 c->P[i] = datal; in Blowfish_expand0state()
449 Blowfish_encipher(c, &datal, &datar); in Blowfish_expand0state()
451 c->S[i][k] = datal; in Blowfish_expand0state()
466 u_int32_t datal; in Blowfish_expandstate() local
477 datal = 0x00000000; in Blowfish_expandstate()
480 datal ^= Blowfish_stream2word(data, databytes, &j); in Blowfish_expandstate()
482 Blowfish_encipher(c, &datal, &datar); in Blowfish_expandstate()
[all …]
/freebsd/crypto/openssl/include/internal/
H A Dbio.h38 int bwrite_conv(BIO *bio, const char *data, size_t datal, size_t *written);
39 int bread_conv(BIO *bio, char *data, size_t datal, size_t *read);
/freebsd/crypto/openssl/crypto/evp/
H A Devp_key.c82 int datal, int count, unsigned char *key, in EVP_BytesToKey() argument
107 if (!EVP_DigestUpdate(c, data, datal)) in EVP_BytesToKey()
/freebsd/crypto/openssl/doc/man3/
H A DEVP_BytesToKey.pod13 const unsigned char *data, int datal, int count,
22 B<datal> bytes which is used to derive the keying data. B<count> is the
H A DPEM_read_bio_PrivateKey.pod435 password is passed to EVP_BytesToKey() using the I<data> and I<datal>
/freebsd/lib/libnvmf/
H A Dnvmf_tcp.c504 if (le32toh(h2c->datal) > qp->maxh2cdata) { in nvmf_tcp_handle_h2c_data()
522 data_len = le32toh(h2c->datal); in nvmf_tcp_handle_h2c_data()
526 offsetof(struct nvme_tcp_h2c_data_hdr, datal), pdu->hdr, in nvmf_tcp_handle_h2c_data()
592 data_len = le32toh(c2h->datal); in nvmf_tcp_handle_c2h_data()
596 offsetof(struct nvme_tcp_c2h_data_hdr, datal), pdu->hdr, in nvmf_tcp_handle_c2h_data()
671 h2c.datal = htole32(len); in tcp_send_h2c_pdu()
1418 c2h.datal = htole32(len); in tcp_send_c2h_pdu()
/freebsd/sys/dev/nvmf/
H A Dnvmf_tcp.c645 if (le32toh(h2c->datal) > qp->maxh2cdata) { in nvmf_tcp_handle_h2c_data()
689 data_len = le32toh(h2c->datal); in nvmf_tcp_handle_h2c_data()
694 offsetof(struct nvme_tcp_h2c_data_hdr, datal), pdu->m, in nvmf_tcp_handle_h2c_data()
781 data_len = le32toh(c2h->datal); in nvmf_tcp_handle_c2h_data()
786 offsetof(struct nvme_tcp_c2h_data_hdr, datal), pdu->m, in nvmf_tcp_handle_c2h_data()
935 h2c.datal = htole32(len); in tcp_send_h2c_pdu()
1799 c2h.datal = htole32(len); in tcp_send_c2h_pdu()
/freebsd/sys/dev/cxgbe/nvmf/
H A Dnvmf_che.c1371 if (le32toh(h2c->datal) > qp->maxh2cdata) { in nvmf_che_handle_h2c_data()
1427 data_len = le32toh(h2c->datal); in nvmf_che_handle_h2c_data()
1432 offsetof(struct nvme_tcp_h2c_data_hdr, datal), pdu->m, in nvmf_che_handle_h2c_data()
1561 data_len = le32toh(c2h->datal); in nvmf_che_handle_c2h_data()
1566 offsetof(struct nvme_tcp_c2h_data_hdr, datal), pdu->m, in nvmf_che_handle_c2h_data()
1759 h2c.datal = htole32(len); in che_send_h2c_pdu()
3010 c2h.datal = htole32(len); in che_send_c2h_pdu()
/freebsd/crypto/openssl/include/openssl/
H A Devp.h763 const unsigned char *data, int datal, int count,