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

1234567891011>>

/freebsd-10-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-10-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-10-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-10-stable/kerberos5/lib/libheimbase/
H A DMakefile6 VERSION_MAP= ${KRB5DIR}/base/version-script.map
23 .PATH: ${KRB5DIR}/base
/freebsd-10-stable/lib/libstand/
H A Dzalloc_protos.h34 Library void zextendPool(MemPool *mp, void *base, uintptr_t bytes);
/freebsd-10-stable/tools/tools/npe/npestats/
H A Dnpestats.c126 struct npestatfoo base; member in struct:npestatfoo_p
259 statfoo_init(&wf->base.base, "npestats", npestats, N(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-10-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-10-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...]
H A Depoll.c112 static int epoll_nochangelist_add(struct event_base *base, evutil_socket_t fd,
114 static int epoll_nochangelist_del(struct event_base *base, evutil_socket_t fd,
141 epoll_init(struct event_base *base) argument
177 if ((base->flags & EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST) != 0 ||
178 ((base->flags & EVENT_BASE_FLAG_IGNORE_ENV) == 0 &&
181 base->evsel = &epollops_changelist;
191 if ((base->flags & EVENT_BASE_FLAG_PRECISE_TIMER) &&
192 base->monotonic_timer.monotonic_clock == CLOCK_MONOTONIC) {
220 evsig_init_(base);
250 epoll_apply_one_change(struct event_base *base, argument
357 epoll_apply_changes(struct event_base *base) argument
376 epoll_nochangelist_add(struct event_base *base, evutil_socket_t fd, short old, short events, void *p) argument
397 epoll_nochangelist_del(struct event_base *base, evutil_socket_t fd, short old, short events, void *p) argument
415 epoll_dispatch(struct event_base *base, struct timeval *tv) argument
523 epoll_dealloc(struct event_base *base) argument
[all...]
/freebsd-10-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,
H A Dregress_listener.c71 struct event_base *base = data->base; local
92 listener1 = evconnlistener_new_bind(base, acceptcb, &count1,
95 listener2 = evconnlistener_new_bind(base, acceptcb, &count2,
114 tt_ptr_op(evconnlistener_get_base(listener1), ==, base); local
115 tt_ptr_op(evconnlistener_get_base(listener2), ==, base); local
125 event_base_dispatch(base);
155 struct event_base *base = data->base; local
168 listener = evconnlistener_new(base, acceptc
[all...]
H A Dregress.c395 struct event_base *base = event_base_new(); local
431 closeev = event_new(base, -1, EV_TIMEOUT, simpleclose_close_fd_cb,
433 rev = event_new(base, pair1[1], EV_READ, record_event_cb,
436 wev = event_new(base, pair2[1], EV_WRITE, record_event_cb,
448 event_base_loopexit(base, &tv);
449 event_base_loop(base, 0);
470 if (base)
471 event_base_free(base);
630 event_assign(&ev, data->base, -1, EV_PERSIST, periodic_timeout_cb, &count);
634 event_base_loopexit(data->base,
674 struct event_base *base = data->base; local
731 struct event_base *base = data->base; local
1038 struct event_base *base = event_init(); local
1131 struct event_base *base = event_init(); local
1166 struct event_base *base = event_init(); local
1223 struct event_base *base = event_init(); local
1273 struct event_base *base = data->base; local
1296 struct event_base *base = event_get_base(ev); local
1306 struct event_base *base = data->base; local
1320 struct event_base *base = data->base; local
1333 struct event_base *base = data->base; local
1457 struct event_base *base = data->base; local
1615 struct event_base *base = ptr; local
1630 struct event_base *base = data->base; local
1767 struct event_base *base = data->base; local
1810 struct event_base *base = 0; local
1884 struct event_base *base; local
2132 struct event_base *base = data->base; local
2395 struct event_base *base = NULL; local
2455 struct event_base *base = NULL; local
2517 struct event_base *base = NULL; local
2752 struct event_base *base = data->base; local
2891 struct event_base *base = data->base; local
2952 struct event_base *base = data->base; local
2985 foreach_count_cb(const struct event_base *base, const struct event *ev, void *arg) argument
3001 foreach_find_cb(const struct event_base *base, const struct event *ev, void *arg) argument
3018 struct event_base *base = data->base; local
3087 struct event_base *base = NULL; local
3155 struct event_base *base = data->base; local
[all...]
/freebsd-10-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);
/freebsd-10-stable/contrib/libstdc++/include/bits/
H A Dstl_iterator.h138 : current(__x.base()) { }
144 base() const function in class:reverse_iterator
276 * Reverse iterators forward many operations to their underlying base()
284 { return __x.base() == __y.base(); }
290 { return __y.base() < __x.base(); }
320 { return __y.base() - __x.base(); }
326 { return reverse_iterator<_Iterator>(__x.base()
717 base() const function in class:__normal_iterator
[all...]
/freebsd-10-stable/lib/libc/stdlib/
H A Dheapsort.c79 child = base + child_i * size; \
84 par = base + par_i * size; \
110 child = base + child_i * size; \
115 par = base + par_i * size; \
121 child = base + child_i * size; \
122 par = base + par_i * size; \
146 char *base, *k, *p, *t; local
163 base = (char *)vbase - size;
174 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2);
175 COPY(base
[all...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_strtol.c44 int base; member in struct:test
56 "(rv = %ld)", t->str, t->base, li);
60 "(rv = %lld)", t->str, t->base, lli);
65 "strtol(%s, &end, %d)", end, t->str, t->base);
106 li = strtol(t[i].str, &end, t[i].base);
107 lli = strtoll(t[i].str, NULL, t[i].base);
140 li = strtol(t[i].str, &end, t[i].base);
141 lli = strtoll(t[i].str, NULL, t[i].base);
178 li = strtol(t[i].str, &end, t[i].base);
219 li = strtol(t[i].str, &end, t[i].base);
[all...]
/freebsd-10-stable/sys/x86/iommu/
H A Dintel_idpgtbl.c68 static int ctx_unmap_buf_locked(struct dmar_ctx *ctx, dmar_gaddr_t base,
114 vm_pindex_t base; local
122 base = idx * DMAR_NPTEPG + 1; /* Index of the first child page of idx */
126 ctx_idmap_nextlvl(tbl, lvl + 1, base + i, f);
141 m1 = dmar_pgalloc(tbl->pgtbl_obj, base + i,
318 * Index of the pte for the guest address base in the page table at
322 ctx_pgtbl_pte_off(struct dmar_ctx *ctx, dmar_gaddr_t base, int lvl) argument
325 base >>= DMAR_PAGE_SHIFT + (ctx->pglvl - lvl - 1) * DMAR_NPTEPGSHIFT;
326 return (base & DMAR_PTEMASK);
331 * object, which maps the given address base a
335 ctx_pgtbl_get_pindex(struct dmar_ctx *ctx, dmar_gaddr_t base, int lvl) argument
348 ctx_pgtbl_map_pte(struct dmar_ctx *ctx, dmar_gaddr_t base, int lvl, int flags, vm_pindex_t *idxp, struct sf_buf **sf) argument
414 ctx_map_buf_locked(struct dmar_ctx *ctx, dmar_gaddr_t base, dmar_gaddr_t size, vm_page_t *ma, uint64_t pflags, int flags) argument
491 ctx_map_buf(struct dmar_ctx *ctx, dmar_gaddr_t base, dmar_gaddr_t size, vm_page_t *ma, uint64_t pflags, int flags) argument
554 ctx_free_pgtbl_pde(struct dmar_ctx *ctx, dmar_gaddr_t base, int lvl, int flags) argument
566 ctx_unmap_clear_pte(struct dmar_ctx *ctx, dmar_gaddr_t base, int lvl, int flags, dmar_pte_t *pte, struct sf_buf **sf, bool free_sf) argument
595 ctx_unmap_buf_locked(struct dmar_ctx *ctx, dmar_gaddr_t base, dmar_gaddr_t size, int flags) argument
666 ctx_unmap_buf(struct dmar_ctx *ctx, dmar_gaddr_t base, dmar_gaddr_t size, int flags) argument
742 ctx_flush_iotlb_sync(struct dmar_ctx *ctx, dmar_gaddr_t base, dmar_gaddr_t size) argument
[all...]
/freebsd-10-stable/contrib/libyaml/config/
H A Ddepcomp227 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
229 tmpdepfile1=$dir$base.u
230 tmpdepfile2=$base.u
231 tmpdepfile3=$dir.libs/$base.u
234 tmpdepfile1=$dir$base.u
235 tmpdepfile2=$dir$base.u
236 tmpdepfile3=$dir$base.u
314 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
316 tmpdepfile1=$dir$base.d
317 tmpdepfile2=$dir.libs/$base
[all...]
/freebsd-10-stable/contrib/ofed/management/
H A Dgen_chlog.sh38 base=`git merge-base $obj HEAD`
39 if [ -z "$base" -o "$base" != $obj ] ; then
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dvasprintf.c63 unsigned char *base; local
88 base = (unsigned char *) sm_realloc(fake.f_bf.smb_base, ret + 1);
89 if (base == NULL)
91 *str = (char *)base;
/freebsd-10-stable/lib/libc/locale/
H A Drunetype.c53 _RuneEntry *base, *re; local
59 base = rr->__ranges;
61 re = base + (lim >> 1);
68 base = re + 1;

Completed in 396 milliseconds

1234567891011>>