Searched refs:base (Results 101 - 125 of 1414) sorted by relevance

1234567891011>>

/freebsd-10.0-release/sys/mips/nlm/hal/
H A Duart.h99 nlm_uart_set_baudrate(uint64_t base, int baud) argument
103 lcr = nlm_read_uart_reg(base, UART_LINE_CTL);
106 nlm_write_uart_reg(base, UART_LINE_CTL, lcr | (1 << 7));
107 nlm_write_uart_reg(base, UART_DIVISOR0,
109 nlm_write_uart_reg(base, UART_DIVISOR1,
113 nlm_write_uart_reg(base, UART_LINE_CTL, lcr);
117 nlm_uart_outbyte(uint64_t base, char c) argument
122 lsr = nlm_read_uart_reg(base, UART_LINE_STS);
127 nlm_write_uart_reg(base, UART_TX_DATA, (int)c);
131 nlm_uart_inbyte(uint64_t base) argument
151 nlm_uart_init(uint64_t base, int baud, int databits, int stopbits, int parity, int int_en, int loopback) argument
[all...]
/freebsd-10.0-release/contrib/ntp/libisc/
H A Dinet_aton.c94 int base, n; local
109 val = 0; base = 10; digit = 0;
113 base = 16, c = *++cp;
115 base = 8;
127 if (base == 8 && (c == '8' || c == '9'))
129 val = (val * base) + (c - '0');
132 } else if (base == 16 && isascii(c) && isxdigit(c)) {
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dfindconfig.c16 const char *base
25 (void) strcpy(result, base);
31 (void) sprintf(result, "%s/%s", base, hostname);
42 (void) sprintf(result, "%s/default.%s", base, cp);
48 (void) sprintf(result, "%s/default", base);
67 const char *base
70 return base;
/freebsd-10.0-release/lib/libc/inet/
H A Dinet_network.c54 in_addr_t val, base, n; local
60 val = 0; base = 10; digit = 0;
62 digit = 1, base = 8, cp++;
64 base = 16, cp++;
67 if (base == 8U && (c == '8' || c == '9'))
69 val = (val * base) + (c - '0');
74 if (base == 16U && isxdigit((unsigned char)c)) {
/freebsd-10.0-release/sys/dev/wl/
H A Dif_wl.c53 * It can broadcast, unicast or apparently multicast in a base cell
55 * about 800 feet around the base cell barring walls and metal.
71 * access point). This driver assumes that the base ISA port, IRQ,
238 short base; member in struct:wl_softc
340 static u_short wlmmcread(u_int base, u_short reg);
355 static void wlgetpsa(int base, u_char *buf);
389 short base; local
404 base = rman_get_start(sc->res_ioport);
409 #define PCMD(base, hacr) outw((base), (hac
481 short base; local
658 int base = sc->base; local
686 int base = sc->base; local
883 short base = sc->base; local
961 short base = sc->base; local
1055 short base = sc->base; local
1231 short base = sc->base; local
1501 short base = sc->base; local
1648 short base = sc->base; local
1707 short base = sc->base; local
1778 short base = sc->base; local
1922 short base = sc->base; local
1979 short base = sc->base; local
2012 short base = sc->base; local
2051 short base = sc->base; local
2158 short base = sc->base; local
2207 short base = sc->base; local
2230 short base = sc->base; local
2325 short base = sc->base; local
2348 wlmmcread(u_int base, u_short reg) argument
2380 wlgetpsa(int base, u_char *buf) argument
2407 short base = sc->base; local
2527 wl_cache_store(struct wl_softc *sc, int base, struct ether_header *eh, struct mbuf *m) argument
[all...]
/freebsd-10.0-release/lib/libc/stdlib/
H A Dbsearch.c48 * the base up one item past p: e.g., when lim is 5 we change base
63 const char *base = base0; local
69 p = base + (lim >> 1) * size;
74 base = (char *)p + size;
/freebsd-10.0-release/sys/libkern/
H A Dbsearch.c48 * the base up one item past p: e.g., when lim is 5 we change base
63 register const char *base = base0; local
69 p = base + (lim >> 1) * size;
74 base = (const char *)p + size;
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_strtoint.c42 strtoint(const char *s_arg, uint64_t *out, uint32_t base, int sign) argument
57 if (s == NULL || base == 1 || base > MAX_BASE) {
83 if (base == 0) {
85 base = 10;
87 base = 16;
89 base = 8;
92 if (base == 16 && c == '0' && (s[1] == 'x' || s[1] == 'X'))
95 if ((val = CTOI(c)) >= base) {
103 multmax = (uint64_t)UINT64_MAX / (uint64_t)base;
164 uu_strtoint(const char *s, void *v, size_t sz, int base, int64_t min, int64_t max) argument
235 uu_strtouint(const char *s, void *v, size_t sz, int base, uint64_t min, uint64_t max) argument
[all...]
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dprintnataddr.c19 printnataddr(v, base, addr, ifidx)
21 char *base;
32 printaddr(AF_INET, addr->na_atype, base, ifidx,
39 printaddr(AF_INET6, addr->na_atype, base, ifidx,
/freebsd-10.0-release/lib/libc/locale/
H A Dtolower.c55 _RuneEntry *base, *re; local
61 base = rr->__ranges;
63 re = base + (lim >> 1);
67 base = re + 1;
H A Dtoupper.c55 _RuneEntry *base, *re; local
61 base = rr->__ranges;
63 re = base + (lim >> 1);
69 base = re + 1;
/freebsd-10.0-release/sys/sys/
H A Dslicer.h41 off_t base; member in struct:flash_slice
/freebsd-10.0-release/tools/regression/usr.bin/pkill/
H A Dpgrep-P.t4 base=`basename $0`
10 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpgrep-i.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpgrep-n.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpgrep-o.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpgrep-v.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpgrep-x.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpkill-P.t4 base=`basename $0`
10 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
H A Dpkill-i.t4 base=`basename $0`
9 sleep=`mktemp /tmp/$base.XXXXXX` || exit 1
/freebsd-10.0-release/tools/tools/ath/athaggrstats/
H A Dathaggrstats.h41 struct statfoo base; member in struct:athaggrstatfoo
/freebsd-10.0-release/tools/tools/ath/athstats/
H A Dathstats.h41 struct statfoo base; member in struct:athstatfoo
/freebsd-10.0-release/tools/tools/mwl/mwlstats/
H A Dmwlstats.h41 struct statfoo base; member in struct:mwlstatfoo
/freebsd-10.0-release/contrib/apr-util/buckets/
H A Dapr_buckets_pool.c37 p->heap.base = apr_bucket_alloc(p->heap.alloc_len, p->list);
38 memcpy(p->heap.base, p->base, p->heap.alloc_len);
39 p->base = NULL;
49 const char *base = p->base; local
57 base = p->heap.base;
59 *str = base + b->start;
103 /* XXX: why is this? buf is const, p->base i
[all...]
/freebsd-10.0-release/bin/sh/
H A Dshell.h61 #define strtoarith_t(nptr, endptr, base) strtoimax(nptr, endptr, base)

Completed in 200 milliseconds

1234567891011>>