| /src/external/bsd/mdocml/dist/ |
| mandoc_xr.c | 41 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->sec = xr->hashkey [all...] |
| main.c | 1045 struct mandoc_xr *xr; local 1048 for (xr = mandoc_xr_get(); xr != NULL; xr = xr->next) { 1049 if (xr->line == -1) 1052 search.sec = xr->sec; 1056 if (mansearch(&search, paths, 1, &xr->name, NULL, &sz)) 1058 if (fs_search(&search, paths, xr->name, NULL, &sz) != -1) 1060 if (xr->count == 1 [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| sin.c | 39 mpfr_t c, xr; local 105 mpfr_init2 (xr, m); 128 mpfr_set_prec (xr, m); 131 mpfr_remainder (xr, x, c, MPFR_RNDN); 133 |xr - x - 2kPi| <= 2^(2-m). Thus we can decide the sign 134 of sin(x) if xr is at distance at least 2^(2-m) of both 138 it suffices to check that c - |xr| >= 2^(2-m). */ 139 if (MPFR_IS_POS (xr)) 140 mpfr_sub (c, c, xr, MPFR_RNDZ); 142 mpfr_add (c, c, xr, MPFR_RNDZ) [all...] |
| cosu.c | 34 mpfr_t t, xr; local 65 will give xr = 0. */ 75 /* Let's compute xr = x mod u, with signbit(xr) = signbit(x), though 77 The precision of xr is chosen to ensure that x mod u is exactly 78 representable in xr, e.g., the maximum size of u + the length of 82 mpfr_init2 (xr, sizeof (unsigned long) * CHAR_BIT + (p < 0 ? 0 : p)); 83 MPFR_DBGRES (inex = mpfr_fmod_ui (xr, x, u, MPFR_RNDN)); /* exact */ 85 if (MPFR_IS_ZERO (xr)) 87 mpfr_clear (xr); [all...] |
| sinu.c | 40 mpfr_t t, xr; local 73 will give xr = 0. */ 83 /* Let's compute xr = x mod u, with signbit(xr) = signbit(x), which 84 may be important when x is a multiple of u, in which case xr = 0 86 The precision of xr is chosen to ensure that x mod u is exactly 87 representable in xr, e.g., the maximum size of u + the length of 91 mpfr_init2 (xr, sizeof (unsigned long) * CHAR_BIT + (p < 0 ? 0 : p)); 92 MPFR_DBGRES (inex = mpfr_fmod_ui (xr, x, u, MPFR_RNDN)); /* exact */ 94 if (MPFR_IS_ZERO (xr)) [all...] |
| tanu.c | 34 mpfr_t t, xr; local 67 will give xr = 0. */ 77 /* Let's compute xr = x mod u, with signbit(xr) = signbit(x), which 78 may be important when x is a multiple of u, in which case xr = 0 80 The precision of xr is chosen to ensure that x mod u is exactly 81 representable in xr, e.g., the maximum size of u + the length of 86 mpfr_init2 (xr, sizeof (unsigned long) * CHAR_BIT + (p < 0 ? 0 : p)); 87 MPFR_DBGRES (inex = mpfr_fmod_ui (xr, x, u, MPFR_RNDN)); /* exact */ 89 if (MPFR_IS_ZERO (xr)) [all...] |
| cos.c | 137 mpfr_t r, s, xr, c; local 189 mpfr_init2 (xr, m); 196 /* If |x| >= 4, first reduce x cmod (2*Pi) into xr, using mpfr_remainder: 199 (2) xr <- remainder (x, c) [precision m, nearest] 201 |xr - x - k c| <= 1/2ulp(xr) <= 2^(1-m) 203 Thus |xr - x - 2kPi| <= |k| |c - 2Pi| + 2^(1-m) <= 2^(2-m). 204 It follows |cos(xr) - cos(x)| <= 2^(2-m). */ 209 mpfr_remainder (xr, x, c, MPFR_RNDN); 210 if (MPFR_IS_ZERO(xr)) [all...] |
| sin_cos.c | 33 mpfr_t c, xr; local 135 mpfr_init2 (xr, m); 146 mpfr_set_prec (xr, m); 149 mpfr_remainder (xr, x, c, MPFR_RNDN); 151 if (MPFR_IS_POS (xr)) 152 mpfr_sub (c, c, xr, MPFR_RNDZ); 154 mpfr_add (c, c, xr, MPFR_RNDZ); 155 if (MPFR_IS_ZERO(xr) 156 || MPFR_EXP(xr) < (mpfr_exp_t) 3 - (mpfr_exp_t) m 159 xx = xr; [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/objects/ |
| objxref.pl | 43 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,";
|
| /src/crypto/external/bsd/openssl/dist/crypto/objects/ |
| objxref.pl | 43 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,";
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/objects/ |
| objxref.pl | 44 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,";
|
| /src/external/lgpl3/gmp/dist/mpn/s390_32/ |
| logops_n.asm | 179 xr %r5, %r1 180 xr %r6, %r1 181 xr %r7, %r1 192 xr %r5, %r1 201 xr %r5, %r1 202 xr %r6, %r1 212 xr %r5, %r1 213 xr %r6, %r1 214 xr %r7, %r1 215 xr %r8, %r [all...] |
| lshiftc.asm | 78 xr %r10, %r13 79 xr %r8, %r13 91 xr %r10, %r13 113 xr %r10, %r13 114 xr %r8, %r13 115 xr %r6, %r13 137 xr %r10, %r13 138 xr %r8, %r13 139 xr %r6, %r13 140 xr %r0, %r1 [all...] |
| /src/external/bsd/openldap/dist/tests/data/ |
| slapd-meta-target1.conf | 54 by * =xr
|
| /src/sys/dev/usb/ |
| xhci.c | 530 xhci_ring_trbv(struct xhci_ring * const xr, u_int idx) 532 return KERNADDR(&xr->xr_dma, XHCI_TRB_SIZE * idx); 536 xhci_ring_trbp(struct xhci_ring * const xr, u_int idx) 538 return DMAADDR(&xr->xr_dma, XHCI_TRB_SIZE * idx); 561 xhci_trb_get_idx(struct xhci_ring *xr, uint64_t trb_0, int *idx) 564 bus_addr_t trbp = xhci_ring_trbp(xr, 0); 569 (trb_0 - trbp) / sizeof(struct xhci_trb) >= xr->xr_ntrb) { 2028 struct xhci_ring * const xr = xs->xs_xr[dci]; local 2035 KASSERT(xr != NULL); 2037 xhci_host_dequeue(xr); 2423 struct xhci_ring *xr; local 3076 struct xhci_ring *xr; local 3685 struct xhci_ring *xr = xs->xs_xr[dci]; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/sha/asm/ |
| sha1-s390x.pl | 115 xr $t0,$c 119 xr $t0,$d 135 xr $t0,$c 137 xr $t0,$d
|
| /src/crypto/external/bsd/openssl/dist/crypto/sha/asm/ |
| sha1-s390x.pl | 115 xr $t0,$c 119 xr $t0,$d 135 xr $t0,$c 137 xr $t0,$d
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/ |
| sha1-s390x.pl | 113 xr $t0,$c 117 xr $t0,$d 133 xr $t0,$c 135 xr $t0,$d
|
| /src/external/gpl3/gcc/dist/libgcc/config/aarch64/ |
| lse.S | 156 # define LDXR glue3(ld, xr, S) 158 # define LDXR glue4(ld, A, xr, S) 160 #define STXR glue4(st, L, xr, S)
|
| /src/crypto/external/apache2/openssl/dist/crypto/chacha/asm/ |
| chacha-s390x.pl | 95 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...] |
| /src/crypto/external/bsd/openssl/dist/crypto/chacha/asm/ |
| chacha-s390x.pl | 95 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...] |
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_disk_posix.c | 1579 int r, xr = 0; local 1599 xr = get_xfer_size(t, fd, NULL); 1608 xr = get_xfer_size(t, -1, tree_current_access_path(t)); 1613 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); 1615 if (r == -1 || xr == -1) { 1618 } else if (xr == 1) { 1659 int r, xr = 0; local 1669 xr = get_xfer_size(t, -1, tree_current_access_path(t)); 1674 xr = get_xfer_size(t, tree_current_dir_fd(t), NULL); 1678 xr = get_xfer_size(t, -1, ".") 1729 int r, vr = 0, xr = 0; local 1845 int r, xr = 0; local [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/ |
| lse.S | 152 # define LDXR glue3(ld, xr, S) 154 # define LDXR glue4(ld, A, xr, S) 156 #define STXR glue4(st, L, xr, S)
|
| /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/ |
| aes-s390x.pl | 342 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 $s1,$t [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/aes/asm/ |
| aes-s390x.pl | 342 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 $s1,$t [all...] |