Searched refs:sn (Results 1 - 25 of 241) sorted by relevance

12345678910

/netbsd-current/lib/libm/src/
H A Ds_sincosf.c47 sincosf(float x, float *sn, float *cs)
59 *sn = x; /* x with inexact if x != 0 */
64 __kernel_sincosdf(x, sn, cs);
71 __kernel_sincosdf(x - p1pio2, cs, sn);
74 __kernel_sincosdf(x + p1pio2, cs, sn);
75 *sn = -*sn;
79 __kernel_sincosdf(x - p2pio2, sn, cs);
81 __kernel_sincosdf(x + p2pio2, sn, cs);
82 *sn
[all...]
H A Ds_sincosl.c60 sincosl(long double x, long double *sn, long double *cs)
78 *sn = x;
81 __kernel_sincosl(x, 0, 0, sn, cs);
87 *sn = x - x;
97 __kernel_sincosl(y[0], y[1], 1, sn, cs);
100 __kernel_sincosl(y[0], y[1], 1, cs, sn);
104 __kernel_sincosl(y[0], y[1], 1, sn, cs);
105 *sn = -*sn;
109 __kernel_sincosl(y[0], y[1], 1, cs, sn);
[all...]
H A Ds_sincos.c37 sincos(double x, double *sn, double *cs)
50 *sn = x;
55 __kernel_sincos(x, 0, 0, sn, cs);
61 *sn = x - x;
71 __kernel_sincos(y[0], y[1], 1, sn, cs);
74 __kernel_sincos(y[0], y[1], 1, cs, sn);
78 __kernel_sincos(y[0], y[1], 1, sn, cs);
79 *sn = -*sn;
83 __kernel_sincos(y[0], y[1], 1, cs, sn);
[all...]
H A Dk_sincosf.h37 __kernel_sincosdf(double x, float *sn, float *cs) argument
45 *sn = (x + s * (S1 + z * S2)) + s * w * r;
/netbsd-current/sys/dev/ic/
H A Dathrate-sample.c141 rate_to_ndx(struct sample_node *sn, int rate) { argument
143 for (x = 0; x < sn->num_rates; x++) {
144 if (sn->rates[x].rate == rate) {
169 static inline int best_rate_ndx(struct sample_node *sn, int size_bin, argument
175 for (x = 0; x < sn->num_rates; x++) {
176 int tt = sn->stats[size_bin][x].average_tx_time;
178 !sn->stats[size_bin][x].packets_acked)) {
183 if (sn->rates[x].rate == 18)
187 if (sn->stats[size_bin][x].successive_failures > 3)
202 pick_sample_ndx(struct sample_node *sn, in argument
258 struct sample_node *sn = ATH_NODE_SAMPLE(an); local
369 struct sample_node *sn = ATH_NODE_SAMPLE(an); local
403 struct sample_node *sn = ATH_NODE_SAMPLE(an); local
493 struct sample_node *sn = ATH_NODE_SAMPLE(an); local
653 struct sample_node *sn = ATH_NODE_SAMPLE(an); local
[all...]
/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Dmfac_uiui.c64 mp_limb_t g, sn; local
67 sn = n;
68 g = mpn_gcd_1 (&sn, 1, m);
76 sn = n;
88 sn = n / 2 + 1;
100 sn = n / m + 1;
108 factors = MPZ_NEWALLOC (x, sn / log_n_max (n) + 2);
111 factors = TMP_ALLOC_LIMBS (sn / log_n_max (n) + 2);
134 mpz_ui_pow_ui (p, g, sn); /* g^sn */
[all...]
/netbsd-current/external/gpl2/lvm2/dist/include/
H A Dtext_import.h24 int text_import_areas(struct lv_segment *seg, const struct config_node *sn,
/netbsd-current/external/gpl2/lvm2/dist/lib/format_text/
H A Dtext_import.h24 int text_import_areas(struct lv_segment *seg, const struct config_node *sn,
/netbsd-current/bin/kill/
H A Dkill.c78 const char *sn; local
96 sn = argv[0] + 2;
99 sn = argv[0];
104 if (isdigit((unsigned char)*sn) == 0)
106 numsig = signum(sn);
110 nosig(sn);
111 sn = signalname(numsig);
112 if (sn == NULL)
115 printf("%s\n", sn);
123 sn
215 signum(const char *sn) argument
[all...]
/netbsd-current/sys/arch/amiga/dev/
H A Dp5bus.c96 char *sn; local
102 sn = p5bus_cardsn();
110 if (sn[0] == 'F') {
112 "CyberStorm Mk-III (sn %s)\n", sn);
116 "CyberStorm PPC 604e (sn %s)\n", sn);
125 if (sn[0] != 'I') { /* only "+" model has SCSI */
127 "BlizzardPPC 603e (sn %s)\n", sn);
183 char *snr, *sn; local
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/objects/
H A Dobj_dat.pl46 # Populate %ln and %sn with long and short names (%dupln and %dupsn)
50 my %sn;
69 $sn{$1} = $d;
118 my $sn = defined $sn{$nid{$i}} ? "$sn{$nid{$i}}" : "NULL";
120 if ($sn eq "NULL") {
121 $sn = $ln;
122 $sn{$nid{$i}} = $ln;
125 $ln = $sn;
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/objects/
H A Dobj_dat.pl46 # Populate %ln and %sn with long and short names (%dupln and %dupsn)
50 my %sn;
69 $sn{$1} = $d;
118 my $sn = defined $sn{$nid{$i}} ? "$sn{$nid{$i}}" : "NULL";
120 if ($sn eq "NULL") {
121 $sn = $ln;
122 $sn{$nid{$i}} = $ln;
125 $ln = $sn;
[all...]
/netbsd-current/sys/miscfs/specfs/
H A Dspec_vnops.c237 * spec_io_enter(vp, &sn, &dev)
243 * On success, set sn to the specnode pointer and dev to the dev_t
254 struct specnode *sn; local
269 (sn = vp->v_specnode) == NULL ||
285 iocnt = atomic_load_relaxed(&sn->sn_dev->sd_iocnt);
301 } while (atomic_cas_uint(&sn->sn_dev->sd_iocnt, iocnt, iocnt + 1)
305 *snp = sn;
314 * spec_io_exit(vp, sn)
317 * allow concurrent spec_node_revoke to proceed. The argument sn
322 spec_io_exit(struct vnode *vp, struct specnode *sn) argument
376 specnode_t *sn; local
569 struct specnode *sn; local
601 specnode_t *sn; local
665 specnode_t *sn; local
728 specnode_t *sn, *sn1; local
1068 struct specnode *sn; local
1190 struct specnode *sn; local
1321 struct specnode *sn; local
1357 struct specnode *sn; local
1386 struct specnode *sn; local
1423 struct specnode *sn; local
1480 struct specnode *sn = NULL; local
1592 specnode_t *sn; local
[all...]
/netbsd-current/usr.bin/fstat/
H A Dptyfs.c61 struct specnode sn; local
81 if (!KVM_READ(vp->v_specnode, &sn, sizeof(sn))) {
86 fsp->rdev = sn.sn_rdev;
/netbsd-current/sys/arch/vax/boot/boot/
H A Dhp.c111 unsigned int bn, cn, sn, tn; local
121 sn = bn % hplabel.d_secpercyl;
122 tn = sn / hplabel.d_nsectors;
123 sn = sn % hplabel.d_nsectors;
125 cn = sn = tn = 0;
128 HP_WCSR(HP_DA, (tn << 8) | sn);
/netbsd-current/external/lgpl3/mpfr/dist/src/
H A Dset_q.c72 mp_size_t sn, sd; local
101 cn = set_z (n, num, &sn);
104 /* sn is the number of limbs of the numerator, sd that of the denominator */
106 sn -= sd;
110 /* If sn >= 0, the quotient has at most sn limbs, thus is larger or equal to
111 2^((sn-1)*GMP_NUMB_BITS), thus its exponent >= (sn-1)*GMP_NUMB_BITS)+1.
112 (sn-1)*GMP_NUMB_BITS)+1 > emax yields (sn
[all...]
/netbsd-current/sbin/nvmectl/
H A Dwdc.c70 char sn[sizeof(cdata.sn) + 1]; local
76 memcpy(sn, cdata.sn, sizeof(cdata.sn));
77 walker = sn + sizeof(cdata.sn) - 1;
78 while (walker > sn && *walker == ' ')
81 snprintf(buf, len, "%s%s.bin", sn, suffix);
/netbsd-current/external/bsd/openldap/dist/tests/data/
H A Dslapd-proxycache.conf46 pcacheattrset 0 sn cn title uid
48 pcachetemplate (|(cn=)(sn=)) 0 @TTL@ @NTTL@ @STTL@
49 pcachetemplate (sn=) 0 @TTL@ @NTTL@ @STTL@
59 #indexdb#index cn,sn,uid,mail pres,eq,sub
H A Dslapd-proxyauthz.conf54 pcacheattrset 0 sn cn title uid
56 pcachetemplate (|(cn=)(sn=)) 0 @TTL@ @NTTL@ @STTL@
57 pcachetemplate (sn=) 0 @TTL@ @NTTL@ @STTL@
69 #indexdb#index cn,sn,uid,mail pres,eq,sub
H A Dslapd-valregex.conf49 #indexdb#index cn,sn,uid pres,eq,sub
57 access to attrs=sn val.regex="^(.*)$"
61 access to attrs=sn val.regex="."
64 access to attrs=sn
/netbsd-current/external/lgpl3/gmp/dist/mpn/generic/
H A Drootrem.c104 mp_size_t rn, sn, wn; local
108 sn = (un - 1) / k + 2; /* ceil(un/k) + 1 */
110 sp, sn); /* approximate root of padded input */
114 /* The approximate root S = {sp,sn} is either the correct root of
115 {sp,sn}, or 1 too large. Thus unless the least significant limb of
119 MPN_COPY (rootp, sp + 1, sn - 1);
211 mp_size_t qn, rn, sn, wn, nl, bn; local
312 sn = 1; /* Initial approximation has one limb */
317 {sp, sn} is the current approximation of the root, which has
320 {wp, wn} = {sp, sn}
[all...]
/netbsd-current/lib/libc/stdlib/
H A Dpty.c67 return pm.sn;
78 if (strlcpy(buf, pm.sn, buflen) > buflen)
/netbsd-current/external/bsd/openldap/dist/tests/scripts/
H A Dtest055-valregex68 replace: sn
69 sn: foobarbuz
96 replace: sn
97 sn: James A Jones 1
/netbsd-current/sys/compat/sys/
H A Dttycom.h47 * The cn and sn fields in struct ptmget changed size from
54 char sn[16]; member in struct:compat_60_ptmget
/netbsd-current/external/bsd/byacc/dist/
H A Dgraph.c20 int sn; local
40 sn = sp->shift[j];
41 as = accessing_symbol[sn];
44 i, sn, symbol_pname[as]);

Completed in 224 milliseconds

12345678910