Home
last modified time | relevance | path

Searched refs:xr (Results 1 – 25 of 69) sorted by relevance

123

/freebsd-12-stable/contrib/mandoc/
Dmandoc_xr.c41 struct mandoc_xr *xr; in mandoc_xr_clear() local
46 for (xr = ohash_first(xr_hash, &slot); xr != NULL; in mandoc_xr_clear()
47 xr = ohash_next(xr_hash, &slot)) in mandoc_xr_clear()
48 free(xr); in mandoc_xr_clear()
67 struct mandoc_xr *xr, *oxr; in mandoc_xr_add() local
80 xr = mandoc_malloc(sizeof(*xr) + tsz); in mandoc_xr_add()
81 xr->next = NULL; in mandoc_xr_add()
82 xr->sec = xr->hashkey; in mandoc_xr_add()
83 xr->name = xr->hashkey + ssz; in mandoc_xr_add()
84 xr->line = line; in mandoc_xr_add()
[all …]
Dmain.c1073 struct mandoc_xr *xr; in check_xr() local
1076 for (xr = mandoc_xr_get(); xr != NULL; xr = xr->next) { in check_xr()
1077 if (xr->line == -1) in check_xr()
1080 search.sec = xr->sec; in check_xr()
1084 if (mansearch(&search, paths, 1, &xr->name, NULL, &sz)) in check_xr()
1086 if (fs_search(&search, paths, xr->name, NULL, &sz) != -1) in check_xr()
1088 if (xr->count == 1) in check_xr()
1089 mandoc_msg(MANDOCERR_XR_BAD, xr->line, in check_xr()
1090 xr->pos + 1, "Xr %s %s", xr->name, xr->sec); in check_xr()
1092 mandoc_msg(MANDOCERR_XR_BAD, xr->line, in check_xr()
[all …]
/freebsd-12-stable/sys/dev/xdma/
Dxdma_sg.c69 struct xdma_request *xr; in xchan_bufs_free_reserved() local
74 xr = &xchan->xr_mem[i]; in xchan_bufs_free_reserved()
75 size = xr->buf.size; in xchan_bufs_free_reserved()
76 if (xr->buf.vaddr) { in xchan_bufs_free_reserved()
77 pmap_kremove_device(xr->buf.vaddr, size); in xchan_bufs_free_reserved()
78 kva_free(xr->buf.vaddr, size); in xchan_bufs_free_reserved()
79 xr->buf.vaddr = 0; in xchan_bufs_free_reserved()
81 if (xr->buf.paddr) { in xchan_bufs_free_reserved()
82 vmem_free(xchan->vmem, xr->buf.paddr, size); in xchan_bufs_free_reserved()
83 xr->buf.paddr = 0; in xchan_bufs_free_reserved()
[all …]
Dxdma_mbuf.c55 struct xdma_request *xr; in xdma_dequeue_mbuf() local
59 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) { in xdma_dequeue_mbuf()
60 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next); in xdma_dequeue_mbuf()
65 if (xr == NULL) in xdma_dequeue_mbuf()
68 *mp = xr->m; in xdma_dequeue_mbuf()
69 status->error = xr->status.error; in xdma_dequeue_mbuf()
70 status->transferred = xr->status.transferred; in xdma_dequeue_mbuf()
72 xchan_bank_put(xchan, xr); in xdma_dequeue_mbuf()
82 struct xdma_request *xr; in xdma_enqueue_mbuf() local
87 xr = xchan_bank_get(xchan); in xdma_enqueue_mbuf()
[all …]
Dxdma_queue.c50 struct xdma_request *xr; in xdma_dequeue() local
53 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) { in xdma_dequeue()
54 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next); in xdma_dequeue()
59 if (xr == NULL) in xdma_dequeue()
62 *user = xr->user; in xdma_dequeue()
63 status->error = xr->status.error; in xdma_dequeue()
64 status->transferred = xr->status.transferred; in xdma_dequeue()
66 xchan_bank_put(xchan, xr); in xdma_dequeue()
76 struct xdma_request *xr; in xdma_enqueue() local
82 xr = xchan_bank_get(xchan); in xdma_enqueue()
[all …]
Dxdma_bio.c50 struct xdma_request *xr; in xdma_dequeue_bio() local
53 TAILQ_FOREACH_SAFE(xr, &xchan->queue_out, xr_next, xr_tmp) { in xdma_dequeue_bio()
54 TAILQ_REMOVE(&xchan->queue_out, xr, xr_next); in xdma_dequeue_bio()
59 if (xr == NULL) in xdma_dequeue_bio()
62 *bp = xr->bp; in xdma_dequeue_bio()
64 status->error = xr->status.error; in xdma_dequeue_bio()
65 status->transferred = xr->status.transferred; in xdma_dequeue_bio()
67 xchan_bank_put(xchan, xr); in xdma_dequeue_bio()
77 struct xdma_request *xr; in xdma_enqueue_bio() local
82 xr = xchan_bank_get(xchan); in xdma_enqueue_bio()
[all …]
Dxdma_bank.c48 struct xdma_request *xr; in xchan_bank_init() local
59 xr = &xchan->xr_mem[i]; in xchan_bank_init()
60 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next); in xchan_bank_init()
76 struct xdma_request *xr; in xchan_bank_get() local
80 TAILQ_FOREACH_SAFE(xr, &xchan->bank, xr_next, xr_tmp) { in xchan_bank_get()
81 TAILQ_REMOVE(&xchan->bank, xr, xr_next); in xchan_bank_get()
86 return (xr); in xchan_bank_get()
90 xchan_bank_put(xdma_channel_t *xchan, struct xdma_request *xr) in xchan_bank_put() argument
94 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next); in xchan_bank_put()
Dxdma_sglist.c72 uint32_t nsegs, struct xdma_request *xr) in xdma_sglist_add() argument
80 sg[i].src_width = xr->src_width; in xdma_sglist_add()
81 sg[i].dst_width = xr->dst_width; in xdma_sglist_add()
83 if (xr->direction == XDMA_MEM_TO_DEV) { in xdma_sglist_add()
85 sg[i].dst_addr = xr->dst_addr; in xdma_sglist_add()
87 sg[i].src_addr = xr->src_addr; in xdma_sglist_add()
91 sg[i].direction = xr->direction; in xdma_sglist_add()
Dxdma.h249 uint32_t xdma_mbuf_defrag(xdma_channel_t *xchan, struct xdma_request *xr);
266 uint32_t nsegs, struct xdma_request *xr);
272 int xchan_bank_put(xdma_channel_t *xchan, struct xdma_request *xr);
/freebsd-12-stable/contrib/bearssl/src/symcipher/
Ddes_support.c29 br_des_do_IP(uint32_t *xl, uint32_t *xr) in br_des_do_IP() argument
39 r = *xr; in br_des_do_IP()
56 *xr = r; in br_des_do_IP()
61 br_des_do_invIP(uint32_t *xl, uint32_t *xr) in br_des_do_invIP() argument
69 r = *xr; in br_des_do_invIP()
86 *xr = r; in br_des_do_invIP()
93 uint32_t xl, xr, kl, kr; in br_des_keysched_unit() local
97 xr = br_dec32be((const unsigned char *)key + 4); in br_des_keysched_unit()
121 br_des_do_IP(&xl, &xr); in br_des_keysched_unit()
122 kl = ((xr & (uint32_t)0xFF000000) >> 4) in br_des_keysched_unit()
[all …]
Ddes_tab.c271 uint32_t xl, xr, ul, ur; in keysched_unit() local
275 xr = skey[(i << 1) + 1]; in keysched_unit()
280 ur |= (xr & 1) << PC2right[j]; in keysched_unit()
282 xr >>= 1; in keysched_unit()
/freebsd-12-stable/crypto/openssl/crypto/chacha/asm/
Dchacha-s390x.pl84 "&xr (@x[$d0],@x[$a0])",
85 "&xr (@x[$d1],@x[$a1])",
91 "&xr (@x[$b0],$xc)",
92 "&xr (@x[$b1],$xc_)",
98 "&xr (@x[$d0],@x[$a0])",
99 "&xr (@x[$d1],@x[$a1])",
105 "&xr (@x[$b0],$xc)",
106 "&xr (@x[$b1],$xc_)",
115 "&xr (@x[$d2],@x[$a2])",
116 "&xr (@x[$d3],@x[$a3])",
[all …]
/freebsd-12-stable/usr.bin/netstat/
Dsctp.c216 struct xraddr_entry *prev_xr = NULL, *xr = NULL, *xr_tmp; in sctp_process_tcb() local
252 prev_xr = xr; in sctp_process_tcb()
253 xr = malloc(sizeof(struct xraddr_entry)); in sctp_process_tcb()
254 if (xr == NULL) { in sctp_process_tcb()
259 xr->xraddr = xraddr; in sctp_process_tcb()
261 LIST_INSERT_HEAD(&xraddr_head, xr, xraddr_entries); in sctp_process_tcb()
263 LIST_INSERT_AFTER(prev_xr, xr, xraddr_entries); in sctp_process_tcb()
272 xr = LIST_FIRST(&xraddr_head); in sctp_process_tcb()
291 if (xr != NULL && !Lflag) { in sctp_process_tcb()
292 sctp_print_address("remote", &(xr->xraddr->address), in sctp_process_tcb()
[all …]
/freebsd-12-stable/crypto/openssl/crypto/objects/
Dobjxref.pl44 my ($xr, $p1, $p2) = /^(\S+)\s+(\S+)\s+(\S+)/;
45 check_oid($xr);
48 $xref_tbl{$xr} = [$p1, $p2, $ln];
102 my $xr = $_;
104 my $o1 = " {NID_$xr, NID_$p1,";
/freebsd-12-stable/tests/sys/acl/
Dtools-crossfs.test171 > -rw-r-xr--
207 > -rw-r-xr--
230 > -rw-r-xr--
251 > -r-xr---wx+
254 > -r-xr----x
273 > -r-xr---wx+
282 > -r-xr---wx+
285 > -r-xr----x
294 > -r-xr---wx+
298 > -r-xr---wx
[all …]
/freebsd-12-stable/usr.sbin/bluetooth/bcmfw/
DREADME7 drwxr-xr-x 3 julian wheel 512 May 10 00:40 .
8 drwxr-xr-x 11 julian wheel 512 May 10 14:48 ..
14 drwxr-xr-x 2 julian wheel 512 May 10 00:52 CVS
/freebsd-12-stable/contrib/libarchive/libarchive/
Darchive_read_disk_posix.c1575 int r, xr = 0; in setup_current_filesystem() local
1598 xr = get_xfer_size(t, fd, NULL); in setup_current_filesystem()
1607 xr = get_xfer_size(t, -1, tree_current_access_path(t)); in setup_current_filesystem()
1612 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); in setup_current_filesystem()
1614 if (r == -1 || xr == -1) { in setup_current_filesystem()
1617 } else if (xr == 1) { in setup_current_filesystem()
1682 int r, xr = 0; in setup_current_filesystem() local
1692 xr = get_xfer_size(t, -1, tree_current_access_path(t)); in setup_current_filesystem()
1697 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); in setup_current_filesystem()
1701 xr = get_xfer_size(t, -1, "."); in setup_current_filesystem()
[all …]
/freebsd-12-stable/crypto/openssh/openbsd-compat/
Dblowfish.c71 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher() argument
79 Xr = *xr; in Blowfish_encipher()
92 *xr = Xl; in Blowfish_encipher()
96 Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_decipher() argument
104 Xr = *xr; in Blowfish_decipher()
117 *xr = Xl; in Blowfish_decipher()
/freebsd-12-stable/secure/lib/libcrypt/
Dblowfish.c66 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher() argument
74 Xr = *xr; in Blowfish_encipher()
87 *xr = Xl; in Blowfish_encipher()
/freebsd-12-stable/tests/sys/kern/
Dunix_seqpacket_test.c545 int xs, xr; in ATF_TC_BODY() local
554 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl)); in ATF_TC_BODY()
555 printf("Default | %7d | %7d |\n", xs, xr); in ATF_TC_BODY()
562 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl)); in ATF_TC_BODY()
563 printf("After changing SNDBUF | %7d | %7d |\n", xs, xr); in ATF_TC_BODY()
570 ATF_CHECK_EQ(0, getsockopt(s, SOL_SOCKET, SO_RCVBUF, &xr, &sl)); in ATF_TC_BODY()
571 printf("After changing RCVBUF | %7d | %7d |\n", xs, xr); in ATF_TC_BODY()
/freebsd-12-stable/contrib/binutils/ld/scripttempl/
DREADME3 EMULATION.sc, to generate EMULATION.{x,xr,xu,xn,xbn} -- the script
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/
Dlse.S99 #define LDXR GLUE4(ld, A, xr, S)
100 #define STXR GLUE4(st, L, xr, S)
/freebsd-12-stable/contrib/binutils/ld/emultempl/
Dgeneric.em87 sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
106 return "ldscripts/${EMULATION_NAME}.xr";
Dticoff.em122 return `sed "$sc" ldscripts/${EMULATION_NAME}.xr`;
142 return "ldscripts/${EMULATION_NAME}.xr";
/freebsd-12-stable/share/skel/
Ddot.shrc12 # file permissions: rwxr-xr-x

123