Searched refs:xr (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-current/sys/dev/xdma/
H A Dxdma_queue.c50 struct xdma_request *xr; local
53 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) {
54 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next);
59 if (xr == NULL)
62 *user = xr->user;
63 status->error = xr->status.error;
64 status->transferred = xr->status.transferred;
66 xchan_bank_put(xchan, xr);
76 struct xdma_request *xr; local
80 xr
[all...]
H A Dxdma_bio.c50 struct xdma_request *xr; local
53 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) {
54 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next);
59 if (xr == NULL)
62 *bp = xr->bp;
64 status->error = xr->status.error;
65 status->transferred = xr->status.transferred;
67 xchan_bank_put(xchan, xr);
77 struct xdma_request *xr; local
79 xr
[all...]
H A Dxdma_mbuf.c55 struct xdma_request *xr; local
59 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) {
60 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next);
65 if (xr == NULL)
68 *mp = xr->m;
69 status->error = xr->status.error;
70 status->transferred = xr->status.transferred;
72 xchan_bank_put(xchan, xr);
82 struct xdma_request *xr; local
84 xr
123 xdma_mbuf_defrag(xdma_channel_t *xchan, struct xdma_request *xr) argument
[all...]
H A Dxdma_bank.c48 struct xdma_request *xr; local
57 xr = &xchan->xr_mem[i];
58 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next);
74 struct xdma_request *xr; local
78 TAILQ_FOREACH_SAFE(xr, &xchan->bank, xr_next, xr_tmp) {
79 TAILQ_REMOVE(&xchan->bank, xr, xr_next);
84 return (xr);
88 xchan_bank_put(xdma_channel_t *xchan, struct xdma_request *xr) argument
92 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next);
H A Dxdma_sg.c70 struct xdma_request *xr; local
75 xr = &xchan->xr_mem[i];
76 size = xr->buf.size;
77 if (xr->buf.vaddr) {
78 pmap_kremove_device(xr->buf.vaddr, size);
79 kva_free(xr->buf.vaddr, size);
80 xr->buf.vaddr = 0;
82 if (xr->buf.paddr) {
83 vmem_free(xchan->vmem, xr->buf.paddr, size);
84 xr
94 struct xdma_request *xr; local
134 struct xdma_request *xr; local
210 struct xdma_request *xr; local
324 struct xdma_request *xr; local
394 _xdma_load_data_busdma(xdma_channel_t *xchan, struct xdma_request *xr, struct bus_dma_segment *seg) argument
482 _xdma_load_data(xdma_channel_t *xchan, struct xdma_request *xr, struct bus_dma_segment *seg) argument
540 xdma_load_data(xdma_channel_t *xchan, struct xdma_request *xr, struct bus_dma_segment *seg) argument
565 struct xdma_request *xr; local
[all...]
H A Dxdma_sglist.c70 uint32_t nsegs, struct xdma_request *xr)
78 sg[i].src_width = xr->src_width;
79 sg[i].dst_width = xr->dst_width;
81 if (xr->direction == XDMA_MEM_TO_DEV) {
83 sg[i].dst_addr = xr->dst_addr;
85 sg[i].src_addr = xr->src_addr;
89 sg[i].direction = xr->direction;
69 xdma_sglist_add(struct xdma_sglist *sg, struct bus_dma_segment *seg, uint32_t nsegs, struct xdma_request *xr) argument
H A Dxdma.h271 uint32_t xdma_mbuf_defrag(xdma_channel_t *xchan, struct xdma_request *xr);
288 uint32_t nsegs, struct xdma_request *xr);
294 int xchan_bank_put(xdma_channel_t *xchan, struct xdma_request *xr);
/freebsd-current/contrib/mandoc/
H A Dmandoc_xr.c41 struct mandoc_xr *xr; local
46 for (xr = ohash_first(xr_hash, &slot); xr != NULL;
47 xr = ohash_next(xr_hash, &slot))
48 free(xr);
67 struct mandoc_xr *xr, *oxr; local
80 xr = mandoc_malloc(sizeof(*xr) + tsz);
81 xr->next = NULL;
82 xr
[all...]
H A Dmain.c1073 struct mandoc_xr *xr; local
1076 for (xr = mandoc_xr_get(); xr != NULL; xr = xr->next) {
1077 if (xr->line == -1)
1080 search.sec = xr->sec;
1084 if (mansearch(&search, paths, 1, &xr->name, NULL, &sz))
1086 if (fs_search(&search, paths, xr->name, NULL, &sz) != -1)
1088 if (xr
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Ddes_support.c29 br_des_do_IP(uint32_t *xl, uint32_t *xr) argument
39 r = *xr;
56 *xr = r;
61 br_des_do_invIP(uint32_t *xl, uint32_t *xr) argument
69 r = *xr;
86 *xr = r;
93 uint32_t xl, xr, kl, kr; local
97 xr = br_dec32be((const unsigned char *)key + 4);
121 br_des_do_IP(&xl, &xr);
122 kl = ((xr
[all...]
H A Ddes_tab.c271 uint32_t xl, xr, ul, ur; local
275 xr = skey[(i << 1) + 1];
280 ur |= (xr & 1) << PC2right[j];
282 xr >>= 1;
/freebsd-current/crypto/openssl/crypto/objects/
H A Dobjxref.pl43 my ($xr, $p1, $p2) = /^(\S+)\s+(\S+)\s+(\S+)/;
44 check_oid($xr);
47 $xref_tbl{$xr} = [$p1, $p2, $ln];
101 my $xr = $_;
103 my $o1 = " {NID_$xr, NID_$p1,";
/freebsd-current/usr.bin/netstat/
H A Dsctp.c207 struct xraddr_entry *prev_xr = NULL, *xr = NULL, *xr_tmp; local
243 prev_xr = xr;
244 xr = malloc(sizeof(struct xraddr_entry));
245 if (xr == NULL) {
250 xr->xraddr = xraddr;
252 LIST_INSERT_HEAD(&xraddr_head, xr, xraddr_entries);
254 LIST_INSERT_AFTER(prev_xr, xr, xraddr_entries);
263 xr = LIST_FIRST(&xraddr_head);
282 if (xr != NULL && !Lflag) {
283 sctp_print_address("remote", &(xr
[all...]
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha1-s390x.pl115 xr $t0,$c
119 xr $t0,$d
135 xr $t0,$c
137 xr $t0,$d
/freebsd-current/crypto/openssl/crypto/chacha/asm/
H A Dchacha-s390x.pl95 xr (@x[$d0],@x[$a0]);
96 xr (@x[$d1],@x[$a1]);
102 xr (@x[$b0],$xc);
103 xr (@x[$b1],$xc_);
109 xr (@x[$d0],@x[$a0]);
110 xr (@x[$d1],@x[$a1]);
116 xr (@x[$b0],$xc);
117 xr (@x[$b1],$xc_);
126 xr (@x[$d2],@x[$a2]);
127 xr (
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/
H A Dlse.S121 #define LDXR GLUE3(ld, xr, S)
123 #define LDXR GLUE4(ld, A, xr, S)
125 #define STXR GLUE4(st, L, xr, S)
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c1579 int r, xr = 0; local
1602 xr = get_xfer_size(t, fd, NULL);
1611 xr = get_xfer_size(t, -1, tree_current_access_path(t));
1616 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL);
1618 if (r == -1 || xr == -1) {
1621 } else if (xr == 1) {
1691 int r, xr = 0; local
1701 xr = get_xfer_size(t, -1, tree_current_access_path(t));
1706 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL);
1710 xr
1763 int r, vr = 0, xr = 0; local
1892 int r, xr = 0; local
[all...]
/freebsd-current/crypto/openssl/crypto/aes/asm/
H A Daes-s390x.pl342 xr $s1,$t1
355 xr $s2,$t2
369 xr $s3,$t3
459 xr $s0,$t0
460 xr $s1,$t2
668 xr $s1,$t1
685 xr $s2,$t2
695 xr $s3,$t3
781 xr $s0,$t0
782 xr
[all...]
/freebsd-current/sys/dev/qat/qat_api/firmware/include/
H A Dicp_qat_fw_mmp.h3818 uint64_t xr; /**< xR = affine coordinate X of point [k]P (6 qwords)*/ member in struct:icp_qat_fw_mmp_ec_point_multiplication_p384_output_s
3831 uint64_t xr; /**< xR = affine coordinate X of point [k]G (6 qwords)*/ member in struct:icp_qat_fw_mmp_ec_generator_multiplication_p384_output_s
3857 uint64_t xr; /**< xR = affine coordinate X of point [k]P (4 qwords)*/ member in struct:icp_qat_fw_mmp_ec_point_multiplication_p256_output_s
3870 uint64_t xr; /**< xR = affine coordinate X of point [k]G (4 qwords)*/ member in struct:icp_qat_fw_mmp_ec_generator_multiplication_p256_output_s
6270 uint64_t xr; /**< xR = Montgomery affine coordinate X of point [k]P (4 qwords)*/ member in struct:icp_qat_fw_point_multiplication_c25519_output_s
6283 uint64_t xr; /**< xR = Montgomery affine coordinate X of point [k]G (4 qwords)*/ member in struct:icp_qat_fw_generator_multiplication_c25519_output_s
6296 uint64_t xr; /**< xR = Twisted Edwards affine coordinate X of point [k]P (4 qwords)*/ member in struct:icp_qat_fw_point_multiplication_ed25519_output_s
6310 uint64_t xr; /**< xR = Twisted Edwards affine coordinate X of point [k]G (4 qwords)*/ member in struct:icp_qat_fw_generator_multiplication_ed25519_output_s
6324 uint64_t xr; /**< xR = Montgomery affine coordinate X of point [k]P (8 qwords)*/ member in struct:icp_qat_fw_point_multiplication_c448_output_s
6337 uint64_t xr; /**< x member in struct:icp_qat_fw_generator_multiplication_c448_output_s
6350 uint64_t xr; /**< xR = Edwards affine coordinate X of point [k]P (8 qwords)*/ member in struct:icp_qat_fw_point_multiplication_ed448_output_s
6364 uint64_t xr; /**< xR = Edwards affine coordinate X of point [k]G (8 qwords)*/ member in struct:icp_qat_fw_generator_multiplication_ed448_output_s
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dblowfish.c71 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
79 Xr = *xr;
92 *xr = Xl;
96 Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
104 Xr = *xr;
117 *xr = Xl;
/freebsd-current/tests/sys/kern/
H A Dunix_seqpacket_test.c626 int xs, xr; local
635 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl));
636 printf("Default | %7d | %7d |\n", xs, xr);
643 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl));
644 printf("After changing SNDBUF | %7d | %7d |\n", xs, xr);
651 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl));
652 printf("After changing RCVBUF | %7d | %7d |\n", xs, xr);
/freebsd-current/crypto/openssl/crypto/rc4/asm/
H A Drc4-s390x.pl153 xr $acc,$TY
/freebsd-current/tools/tools/nanobsd/
H A Ddefaults.sh294 rm -xr ${MAKEOBJDIRPREFIX}/
348 rm -xr ${NANO_OBJ}/
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_dof.c487 ulong_t xr, nxr; local
500 xr = 1; /* reserve dofs[0] for the provider itself */
511 dofs[xr++] = ddo->ddo_xlexport[i];
/freebsd-current/secure/lib/libcrypt/
H A Dblowfish.c64 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) argument
72 Xr = *xr;
85 *xr = Xl;

Completed in 376 milliseconds

12