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

123456

/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/objects/
H A Dobj_lib.c69 char *ln=NULL,*sn=NULL; local
92 r->ln=r->sn=NULL;
102 if (o->sn != NULL)
104 i=strlen(o->sn)+1;
105 sn=OPENSSL_malloc(i);
106 if (sn == NULL) goto err;
107 memcpy(sn,o->sn,i);
108 r->sn=sn;
[all...]
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/external/gpl2/lvm2/dist/include/
H A Dtext_import.h24 int text_import_areas(struct lv_segment *seg, const struct config_node *sn,
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/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-6-1-5-RELEASE/external/bsd/openldap/dist/tests/data/
H A Dslapd-valregex.conf51 #bdb#index cn,sn,uid pres,eq,sub
53 #hdb#index cn,sn,uid pres,eq,sub
61 access to attrs=sn val.regex="^(.*)$"
65 access to attrs=sn val.regex="."
68 access to attrs=sn
H A Dslapd-proxycache.conf48 pcacheattrset 0 sn cn title uid
50 pcachetemplate (|(cn=)(sn=)) 0 @TTL@ @NTTL@ @STTL@
51 pcachetemplate (sn=) 0 @TTL@ @NTTL@ @STTL@
62 #bdb#index cn,sn,uid,mail pres,eq,sub
64 #hdb#index cn,sn,uid,mail pres,eq,sub
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D20020706-1.c13 unsigned int sn; variable
24 if (sn != 0) return 1;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A D20020706-1.c13 unsigned int sn; variable
24 if (sn != 0) return 1;
/netbsd-6-1-5-RELEASE/lib/libc/stdlib/
H A Dpty.c65 return pm.sn;
/netbsd-6-1-5-RELEASE/usr.bin/fstat/
H A Dptyfs.c60 struct specnode sn; local
80 if (!KVM_READ(vp->v_specnode, &sn, sizeof(sn))) {
85 fsp->rdev = sn.sn_rdev;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dset_q.c72 mp_size_t sn, sd; local
101 cn = set_z (n, num, &sn);
104 sn -= sd;
105 if (MPFR_UNLIKELY (sn > MPFR_EMAX_MAX / GMP_NUMB_BITS))
110 if (MPFR_UNLIKELY (sn < MPFR_EMIN_MIN / GMP_NUMB_BITS -1))
119 shift = GMP_NUMB_BITS*sn+cn-cd;
120 MPFR_ASSERTD (shift == GMP_NUMB_BITS*sn+cn-cd);
/netbsd-6-1-5-RELEASE/sys/arch/vax/boot/boot/
H A Dhp.c116 unsigned int pfnum, mapnr, nsize, bn, cn, sn, tn; local
130 sn = bn % hplabel.d_secpercyl;
131 tn = sn / hplabel.d_nsectors;
132 sn = sn % hplabel.d_nsectors;
134 cn = sn = tn = 0;
137 HP_WCSR(HP_DA, (tn << 8) | sn);
/netbsd-6-1-5-RELEASE/bin/kill/
H A Dkill.c125 char *sn = *argv + 1; local
126 if (isalpha((unsigned char)*sn)) {
127 if ((numsig = signame_to_signum(sn)) < 0)
128 nosig(sn);
129 } else if (isdigit((unsigned char)*sn)) {
130 numsig = strtoimax(sn, &ep, 10);
134 sn);
139 nosig(sn);
141 nosig(sn);
/netbsd-6-1-5-RELEASE/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-6-1-5-RELEASE/sys/netinet6/
H A Desp_aesctr.c139 int sn, dn; /* offset from the head of the mbuf, to meat */ local
184 soff = doff = sn = dn = 0;
190 sn = bodyoff - soff;
198 scutoff = sn;
206 if (sn + blocklen <= s->m_len) {
208 sp = mtod(s, u_int8_t *) + sn;
211 m_copydata(s, sn, blocklen, (void *)sbuf);
220 i = m->m_pkthdr.len - (soff + sn);
256 sn += blocklen;
260 while (s && sn >
307 int sn, dn; /* offset from the head of the mbuf, to meat */ local
[all...]
/netbsd-6-1-5-RELEASE/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]);
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpn/generic/
H A Drootrem.c92 mp_size_t rn, sn, wn; local
97 sn = (un - 1) / k + 2; /* ceil(un/k) + 1 */
98 sp = TMP_ALLOC_LIMBS (sn); /* approximate root of padded input */
102 /* the approximate root S = {sp,sn} is either the correct root of
103 {sp,sn}, or one too large. Thus unless the least significant limb
107 MPN_COPY (rootp, sp + 1, sn - 1);
123 mp_size_t qn, rn, sn, wn, nl, bn; local
189 sn = 1; /* it has one limb */
220 wp[0] = 1; /* {sp,sn}^(k-1) = 1 */
225 {sp, sn} i
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/bad144/
H A Dbad144.c112 daddr_t sn, bn[NBT_BAD]; local
181 sn = getold(f, &oldbad);
183 (long long)sn, diskname);
203 printf("sn=%lld, cn=%d, tn=%d, sn=%d\n",
245 sn = atoi(*argv++);
247 if (sn < 0 || sn >= size) {
249 (long long)sn, (long long)size, dp->d_typename);
253 bn[i] = sn;
324 daddr_t sn; local
352 daddr_t sn, lsn; local
473 blkzero(int f, daddr_t sn) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/miscfs/specfs/
H A Dspec_vnops.c208 specnode_t *sn; local
222 sn = kmem_alloc(sizeof(*sn), KM_SLEEP);
223 if (sn == NULL) {
248 sn->sn_dev = sd;
252 sn->sn_dev = vp2->v_specnode->sn_dev;
253 sn->sn_dev->sd_refcnt++;
256 sn->sn_opencnt = 0;
257 sn->sn_rdev = rdev;
258 sn
277 specnode_t *sn; local
311 specnode_t *sn; local
389 specnode_t *sn; local
961 specnode_t *sn; local
[all...]
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dinstr.c140 int epos, sn; local
145 sn = n;
165 if (sn < 0)
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/mirror/
H A Dmirrored.c79 static int _mirrored_text_import_area_count(struct config_node *sn, uint32_t *area_count) argument
81 if (!get_config_uint32(sn, "mirror_count", area_count)) {
83 "segment '%s'.", config_parent_name(sn));
90 static int _mirrored_text_import(struct lv_segment *seg, const struct config_node *sn, argument
96 if (find_config_node(sn, "extents_moved")) {
97 if (get_config_uint32(sn, "extents_moved",
103 config_parent_name(sn), seg->lv->name);
108 if (find_config_node(sn, "region_size")) {
109 if (!get_config_uint32(sn, "region_size",
113 config_parent_name(sn), se
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/lvm2/dist/lib/striped/
H A Dstriped.c62 static int _striped_text_import_area_count(struct config_node *sn, uint32_t *area_count) argument
64 if (!get_config_uint32(sn, "stripe_count", area_count)) {
66 "segment '%s'.", config_parent_name(sn));
73 static int _striped_text_import(struct lv_segment *seg, const struct config_node *sn, argument
79 !get_config_uint32(sn, "stripe_size", &seg->stripe_size)) {
81 "of logical volume %s.", config_parent_name(sn), seg->lv->name);
85 if (!(cn = find_config_node(sn, "stripes"))) {
87 "of logical volume %s.", config_parent_name(sn), seg->lv->name);
93 return text_import_areas(seg, sn, cn, pv_hash, 0);
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dsubr_disk.c109 hp0g: hard error reading fsbn 12345 of 12344-12347 (hp0 bn %d cn %d tn %d sn %d)
129 daddr_t sn; local
143 sn = bp->b_blkno;
145 (*pr)("%" PRIdaddr, sn);
148 sn += blkdone;
149 (*pr)("%" PRIdaddr " of ", sn);
155 sn += lp->d_partitions[part].p_offset;
157 dname, unit, sn, sn / lp->d_secpercyl);
158 sn
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/include/isc/
H A Devent.h64 #define ISC_EVENT_INIT(event, sz, at, ta, ty, ac, ar, sn, df, da) \
72 (event)->ev_sender = (sn); \

Completed in 303 milliseconds

123456