Searched refs:base (Results 176 - 200 of 1868) sorted by relevance

1234567891011>>

/freebsd-11-stable/lib/libc/inet/
H A Dinet_cidr_ntop.c165 struct { int base, len; } best, cur; member in struct:__anon6638
182 best.base = -1;
184 cur.base = -1;
188 if (cur.base == -1)
189 cur.base = i, cur.len = 1;
193 if (cur.base != -1) {
194 if (best.base == -1 || cur.len > best.len)
196 cur.base = -1;
200 if (cur.base != -1) {
201 if (best.base
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-ssa-address.c99 gen_addr_rtx (rtx symbol, rtx base, rtx index, rtx step, rtx offset, argument
124 if (base)
127 *addr = gen_rtx_PLUS (Pmode, *addr, base);
129 *addr = base;
215 templ = templates + TEMPL_IDX (addr->symbol, addr->base, addr->index,
230 bse = (addr->base
231 ? expand_expr (addr->base, NULL_RTX, Pmode, EXPAND_NORMAL)
249 tree sym = TMR_SYMBOL (mem_ref), base = TMR_BASE (mem_ref); local
254 else if (base && POINTER_TYPE_P (TREE_TYPE (base)))
[all...]
/freebsd-11-stable/contrib/diff/lib/
H A Dstrtoimax.c65 strtoimax (char const *ptr, char **endptr, int base) argument
73 return strtoll (ptr, endptr, base);
79 return strtol (ptr, endptr, base);
/freebsd-11-stable/contrib/amd/scripts/
H A Damd2ldif.in4 Usage $0 mapname base < mapfile >mapfile.ldif
7 base : The LDAP search base. Do not forget the quotes!
18 my $base = $ARGV[1] or die $usage;
21 print "dn: cn=amdmap $mapname timestamp, $base\n";
51 print "dn: cn=amdmap $mapname\[$key\], $base\n";
/freebsd-11-stable/lib/libc/stdlib/
H A Dbsearch.c55 * the base up one item past p: e.g., when lim is 5 we change base
72 const char *base = base0; local
78 p = base + (lim >> 1) * size;
83 base = (char *)p + size;
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dstore_mem.c38 unsigned char *base; member in struct:mem_storage
47 if(size > (size_t)(s->base + s->size - s->ptr))
48 size = s->base + s->size - s->ptr;
58 if(size > (size_t)(s->base + s->size - s->ptr))
59 size = s->base + s->size - s->ptr;
81 s->ptr = s->base + offset;
84 return sp->seek(sp, s->ptr - s->base + offset, SEEK_SET);
91 return s->ptr - s->base;
101 if ((s->ptr - s->base) > offset)
102 s->ptr = s->base
[all...]
/freebsd-11-stable/gnu/usr.bin/grep/
H A Dxstrtol.c104 bkm_scale_by_power (__strtol_t *x, int base, int power) argument
107 if (bkm_scale (x, base))
154 int base = 1024; local
168 the base, e.g. "100MD" for 100 megabytes decimal. */
177 base = 1000;
198 overflow = bkm_scale_by_power (&tmp, base, 6);
202 overflow = bkm_scale_by_power (&tmp, base, 3);
206 overflow = bkm_scale_by_power (&tmp, base, 1);
211 overflow = bkm_scale_by_power (&tmp, base, 2);
215 overflow = bkm_scale_by_power (&tmp, base,
[all...]
/freebsd-11-stable/sys/mips/nlm/dev/net/
H A Dsgmii.c141 nlm_nae_setup_rx_mode_sgmii(uint64_t base, int nblock, int iface, int port_type, argument
156 val = nlm_read_nae_reg(base,
159 nlm_write_nae_reg(base,
162 val = nlm_read_nae_reg(base,
165 nlm_write_nae_reg(base,
175 nlm_write_nae_reg(base, SGMII_MAC_FILTER_CONFIG(nblock, iface), val);
180 nlm_nae_setup_mac_addr_sgmii(uint64_t base, int nblock, int iface, argument
183 nlm_write_nae_reg(base,
190 nlm_write_nae_reg(base,
195 nlm_write_nae_reg(base,
[all...]
/freebsd-11-stable/stand/userboot/userboot/
H A Dbiossmap.c53 sm->base = 0; /* base memory */
58 sm->base = 0x100000; /* extended memory */
66 sm->base = 4 * GB;
/freebsd-11-stable/usr.sbin/asf/
H A Dasf_prog.c54 caddr_t base; local
70 base = (caddr_t)(uintptr_t)strtoumax(token[2], &endp, 16);
73 kfile_add(token[4], base);
/freebsd-11-stable/contrib/apr-util/buckets/
H A Dapr_buckets_heap.c26 *str = h->base + b->start;
36 (*h->free_func)(h->base);
53 h->base = apr_bucket_alloc(h->alloc_len, b->list);
54 if (h->base == NULL) {
59 memcpy(h->base, buf, length);
65 h->base = (char *) buf;
/freebsd-11-stable/contrib/ipfilter/lib/
H A Dinet_addr.c100 register int base, n; local
114 val = 0; base = 10;
118 base = 16, c = *++cp;
120 base = 8;
124 val = (val * base) + (c - '0');
126 } else if (base == 16 && ISASCII(c) && ISXDIGIT(c)) {
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dbase64.c46 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length);
64 buf[0] = base64[(source->base[0]>>2)&0x3f];
65 buf[1] = base64[((source->base[0]<<4)&0x30)|
66 ((source->base[1]>>4)&0x0f)];
67 buf[2] = base64[((source->base[1]<<2)&0x3c)|
68 ((source->base[2]>>6)&0x03)];
69 buf[3] = base64[source->base[2]&0x3f];
82 buf[0] = base64[(source->base[0]>>2)&0x3f];
83 buf[1] = base64[((source->base[0]<<4)&0x30)|
84 ((source->base[
243 mem_tobuffer(isc_buffer_t *target, void *base, unsigned int length) argument
[all...]
H A Dregion.c40 if ((result = memcmp(r1->base, r2->base, l)) != 0)
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devent-internal.h114 /** Flag: set if we need to reinitialize the event base after we fork.
173 struct event_base *base; member in struct:common_timeout_list
304 /** The thread currently running the event_loop for this base */
322 /** Flags that this base was configured with */
330 /** True if the base already has a pending notify, and we don't need
340 int (*th_notify_fn)(struct event_base *base);
399 #define N_ACTIVE_CALLBACKS(base) \
400 ((base)->event_count_active)
402 int evsig_set_handler_(struct event_base *base, int evsignal,
404 int evsig_restore_handler_(struct event_base *base, in
[all...]
H A Dpoll.c88 poll_init(struct event_base *base) argument
95 evsig_init_(base);
97 evutil_weakrand_seed_(&base->weakrand_seed, 0);
125 poll_dispatch(struct event_base *base, struct timeval *tv) argument
129 struct pollop *pop = base->evbase;
137 if (base->th_base_lock) {
169 EVBASE_RELEASE_LOCK(base, th_base_lock);
173 EVBASE_ACQUIRE_LOCK(base, th_base_lock);
189 i = evutil_weakrand_range_(&base->weakrand_seed, nfds);
210 evmap_io_active_(base, event_se
217 poll_add(struct event_base *base, int fd, short old, short events, void *idx_) argument
278 poll_del(struct event_base *base, int fd, short old, short events, void *idx_) argument
327 poll_dealloc(struct event_base *base) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_testutils.h40 regress_get_dnsserver(struct event_base *base,
54 int regress_dnsserver(struct event_base *base, ev_uint16_t *port,
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Ddirectives-only.c42 const unsigned char *cur, *base, *next_line, *rlimit; local
59 next_line = cur = base = buffer->cur;
93 if (!pfile->state.skipping && next_line != base)
94 cb->print_lines (lines, base, next_line - base);
223 if (!pfile->state.skipping && cur != base)
224 cb->print_lines (lines, base, cur - base);
/freebsd-11-stable/bin/pkill/tests/
H A Dpgrep-l_test.sh4 base=`basename $0`
H A Dpgrep-v_test.sh4 base=`basename $0`
H A Dpkill-P_test.sh4 base=`basename $0`
/freebsd-11-stable/contrib/gcc/config/
H A Dhost-linux.c171 linux_gt_pch_use_address (void *base, size_t size, int fd, size_t offset) argument
182 addr = mmap (base, size, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, offset);
184 if (addr == base)
191 addr = mmap (base, size, PROT_READ | PROT_WRITE,
194 if (addr != base)
208 nbytes = read (fd, base, MIN (size, SSIZE_MAX));
211 base = (char *) base + nbytes;
/freebsd-11-stable/kerberos5/lib/libheimbase/
H A DMakefile6 VERSION_MAP= ${KRB5DIR}/base/version-script.map
23 .PATH: ${KRB5DIR}/base
/freebsd-11-stable/tools/tools/npe/npestats/
H A Dnpestats.c126 struct npestatfoo base; member in struct:npestatfoo_p
258 bsdstat_init(&wf->base.base, "npestats", npestats,
260 /* override base methods */
261 wf->base.base.collect_cur = npe_collect_cur;
262 wf->base.base.collect_tot = npe_collect_tot;
263 wf->base.base
[all...]
/freebsd-11-stable/include/xlocale/
H A D_locale.h51 locale_t duplocale(locale_t base);
53 locale_t newlocale(int mask, const char *locale, locale_t base);

Completed in 300 milliseconds

1234567891011>>