/freebsd/usr.sbin/config/ |
H A D | mkoptions.cc | 62 struct opt_list *ol; in options() local 98 SLIST_FOREACH(ol, &otab, o_next) { in options() 99 if (strcasecmp(ol->o_name, machinearch) != 0) in options() 105 op->op_name = ns(ol->o_name); in options() 111 SLIST_FOREACH(ol, &otab, o_next) { in options() 112 if (eq(op->op_name, ol->o_name) && in options() 113 (ol->o_flags & OL_ALIAS)) { in options() 115 op->op_name, ol->o_file); in options() 116 op->op_name = ol->o_file; in options() 121 SLIST_FOREACH(ol, &otab, o_next) in options() [all …]
|
H A D | main.cc | 465 struct opt *ol; in configfile_dynamic() local 476 SLIST_FOREACH(ol, &mkopt, op_next) in configfile_dynamic() 477 cfg << "makeoptions\t" << ol->op_name << '=' << in configfile_dynamic() 478 ol->op_value << lend; in configfile_dynamic() 479 SLIST_FOREACH(ol, &opt, op_next) { in configfile_dynamic() 480 if (strncmp(ol->op_name, "DEV_", 4) == 0) in configfile_dynamic() 482 cfg << "options\t" << ol->op_name; in configfile_dynamic() 483 if (ol->op_value != NULL) { in configfile_dynamic() 485 for (i = 0; i < strlen(ol->op_value); i++) { in configfile_dynamic() 486 if (ol->op_value[i] == '"') in configfile_dynamic() [all …]
|
/freebsd/contrib/netbsd-tests/lib/libc/gen/ |
H A D | t_vis.c | 156 char s[256], cd[sizeof(s) * 4 + 1], jd[sizeof(cd)], *ol; in ATF_TC_BODY() local 163 ol = setlocale(LC_CTYPE, "ja_JP.UTF-8"); in ATF_TC_BODY() 164 ATF_REQUIRE(ol != NULL); in ATF_TC_BODY() 167 ol = strdup(ol); in ATF_TC_BODY() 168 ATF_REQUIRE(ol != NULL); in ATF_TC_BODY() 173 setlocale(LC_CTYPE, ol); in ATF_TC_BODY() 174 free(ol); in ATF_TC_BODY()
|
/freebsd/contrib/ofed/librdmacm/examples/ |
H A D | common.h | 61 #define rs_setsockopt(s,l,n,v,ol) \ argument 62 use_rs ? rsetsockopt(s,l,n,v,ol) : setsockopt(s,l,n,v,ol) 63 #define rs_getsockopt(s,l,n,v,ol) \ argument 64 use_rs ? rgetsockopt(s,l,n,v,ol) : getsockopt(s,l,n,v,ol)
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/ |
H A D | Getopt.java | 193 int ol; // opt length in parselong() local 199 ol = opt.length(); in parselong() 214 op < ol) { in parselong() 220 if (match && ip < il && ic == ')' && (op >= ol || in parselong() 222 if (op < ol && opt.charAt(op) == '=') { in parselong()
|
/freebsd/sys/amd64/vmm/io/ |
H A D | vatpit.c | 85 uint8_t ol[2]; member 240 c->ol[1] = lval; /* LSB */ in pit_update_counter() 241 c->ol[0] = lval >> 8; /* MSB */ in pit_update_counter() 396 *eax = c->ol[--c->olbyte]; in vatpit_handler() 499 SNAPSHOT_BUF_OR_LEAVE(channel->ol, sizeof(channel->ol), in vatpit_snapshot()
|
/freebsd/sys/net/ |
H A D | mppcd.c | 55 uint32_t res, ol; in getbits() local 57 ol = *l; in getbits() 60 res = (buf[*i] & m[ol]) >> (*l); in getbits() 67 res = (buf[(*i)++] & m[ol]) << 8; in getbits()
|
/freebsd/sbin/ipf/ipsend/ |
H A D | ip.c | 148 char optcpy[48], ol; in send_ip() local 159 ol = (IP_HL(ip) << 2) - sizeof(*ip); in send_ip() 160 for (i = 0, s = (char*)(ip + 1); ol > 0; ) in send_ip() 166 ol--; in send_ip() 170 ol -= olen; in send_ip()
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | buffer_iocp.c | 173 struct event_overlapped *ol) in evbuffer_launch_write_() argument 227 &ol->overlapped, NULL)) { in evbuffer_launch_write_() 247 struct event_overlapped *ol) in evbuffer_launch_read_() argument 293 &ol->overlapped, NULL)) { in evbuffer_launch_read_()
|
H A D | iocp-internal.h | 138 int evbuffer_launch_read_(struct evbuffer *buf, size_t n, struct event_overlapped *ol); 153 int evbuffer_launch_write_(struct evbuffer *buf, ev_ssize_t n, struct event_overlapped *ol);
|
/freebsd/contrib/libevent/ |
H A D | buffer_iocp.c | 173 struct event_overlapped *ol) in evbuffer_launch_write_() argument 227 &ol->overlapped, NULL)) { in evbuffer_launch_write_() 247 struct event_overlapped *ol) in evbuffer_launch_read_() argument 293 &ol->overlapped, NULL)) { in evbuffer_launch_read_()
|
H A D | iocp-internal.h | 138 int evbuffer_launch_read_(struct evbuffer *buf, size_t n, struct event_overlapped *ol); 153 int evbuffer_launch_write_(struct evbuffer *buf, ev_ssize_t n, struct event_overlapped *ol);
|
/freebsd/contrib/libxo/doc/_static/ |
H A D | basic.css_t | 428 ol.arabic { 432 ol.loweralpha { 436 ol.upperalpha { 440 ol.lowerroman { 444 ol.upperroman {
|
/freebsd/sys/kern/ |
H A D | tty_ttydisc.c | 1016 size_t ol; in ttydisc_rint() local 1198 ol = 2; in ttydisc_rint() 1202 ol = 1; in ttydisc_rint() 1211 ol = 3; in ttydisc_rint() 1215 ol = 1; in ttydisc_rint() 1220 if (ttyinq_write_nofrag(&tp->t_inq, ob, ol, quote) != 0) { in ttydisc_rint()
|
/freebsd/contrib/libc-vis/ |
H A D | vis.c | 110 char *ol; in iscgraph() local 112 ol = setlocale(LC_CTYPE, "C"); in iscgraph() 114 if (ol) in iscgraph() 115 setlocale(LC_CTYPE, ol); in iscgraph()
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | latin1 | 8 dansk deutsch espa�ol fran�ais italiano
|
/freebsd/contrib/ntp/html/drivers/scripts/ |
H A D | style.css | 10 ul, dl, ol, {margin-top: .6em; margin-bottom: .6em; margin-left 5em} selector
|
/freebsd/contrib/ntp/html/scripts/ |
H A D | style.css | 10 ul, dl, ol, {margin-top: .6em; margin-bottom: .6em; margin-left 5em} selector
|
/freebsd/contrib/llvm-project/lld/docs/llvm-theme/static/ |
H A D | llvm.css | 321 div.admonition ul, div.admonition ol, 322 div.warning ul, div.warning ol {
|
/freebsd/contrib/dialog/po/ |
H A D | es.po | 1 # Mensajes en español para dialog.
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | CommentHTMLTags.td | 39 def Ol : Tag<"ol">;
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | fil.c | 1434 ol = 1; in ipf_pr_tcpcommon() 1438 ol = (int)*(s + 1); in ipf_pr_tcpcommon() 1439 if (ol < 2 || ol > tlen) in ipf_pr_tcpcommon() 1450 tlen -= ol; in ipf_pr_tcpcommon() 1451 s += ol; in ipf_pr_tcpcommon() 1652 int hlen, ol, mv, p, i; in ipf_pr_ipv4hdr() local 1784 ol = 1; in ipf_pr_ipv4hdr() 1788 ol = (int)*(s + 1); in ipf_pr_ipv4hdr() 1789 if (ol < 2 || ol > hlen) in ipf_pr_ipv4hdr() 1795 if ((opt == (u_char)op->ol_val) && (ol > 4)) { in ipf_pr_ipv4hdr() [all …]
|
H A D | ip_state.c | 1851 int off, mlen, ol, i, len, retval; in ipf_tcpoptions() local 1880 ol = 1; in ipf_tcpoptions() 1884 ol = (int)*(s + 1); in ipf_tcpoptions() 1885 if (ol < 2 || ol > len) in ipf_tcpoptions() 1895 if (ol == TCPOLEN_WINDOW) { in ipf_tcpoptions() 1912 if (ol == TCPOLEN_MAXSEG) { in ipf_tcpoptions() 1921 if (ol == TCPOLEN_SACK_PERMITTED) in ipf_tcpoptions() 1928 len -= ol; in ipf_tcpoptions() 1929 s += ol; in ipf_tcpoptions()
|
/freebsd/contrib/expat/doc/ |
H A D | ok.min.css | 2 …ol,p,pre,section,select,summary,svg,table,textarea,ul,video{margin-bottom:var(--ok-s-4)}address:la… selector
|
/freebsd/share/syscons/keymaps/ |
H A D | INDEX.keymaps | 464 spanish.dvorak.kbd:es:Espa�ol Dvorak 471 spanish.iso.kbd:es:Espa�ol ISO-8859-1 478 spanish.iso.acc.kbd:es:Espa�ol ISO-8859-1 (con acentos) 485 spanish.iso15.acc.kbd:es:Espa�ol ISO-8859-15 (con acentos)
|