Home
last modified time | relevance | path

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

123

/freebsd/contrib/mandoc/
H A 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 …]
H A Dmain.c1086 struct mandoc_xr *xr; in check_xr() local
1089 for (xr = mandoc_xr_get(); xr != NULL; xr = xr->next) { in check_xr()
1090 if (xr->line == -1) in check_xr()
1093 search.sec = xr->sec; in check_xr()
1097 if (mansearch(&search, paths, 1, &xr->name, NULL, &sz)) in check_xr()
1099 if (fs_search(&search, paths, xr->name, NULL, &sz) != -1) in check_xr()
1101 if (xr->count == 1) in check_xr()
1102 mandoc_msg(MANDOCERR_XR_BAD, xr->line, in check_xr()
1103 xr->pos + 1, "Xr %s %s", xr->name, xr->sec); in check_xr()
1105 mandoc_msg(MANDOCERR_XR_BAD, xr->line, in check_xr()
[all …]
/freebsd/sys/dev/xdma/
H A Dxdma_sg.c70 struct xdma_request *xr; in xchan_bufs_free_reserved() local
75 xr = &xchan->xr_mem[i]; in xchan_bufs_free_reserved()
76 size = xr->buf.size; in xchan_bufs_free_reserved()
77 if (xr->buf.vaddr) { in xchan_bufs_free_reserved()
78 pmap_kremove_device(xr->buf.vaddr, size); in xchan_bufs_free_reserved()
79 kva_free(xr->buf.vaddr, size); in xchan_bufs_free_reserved()
80 xr->buf.vaddr = 0; in xchan_bufs_free_reserved()
82 if (xr->buf.paddr) { in xchan_bufs_free_reserved()
83 vmem_free(xchan->vmem, xr->buf.paddr, size); in xchan_bufs_free_reserved()
84 xr->buf.paddr = 0; in xchan_bufs_free_reserved()
[all …]
H A 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
84 xr = xchan_bank_get(xchan); in xdma_enqueue_mbuf()
[all …]
H A 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
80 xr = xchan_bank_get(xchan); in xdma_enqueue()
[all …]
H A 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
79 xr = xchan_bank_get(xchan); in xdma_enqueue_bio()
[all …]
H A Dxdma_bank.c48 struct xdma_request *xr; in xchan_bank_init() local
57 xr = &xchan->xr_mem[i]; in xchan_bank_init()
58 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next); in xchan_bank_init()
74 struct xdma_request *xr; in xchan_bank_get() local
78 TAILQ_FOREACH_SAFE(xr, &xchan->bank, xr_next, xr_tmp) { in xchan_bank_get()
79 TAILQ_REMOVE(&xchan->bank, xr, xr_next); in xchan_bank_get()
84 return (xr); in xchan_bank_get()
88 xchan_bank_put(xdma_channel_t *xchan, struct xdma_request *xr) in xchan_bank_put() argument
92 TAILQ_INSERT_TAIL(&xchan->bank, xr, xr_next); in xchan_bank_put()
H A Dxdma_sglist.c70 uint32_t nsegs, struct xdma_request *xr) in xdma_sglist_add() argument
78 sg[i].src_width = xr->src_width; in xdma_sglist_add()
79 sg[i].dst_width = xr->dst_width; in xdma_sglist_add()
81 if (xr->direction == XDMA_MEM_TO_DEV) { in xdma_sglist_add()
83 sg[i].dst_addr = xr->dst_addr; in xdma_sglist_add()
85 sg[i].src_addr = xr->src_addr; in xdma_sglist_add()
89 sg[i].direction = xr->direction; in xdma_sglist_add()
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/contrib/bearssl/src/symcipher/
H A 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 …]
H A 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/usr.bin/netstat/
H A Dsctp.c206 struct xraddr_entry *prev_xr = NULL, *xr = NULL, *xr_tmp; in sctp_process_tcb() local
242 prev_xr = xr; in sctp_process_tcb()
243 xr = malloc(sizeof(struct xraddr_entry)); in sctp_process_tcb()
244 if (xr == NULL) { in sctp_process_tcb()
249 xr->xraddr = xraddr; in sctp_process_tcb()
251 LIST_INSERT_HEAD(&xraddr_head, xr, xraddr_entries); in sctp_process_tcb()
253 LIST_INSERT_AFTER(prev_xr, xr, xraddr_entries); in sctp_process_tcb()
262 xr = LIST_FIRST(&xraddr_head); in sctp_process_tcb()
281 if (xr != NULL && !Lflag) { in sctp_process_tcb()
282 sctp_print_address("remote", &(xr->xraddr->address), in sctp_process_tcb()
[all …]
/freebsd/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/tests/sys/acl/
H A Dtools-crossfs.test169 > -rw-r-xr--
205 > -rw-r-xr--
228 > -rw-r-xr--
249 > -r-xr---wx+
252 > -r-xr----x
271 > -r-xr---wx+
280 > -r-xr---wx+
283 > -r-xr----x
292 > -r-xr---wx+
296 > -r-xr---wx
[all …]
/freebsd/usr.sbin/bluetooth/bcmfw/
H A DREADME6 drwxr-xr-x 3 julian wheel 512 May 10 00:40 .
7 drwxr-xr-x 11 julian wheel 512 May 10 14:48 ..
13 drwxr-xr-x 2 julian wheel 512 May 10 00:52 CVS
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_disk_posix.c1579 int r, xr = 0; in setup_current_filesystem() local
1602 xr = get_xfer_size(t, fd, NULL); in setup_current_filesystem()
1611 xr = get_xfer_size(t, -1, tree_current_access_path(t)); in setup_current_filesystem()
1616 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); in setup_current_filesystem()
1618 if (r == -1 || xr == -1) { in setup_current_filesystem()
1621 } else if (xr == 1) { in setup_current_filesystem()
1691 int r, xr = 0; in setup_current_filesystem() local
1701 xr = get_xfer_size(t, -1, tree_current_access_path(t)); in setup_current_filesystem()
1706 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); in setup_current_filesystem()
1710 xr = get_xfer_size(t, -1, "."); in setup_current_filesystem()
[all …]
/freebsd/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 (@x[$d3],@x[$a3]);
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A 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/secure/lib/libcrypt/
H A Dblowfish.c64 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher() argument
72 Xr = *xr; in Blowfish_encipher()
85 *xr = Xl; in Blowfish_encipher()
/freebsd/contrib/one-true-awk/testdir/
H A DT.re124 xr+y ~ xry
129 xr
130 xr?y ~ xy
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dtanpif.c34 svfloat32_t xr = svsub_x (pg, x, n); in SV_NAME_F1() local
56 = sveor_x (pg, svreinterpret_u32 (xr), svreinterpret_u32 (ar)); in SV_NAME_F1()
H A Dtanpi.c42 svfloat64_t xr = svsub_x (pg, x, n); in SV_NAME_D1() local
76 = sveor_x (pg, svreinterpret_u64 (xr), svreinterpret_u64 (ar)); in SV_NAME_D1()
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dtanpif.c34 float32x4_t xr = vsubq_f32 (x, n); in V_NAME_F1() local
57 = veorq_u32 (vreinterpretq_u32_f32 (xr), vreinterpretq_u32_f32 (ar)); in V_NAME_F1()
H A Dtanpi.c42 float64x2_t xr = vsubq_f64 (x, n); in V_NAME_D1() local
76 = veorq_u64 (vreinterpretq_u64_f64 (xr), vreinterpretq_u64_f64 (ar)); in V_NAME_D1()
/freebsd/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)

123