Home
last modified time | relevance | path

Searched refs:pref (Results 1 – 25 of 78) sorted by relevance

1234

/freebsd/crypto/openssl/test/ssl-tests/
H A D25-cipher.cnf8 test-3 = 3-cipher-server-pref-1
9 test-4 = 4-cipher-server-pref-2
10 test-5 = 5-cipher-server-pref-client-list
11 test-6 = 6-cipher-server-pref-not-mobile
12 test-7 = 7-cipher-server-pref-mobile
13 test-8 = 8-cipher-server-pref-mobile2
91 [3-cipher-server-pref-1]
92 ssl_conf = 3-cipher-server-pref-1-ssl
94 [3-cipher-server-pref-1-ssl]
95 server = 3-cipher-server-pref-1-server
[all …]
H A D08-npn.cnf7 test-2 = 2-npn-client-honours-server-pref
8 test-3 = 3-npn-client-first-pref-on-mismatch
22 test-17 = 17-npn-client-first-pref-on-mismatch-resumption
93 [2-npn-client-honours-server-pref]
94 ssl_conf = 2-npn-client-honours-server-pref-ssl
96 [2-npn-client-honours-server-pref-ssl]
97 server = 2-npn-client-honours-server-pref-server
98 client = 2-npn-client-honours-server-pref-client
100 [2-npn-client-honours-server-pref-server]
105 [2-npn-client-honours-server-pref-client]
[all …]
H A D25-cipher.cnf.in64 name => "cipher-server-pref-1",
79 name => "cipher-server-pref-2",
94 name => "cipher-server-pref-client-list",
109 name => "cipher-server-pref-not-mobile",
124 name => "cipher-server-pref-mobile",
142 name => "cipher-server-pref-mobile2",
H A D09-alpn.cnf7 test-2 = 2-alpn-server-honours-server-pref
87 [2-alpn-server-honours-server-pref]
88 ssl_conf = 2-alpn-server-honours-server-pref-ssl
90 [2-alpn-server-honours-server-pref-ssl]
91 server = 2-alpn-server-honours-server-pref-server
92 client = 2-alpn-server-honours-server-pref-client
94 [2-alpn-server-honours-server-pref-server]
99 [2-alpn-server-honours-server-pref-client]
106 server = 2-alpn-server-honours-server-pref-server-extra
107 client = 2-alpn-server-honours-server-pref-client-extra
[all …]
H A D08-npn.cnf.in53 name => "npn-client-honours-server-pref",
70 name => "npn-client-first-pref-on-mismatch",
359 name => "npn-client-first-pref-on-mismatch-resumption",
/freebsd/contrib/byacc/
H A Dmkpar.c231 action *p, *pref = 0; in remove_conflicts() local
244 pref = NULL; in remove_conflicts()
251 pref = p; in remove_conflicts()
259 StartBacktrack(pref); in remove_conflicts()
261 else if (pref != 0 && pref->action_code == SHIFT) in remove_conflicts()
263 if (pref->prec > 0 && p->prec > 0) in remove_conflicts()
265 if (pref->prec < p->prec) in remove_conflicts()
267 pref->suppressed = 2; in remove_conflicts()
268 pref = p; in remove_conflicts()
270 else if (pref->prec > p->prec) in remove_conflicts()
[all …]
/freebsd/usr.sbin/makefs/ffs/
H A Dffs_balloc.c84 daddr_t newb, pref; in ffs_balloc_ufs1() local
205 pref = 0; in ffs_balloc_ufs1()
223 pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0); in ffs_balloc_ufs1()
224 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); in ffs_balloc_ufs1()
263 if (pref == 0) in ffs_balloc_ufs1()
264 pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0); in ffs_balloc_ufs1()
265 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); in ffs_balloc_ufs1()
295 pref = ffs_blkpref_ufs1(ip, lbn, indirs[num].in_off, &bap[0]); in ffs_balloc_ufs1()
296 error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, &newb); in ffs_balloc_ufs1()
341 daddr_t newb, pref, nb; in ffs_balloc_ufs2() local
[all …]
/freebsd/contrib/dma/
H A Ddns.c56 v = ha->pref - hb->pref; in sort_pref()
66 add_host(int pref, const char *host, int port, struct mx_hostentry **he, size_t *ps) in add_host() argument
110 p->pref = pref; in add_host()
143 int pref; in dns_get_mx_list() local
203 pref = ns_get16(cp); in dns_get_mx_list()
210 err = add_host(pref, outname, port, &hosts, &nhosts); in dns_get_mx_list()
288 printf("%d\t%s\t%s\n", p->pref, p->host, p->addr); in main()
/freebsd/sys/fs/ext2fs/
H A Dext2_balloc.c107 e2fs_daddr_t *bap, pref; in ext2_balloc() local
174 pref = 0; in ext2_balloc()
188 pref = ext2_blkpref(ip, lbn, indirs[0].in_off + in ext2_balloc()
190 if ((error = ext2_alloc(ip, lbn, pref, fs->e2fs_bsize, cred, in ext2_balloc()
229 if (pref == 0) in ext2_balloc()
230 pref = ext2_blkpref(ip, lbn, indirs[i].in_off, bap, in ext2_balloc()
232 error = ext2_alloc(ip, lbn, pref, (int)fs->e2fs_bsize, cred, &newb); in ext2_balloc()
270 pref = ext2_blkpref(ip, lbn, indirs[i].in_off, &bap[0], in ext2_balloc()
273 lbn, pref, (int)fs->e2fs_bsize, cred, &newb)) != 0) { in ext2_balloc()
/freebsd/contrib/bearssl/src/ssl/
H A Dssl_hashes.c31 static const unsigned char pref[] = { in br_ssl_choose_hash() local
37 for (u = 0; u < sizeof pref; u ++) { in br_ssl_choose_hash()
40 x = pref[u]; in br_ssl_choose_hash()
/freebsd/sys/ufs/ffs/
H A Dffs_balloc.c103 ufs1_daddr_t *bap, pref; in ffs_balloc_ufs1() local
242 pref = 0; in ffs_balloc_ufs1()
260 pref = ffs_blkpref_ufs1(ip, lbn, -indirs[0].in_off - 1, in ffs_balloc_ufs1()
262 if ((error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, in ffs_balloc_ufs1()
267 pref = newb + fs->fs_frag; in ffs_balloc_ufs1()
322 if (pref == 0) in ffs_balloc_ufs1()
323 pref = ffs_blkpref_ufs1(ip, lbn, i - num - 1, in ffs_balloc_ufs1()
325 if ((error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, in ffs_balloc_ufs1()
347 pref = newb + fs->fs_frag; in ffs_balloc_ufs1()
406 if (pref == 0 || (lbn > UFS_NDADDR && fs->fs_metaspace != 0)) in ffs_balloc_ufs1()
[all …]
H A Dffs_alloc.c578 ufs2_daddr_t pref; in ffs_reallocblks_ufs1() local
675 pref = ffs_blkpref_ufs1(ip, start_lbn, soff, sbap); in ffs_reallocblks_ufs1()
677 pref = cgdata(fs, ip->i_nextclustercg); in ffs_reallocblks_ufs1()
683 cg = dtog(fs, pref); in ffs_reallocblks_ufs1()
685 if ((newblk = ffs_clusteralloc(ip, cg, pref, len)) != 0) in ffs_reallocblks_ufs1()
844 ufs2_daddr_t soff, newblk, blkno, pref; in ffs_reallocblks_ufs2() local
941 pref = ffs_blkpref_ufs2(ip, start_lbn, soff, sbap); in ffs_reallocblks_ufs2()
943 pref = cgdata(fs, ip->i_nextclustercg); in ffs_reallocblks_ufs2()
949 cg = dtog(fs, pref); in ffs_reallocblks_ufs2()
951 if ((newblk = ffs_clusteralloc(ip, cg, pref, len)) != 0) in ffs_reallocblks_ufs2()
[all …]
/freebsd/sbin/routed/
H A Drdisc.c563 n_long pref, /* signed and in network order */ in parse_ad() argument
594 pref = UNSIGN_PREF(ntohl(pref)); in parse_ad()
596 if (pref == 0 || life < MinMaxAdvertiseInterval) { in parse_ad()
597 pref = 0; in parse_ad()
621 || (pref > drp->dr_pref in parse_ad()
647 new_drp->dr_recv_pref = pref; in parse_ad()
649 new_drp->dr_pref = PREF(pref,ifp); in parse_ad()
776 n_long pref; in send_adv() local
791 pref = UNSIGN_PREF(ifp->int_rdisc_pref); in send_adv()
792 u.ad.icmp_ad_info[0].icmp_ad_pref = htonl(SIGN_PREF(PREF(pref, ifp))); in send_adv()
H A Dtable.c278 char pref, in ag_check() argument
303 nc_ag.ag_pref = pref; in ag_check()
388 if (pref <= ag->ag_pref) { in ag_check()
393 ag->ag_pref = pref; in ag_check()
431 && ag->ag_pref == pref in ag_check()
459 } else if (ag->ag_pref >= pref in ag_check()
498 ag->ag_pref = pref; in ag_check()
499 pref = x; in ag_check()
582 nag->ag_pref = pref; in ag_check()
1409 char metric, pref; in walk_kern() local
[all …]
/freebsd/stand/common/
H A Dpart.c760 int pref, preflevel; in ptable_getbestpart() local
766 preflevel = pref = PREF_NONE; in ptable_getbestpart()
772 pref = entry->flags & 0x80 ? PREF_FBSD_ACT: in ptable_getbestpart()
776 pref = entry->flags & 0x80 ? PREF_LINUX_ACT: in ptable_getbestpart()
785 pref = entry->flags & 0x80 ? PREF_DOS_ACT: in ptable_getbestpart()
789 pref = PREF_NONE; in ptable_getbestpart()
796 pref = PREF_DOS; in ptable_getbestpart()
799 pref = PREF_FBSD; in ptable_getbestpart()
801 pref = PREF_NONE; in ptable_getbestpart()
804 if (pref < preflevel) { in ptable_getbestpart()
[all …]
/freebsd/contrib/tcsh/
H A Dsh.exec.c361 char pref[2]; in texec() local
409 if ((nread = xread(fd, pref, 2)) == 2) { in texec()
410 if (!isprint((unsigned char)pref[0]) && in texec()
411 (pref[0] != '\n' && pref[0] != '\t')) { in texec()
434 pref[0] = '#'; in texec()
435 pref[1] = '\0'; in texec()
441 pref[0] != '#' || pref[1] != '!' || hashbang(fd, &vp) == -1) { in texec()
456 && pref[0] != '#' in texec()
/freebsd/usr.bin/diff/
H A Ddiffreg.c207 static size_t pref, suff; /* lengths of prefix and suffix */ variable
208 static size_t slen[2]; /* lengths of files minus pref / suff */
580 for (pref = 0; pref < len[0] && pref < len[1] && in prune()
581 file[0][pref + 1].value == file[1][pref + 1].value; in prune()
582 pref++) in prune()
584 for (suff = 0; suff < len[0] - pref && suff < len[1] - pref in prune()
[all...]
/freebsd/contrib/wpa/src/ap/
H A Dmbo_ap.c49 info->pref = buf[len - 2]; in mbo_ap_parse_non_pref_chan()
78 MAC2STR(sta->addr), info->op_class, info->pref, in mbo_ap_parse_non_pref_chan()
136 count, info->op_class, info->pref, in mbo_ap_get_info()
/freebsd/usr.bin/number/
H A Dnumber.c251 static char const * const pref[] = { "", "ten-", "hundred-" }; in pfract() local
261 (void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]); in pfract()
/freebsd/usr.bin/top/
H A Dmachine.c160 static struct kinfo_proc **pref; variable
324 pref = NULL; in machine_init()
807 pref = realloc(pref, sizeof(*pref) * nproc); in get_process_info()
811 if (pref == NULL || pbase == NULL || pcpu == NULL) { in get_process_info()
825 prefp = pref; in get_process_info()
890 qsort(pref, active_procs, sizeof(*pref), compare); in get_process_info()
897 handle.next_proc = pref; in get_process_info()
/freebsd/contrib/sendmail/contrib/
H A Dexpn.pl988 local($nh, $pref,$cpref);
1015 $pref = $1;
1016 if ($pref < $cpref) {
1018 $cpref = $pref;
1019 } elsif ($pref) {
1020 $fallback{$pref} .= " $nh";
/freebsd/sys/fs/nfs/
H A Dnfs_commonport.c294 int pref; in nfsvno_getfs() local
302 pref = NFS_MAXDGRAMDATA; in nfsvno_getfs()
304 pref = nfs_srvmaxio; in nfsvno_getfs()
306 sip->fs_rtpref = pref; in nfsvno_getfs()
309 sip->fs_wtpref = pref; in nfsvno_getfs()
311 sip->fs_dtpref = pref; in nfsvno_getfs()
/freebsd/contrib/sendmail/src/
H A Dsm_resolve.c536 gen_dns_reply(buf, buflen, bufpos, query, qtype, domain, class, type, ttl, size, data, txtlen, pref in gen_dns_reply() argument
549 int pref;
630 PUTSHORT(pref, cp);
924 int pref; local
926 pref = (int) strtoul(token, &endptr, 10);
932 strlen(token) + 1, token, 0, pref, ad);
935 token, pref, rlen);
H A Ddomain.c881 unsigned short pref, type; local
1085 GETSHORT(pref, cp);
1093 if (pref == 0 && *bp == '\0')
1100 bp, pref);
1103 if (!seenlocal || pref < localpref)
1104 localpref = pref;
1112 prefs[nmx] = pref;
/freebsd/lib/libipsec/
H A Dpfkey_dump.c577 str_prefport(u_int family, u_int pref, u_int port, u_int ulp) in str_upperspec()
595 if (pref == plen) in str_upperspec()
598 snprintf(prefbuf, sizeof(prefbuf), "/%u", pref);
533 str_prefport(u_int family,u_int pref,u_int port,u_int ulp) str_prefport() argument

1234