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

1234567891011>>

/freebsd-12-stable/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-12-stable/contrib/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-12-stable/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...]
H A Dbasename.c45 const char *base; local
53 for (base = name; *name; name++)
57 base = name + 1;
60 return (char *) base;
/freebsd-12-stable/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...]
H A Dbasename.c45 const char *base; local
53 for (base = name; *name; name++)
57 base = name + 1;
60 return (char *) base;
/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dbase_inlines.h5 base_ind_get(const base_t *base) { argument
6 return base->ind;
H A Dbase_externs.h9 void base_delete(tsdn_t *tsdn, base_t *base);
10 extent_hooks_t *base_extent_hooks_get(base_t *base);
11 extent_hooks_t *base_extent_hooks_set(base_t *base,
13 void *base_alloc(tsdn_t *tsdn, base_t *base, size_t size, size_t alignment);
14 extent_t *base_alloc_extent(tsdn_t *tsdn, base_t *base);
15 void base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated,
17 void base_prefork(tsdn_t *tsdn, base_t *base);
18 void base_postfork_parent(tsdn_t *tsdn, base_t *base);
19 void base_postfork_child(tsdn_t *tsdn, base_t *base);
/freebsd-12-stable/lib/libc/gen/
H A Dtimespec_get.c41 timespec_get(struct timespec *ts, int base) argument
44 switch (base) {
53 return base;
/freebsd-12-stable/lib/libpathconv/
H A Dpathconv.h30 char * rel2abs(const char *path, const char *base, char *result, const size_t size);
31 char * abs2rel(const char *path, const char *base, char *result, const size_t size);
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/
H A Dscrypt_platform.c43 uint8_t *base, *aligned; local
45 if ((base = (uint8_t *) mmap(NULL, size, PROT_READ | PROT_WRITE,
48 base = NULL; /* LCOV_EXCL_LINE */
50 aligned = base;
52 if ((errno = posix_memalign((void **) &base, 64, size)) != 0) {
53 base = NULL;
55 aligned = base;
57 base = aligned = NULL;
60 } else if ((base = (uint8_t *) malloc(size + 63)) != NULL) {
61 aligned = base
[all...]
/freebsd-12-stable/usr.bin/sort/
H A Dradixsort.h38 void rxsort(struct sort_list_item **base, size_t nmemb);
/freebsd-12-stable/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-12-stable/lib/libc/iconv/
H A D_strtoul.h48 _FUNCNAME(const char *nptr, char **endptr, int base) argument
55 /* check base value */
56 if (base && (base < 2 || base > 36)) {
61 panic("%s: invalid base %d", __func__, base);
67 * If base is 0, allow 0x for hex and 0 for octal, else
68 * assume decimal; if base is already 16, allow 0x.
82 if ((base
[all...]
/freebsd-12-stable/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-12-stable/lib/libbsdstat/
H A Dbsdstat.h77 * Statistics base class. This class is not usable; only
95 { wf->base.setfmt(&wf->base, fmt0); } \
97 { wf->base.collect_cur(&wf->base); } \
99 { wf->base.collect_tot(&wf->base); } \
101 { wf->base.update_tot(&wf->base); } \
103 { return wf->base
[all...]
/freebsd-12-stable/sys/mips/nlm/hal/
H A Dfmn.c75 * Calculates the base, start & end and returns the same for a
118 * | base ptr |
141 void nlm_cms_setup_credits(uint64_t base, int destid, int srcid, int credit) argument
146 nlm_write_cms_reg(base, CMS_OUTPUTQ_CREDIT_CFG, val);
151 * base - CMS module base address for this node.
158 int nlm_cms_alloc_spill_q(uint64_t base, int qid, uint64_t spill_base, argument
168 queue_config = nlm_read_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)));
177 nlm_write_cms_reg(base,(CMS_OUTPUTQ_CONFIG(qid)),queue_config);
182 uint64_t nlm_cms_get_onchip_queue (uint64_t base, in argument
187 nlm_cms_set_onchip_queue(uint64_t base, int qid, uint64_t val) argument
196 nlm_cms_per_queue_level_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
211 nlm_cms_per_queue_timer_intr(uint64_t base, int qid, int sub_type, int intr_val) argument
227 nlm_cms_outputq_intr_check(uint64_t base, int qid) argument
235 nlm_cms_outputq_clr_intr(uint64_t base, int qid) argument
243 nlm_cms_illegal_dst_error_intr(uint64_t base, int en) argument
252 nlm_cms_timeout_error_intr(uint64_t base, int en) argument
261 nlm_cms_biu_error_resp_intr(uint64_t base, int en) argument
270 nlm_cms_spill_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
279 nlm_cms_spill_correctable_ecc_error_intr(uint64_t base, int en) argument
288 nlm_cms_outputq_uncorrectable_ecc_error_intr(uint64_t base, int en) argument
297 nlm_cms_outputq_correctable_ecc_error_intr(uint64_t base, int en) argument
306 nlm_cms_network_error_status(uint64_t base) argument
333 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
353 nlm_cms_endian_byte_swap(uint64_t base, int en) argument
[all...]
/freebsd-12-stable/sys/dev/qlnx/qlnxe/
H A Decore_iro.h35 #define YSTORM_FLOW_CONTROL_MODE_OFFSET (IRO[0].base)
38 #define TSTORM_PORT_STAT_OFFSET(port_id) (IRO[1].base + ((port_id) * IRO[1].m1))
41 #define TSTORM_LL2_PORT_STAT_OFFSET(port_id) (IRO[2].base + ((port_id) * IRO[2].m1))
44 #define USTORM_VF_PF_CHANNEL_READY_OFFSET(vf_id) (IRO[3].base + ((vf_id) * IRO[3].m1))
47 #define USTORM_FLR_FINAL_ACK_OFFSET(pf_id) (IRO[4].base + ((pf_id) * IRO[4].m1))
50 #define USTORM_EQE_CONS_OFFSET(pf_id) (IRO[5].base + ((pf_id) * IRO[5].m1))
53 #define USTORM_ETH_QUEUE_ZONE_OFFSET(queue_zone_id) (IRO[6].base + ((queue_zone_id) * IRO[6].m1))
56 #define USTORM_COMMON_QUEUE_CONS_OFFSET(queue_zone_id) (IRO[7].base + ((queue_zone_id) * IRO[7].m1))
59 #define XSTORM_INTEG_TEST_DATA_OFFSET (IRO[8].base)
62 #define YSTORM_INTEG_TEST_DATA_OFFSET (IRO[9].base)
[all...]
/freebsd-12-stable/contrib/libxo/tests/gettext/
H A DMakefile.am75 ${CHECKER} ./$$base.test --libxo:W$$fmt ${TEST_OPTS} \
76 > out/$$base.$$fmt.out 2> out/$$base.$$fmt.err ; \
77 ${DIFF} -Nu ${srcdir}/saved/$$base.$$fmt.out out/$$base.$$fmt.out ${S2O} ; \
78 ${DIFF} -Nu ${srcdir}/saved/$$base.$$fmt.err out/$$base.$$fmt.err ${S2O}
85 base=`${BASENAME} $$test .c` ; \
98 base=`${BASENAME} $$test .c` ; \
101 ${CP} out/$$base
[all...]
/freebsd-12-stable/lib/libc/stdlib/
H A Dqsort_r.c14 qsort_b(void *base, size_t nel, size_t width, qsort_block compar) argument
16 qsort_r(base, nel, width, compar,
/freebsd-12-stable/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
284 event_base_set(struct event_base* base, struct event* ev) argument
[all...]

Completed in 258 milliseconds

1234567891011>>