Searched refs:base (Results 1 - 25 of 1566) sorted by relevance

1234567891011>>

/freebsd-10.1-release/contrib/ntp/sntp/libevent/
H A Dkqueue-internal.h29 /** Notification function, used to tell an event base to wake up from another
31 * called successfully on that base. */
32 int event_kq_notify_base_(struct event_base *base);
34 /** Prepare a kqueue-using event base to receive notifications via an internal
37 int event_kq_add_notify_event_(struct event_base *base);
H A Devmap-internal.h58 @param base the event_base to operate on.
62 int evmap_io_add_(struct event_base *base, evutil_socket_t fd, struct event *ev);
67 @param base the event_base to operate on.
71 int evmap_io_del_(struct event_base *base, evutil_socket_t fd, struct event *ev);
74 @param base the event_base to operate on.
78 void evmap_io_active_(struct event_base *base, evutil_socket_t fd, short events);
84 int evmap_signal_add_(struct event_base *base, int signum, struct event *ev);
85 int evmap_signal_del_(struct event_base *base, int signum, struct event *ev);
86 void evmap_signal_active_(struct event_base *base, evutil_socket_t signum, int ncalls);
96 int evmap_reinit_(struct event_base *base);
[all...]
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dlbasename.c51 const char *base; local
59 for (base = name; *name; name++)
61 base = name + 1;
63 return base;
H A Dmake-temp-file.c67 try_dir (const char *dir, const char *base) argument
69 if (base != 0)
70 return base;
99 const char *base = 0; local
106 base = try_dir (getenv ("TMPDIR"), base);
107 base = try_dir (getenv ("TMP"), base);
108 base = try_dir (getenv ("TEMP"), base);
150 const char *base = choose_tmpdir (); local
[all...]
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dlbasename.c51 const char *base; local
59 for (base = name; *name; name++)
61 base = name + 1;
63 return base;
H A Dmake-temp-file.c67 try_dir (const char *dir, const char *base) argument
69 if (base != 0)
70 return base;
99 const char *base = 0; local
106 base = try_dir (getenv ("TMPDIR"), base);
107 base = try_dir (getenv ("TMP"), base);
108 base = try_dir (getenv ("TEMP"), base);
150 const char *base = choose_tmpdir (); local
[all...]
/freebsd-10.1-release/tools/regression/geom_concat/
H A Dconf.sh6 base=`basename $0`
/freebsd-10.1-release/tools/regression/geom_mirror/
H A Dconf.sh6 base=`basename $0`
/freebsd-10.1-release/tools/regression/geom_nop/
H A Dconf.sh5 base=`basename $0`
/freebsd-10.1-release/tools/regression/geom_raid3/
H A Dconf.sh6 base=`basename $0`
/freebsd-10.1-release/tools/regression/geom_shsec/
H A Dconf.sh6 base=`basename $0`
/freebsd-10.1-release/tools/regression/geom_stripe/
H A Dconf.sh6 base=`basename $0`
/freebsd-10.1-release/sys/dev/wl/
H A Dif_wl.h60 #define HACR(base) (base) /* Host Adapter Command Register */
61 #define HASR(base) (base) /* Host Adapter Status Register */
62 #define MMCR(base) (base+0x2) /* Modem Management Ctrl Register */
63 #define PIOR0(base) (base+0x4) /* Program I/O Address Register 0 */
64 #define PIOP0(base) (base
[all...]
/freebsd-10.1-release/usr.bin/sort/
H A Dradixsort.h36 void rxsort(struct sort_list_item **base, size_t nmemb);
/freebsd-10.1-release/bin/ed/test/
H A Dmkscripts.sh11 # base=${i%.*}
12 # base=`echo $i | sed 's/\..*//'`
13 # base=`expr $i : '\([^.]*\)'`
17 # echo "r $base.d"
19 # echo "w $base.o"
21 # ) >$base.ed
22 # chmod +x $base.ed
25 base=`$ED - \!"echo $i" <<-EOF
33 r $base.d
34 w $base
[all...]
/freebsd-10.1-release/lib/libc/iconv/
H A D_strtoul.h46 _FUNCNAME(const char *nptr, char **endptr, int base) argument
53 /* check base value */
54 if (base && (base < 2 || base > 36)) {
59 panic("%s: invalid base %d", __func__, base);
65 * If base is 0, allow 0x for hex and 0 for octal, else
66 * assume decimal; if base is already 16, allow 0x.
80 if ((base
[all...]
/freebsd-10.1-release/contrib/diff/lib/
H A Dbasename.c38 char const *base = name + FILESYSTEM_PREFIX_LEN (name); local
41 for (p = base; *p; p++)
53 if (ISSLASH (*base))
54 base = p - 1;
59 base = p;
63 return (char *) base;
/freebsd-10.1-release/contrib/groff/src/libs/libgroff/
H A Dstrtol.c47 long strtol(str, ptr, base)
49 int base;
64 if (base == 0) {
68 base = 16;
71 base = 8;
74 base = 10;
76 if (base < 2 || base > 36)
77 base = 10;
78 else if (base
[all...]
/freebsd-10.1-release/contrib/unbound/util/
H A Dmini_event.c76 settime(struct event_base* base) argument
78 if(gettimeofday(base->time_tv, NULL) < 0) {
82 *base->time_secs = (time_t)base->time_tv->tv_sec;
87 /** create event base */
90 struct event_base* base = (struct event_base*)malloc( local
92 if(!base)
94 memset(base, 0, sizeof(*base));
95 base
142 handle_timeouts(struct event_base* base, struct timeval* now, struct timeval* wait) argument
178 handle_select(struct event_base* base, struct timeval* wait) argument
230 event_base_dispatch(struct event_base* base) argument
252 event_base_loopexit(struct event_base* base, struct timeval* ATTR_UNUSED(tv)) argument
260 event_base_free(struct event_base* base) argument
287 event_base_set(struct event_base* base, struct event* ev) argument
[all...]
/freebsd-10.1-release/tools/tools/ath/athaggrstats/
H A Dstatfoo.h75 * Statistics base class. This class is not usable; only
93 { wf->base.setfmt(&wf->base, fmt0); } \
95 { wf->base.collect_cur(&wf->base); } \
97 { wf->base.collect_tot(&wf->base); } \
99 { wf->base.update_tot(&wf->base); } \
101 { return wf->base
[all...]
/freebsd-10.1-release/tools/tools/ath/athstats/
H A Dstatfoo.h75 * Statistics base class. This class is not usable; only
93 { wf->base.setfmt(&wf->base, fmt0); } \
95 { wf->base.collect_cur(&wf->base); } \
97 { wf->base.collect_tot(&wf->base); } \
99 { wf->base.update_tot(&wf->base); } \
101 { return wf->base
[all...]
/freebsd-10.1-release/tools/tools/mwl/mwlstats/
H A Dstatfoo.h75 * Statistics base class. This class is not usable; only
92 { wf->base.setfmt(&wf->base, fmt0); } \
94 { wf->base.collect_cur(&wf->base); } \
96 { wf->base.collect_tot(&wf->base); } \
98 { wf->base.update_tot(&wf->base); } \
100 { return wf->base
[all...]
/freebsd-10.1-release/tools/tools/net80211/wlanstats/
H A Dstatfoo.h75 * Statistics base class. This class is not usable; only
93 { wf->base.setfmt(&wf->base, fmt0); } \
95 { wf->base.collect_cur(&wf->base); } \
97 { wf->base.collect_tot(&wf->base); } \
99 { wf->base.update_tot(&wf->base); } \
101 { return wf->base
[all...]
/freebsd-10.1-release/tools/tools/npe/npestats/
H A Dstatfoo.h75 * Statistics base class. This class is not usable; only
92 { wf->base.setfmt(&wf->base, fmt0); } \
94 { wf->base.collect_cur(&wf->base); } \
96 { wf->base.collect_tot(&wf->base); } \
98 { wf->base.update_tot(&wf->base); } \
100 { return wf->base
[all...]
/freebsd-10.1-release/sys/mips/nlm/hal/
H A Dfmn.c73 * Calculates the base, start & end and returns the same for a
116 * | base ptr |
139 void nlm_cms_setup_credits(uint64_t base, int destid, int srcid, int credit) argument
144 nlm_write_cms_reg(base, CMS_OUTPUTQ_CREDIT_CFG, val);
149 * base - CMS module base address for this node.
156 int nlm_cms_alloc_spill_q(uint64_t base, int qid, uint64_t spill_base, argument
166 queue_config = nlm_read_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)));
175 nlm_write_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)),queue_config);
180 uint64_t nlm_cms_get_onchip_queue (uint64_t base, in argument
185 nlm_cms_set_onchip_queue(uint64_t base, int qid, uint64_t val) argument
194 nlm_cms_per_queue_level_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
209 nlm_cms_per_queue_timer_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
225 nlm_cms_outputq_intr_check(uint64_t base, int qid) argument
233 nlm_cms_outputq_clr_intr(uint64_t base, int qid) argument
241 nlm_cms_illegal_dst_error_intr(uint64_t base, int en) argument
250 nlm_cms_timeout_error_intr(uint64_t base, int en) argument
259 nlm_cms_biu_error_resp_intr(uint64_t base, int en) argument
268 nlm_cms_spill_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
277 nlm_cms_spill_correctable_ecc_error_intr(uint64_t base, int en) argument
286 nlm_cms_outputq_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
295 nlm_cms_outputq_correctable_ecc_error_intr(uint64_t base, int en) argument
304 nlm_cms_network_error_status(uint64_t base) argument
331 nlm_cms_trace_setup(uint64_t base, int en, uint64_t trace_base, uint64_t trace_limit, int match_dstid_en, int dst_id, int match_srcid_en, int src_id, int wrap) argument
351 nlm_cms_endian_byte_swap(uint64_t base, int en) argument
[all...]

Completed in 162 milliseconds

1234567891011>>