Searched refs:base (Results 326 - 350 of 1766) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/contrib/ntp/sntp/libevent/include/event2/
H A Drpc_struct.h93 struct evrpc_base *base; member in struct:evrpc
/freebsd-13-stable/contrib/ntp/sntp/libevent/
H A Diocp-internal.h181 struct event_iocp_port *event_base_get_iocp_(struct event_base *base);
184 int event_base_start_iocp_(struct event_base *base, int n_cpus);
185 void event_base_stop_iocp_(struct event_base *base);
188 struct bufferevent *bufferevent_async_new_(struct event_base *base,
/freebsd-13-stable/sys/sys/
H A Dslicer.h45 off_t base; member in struct:flash_slice
/freebsd-13-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_muram_ext.h83 @Param[in] baseAddress - Pointer to base of memory mapped FM-MURAM.
131 to base).
134 @Param[in] base - the desired base-address to be allocated.
139 void * FM_MURAM_AllocMemForce(t_Handle h_FmMuram, uint64_t base, uint32_t size);
/freebsd-13-stable/sys/netpfil/ipfw/nat64/
H A Dnat64stl.h43 struct nat64_config base; member in struct:nat64stl_cfg
/freebsd-13-stable/contrib/unbound/libunbound/
H A Dunbound-event.h43 * the user provided event base API. Then, use the ub_resolve_event call
48 * is done by the unbound state machines that are connected to the event base.
50 * It is also possible to provide a libevent based event base by using
96 /** Instantiate a new ub_event associated with this event base */
99 /** Instantiate a new signal associated with this event base,
110 * A user defined pluggable event base is registered by providing a
113 * fully equipped providing the event base API to be used by libunbound.
179 * @param base: the pluggable event base that the caller has created.
180 * The unbound context uses this event base
[all...]
/freebsd-13-stable/contrib/byacc/test/
H A Dcalc.y6 int base;
61 { $$ = $1; base = ($1==0) ? 8 : 10; }
63 { $$ = base * $1 + $2; }
H A Dcalc_code_all.y13 int base;
68 { $$ = $1; base = ($1==0) ? 8 : 10; }
70 { $$ = base * $1 + $2; }
H A Dcalc_code_default.y9 int base;
64 { $$ = $1; base = ($1==0) ? 8 : 10; }
66 { $$ = base * $1 + $2; }
H A Dcalc_code_imports.y9 int base;
64 { $$ = $1; base = ($1==0) ? 8 : 10; }
66 { $$ = base * $1 + $2; }
H A Dcalc_code_provides.y9 int base;
64 { $$ = $1; base = ($1==0) ? 8 : 10; }
66 { $$ = base * $1 + $2; }
H A Dcalc_code_requires.y9 int base;
64 { $$ = $1; base = ($1==0) ? 8 : 10; }
66 { $$ = base * $1 + $2; }
H A Dcalc_code_top.y9 int base;
64 { $$ = $1; base = ($1==0) ? 8 : 10; }
66 { $$ = base * $1 + $2; }
H A Dcode_calc.y8 int base;
65 { $$ = $1; base = ($1==0) ? 8 : 10; }
67 { $$ = base * $1 + $2; }
H A Dpure_calc.y6 int base;
67 { $$ = $1; base = ($1==0) ? 8 : 10; }
69 { $$ = base * $1 + $2; }
H A Dquote_calc.y6 int base;
68 { $$ = $1; base = ($1==0) ? 8 : 10; }
70 { $$ = base * $1 + $2; }
H A Dquote_calc2.y6 int base;
68 { $$ = $1; base = ($1==0) ? 8 : 10; }
70 { $$ = base * $1 + $2; }
H A Dquote_calc3.y6 int base;
68 { $$ = $1; base = ($1==0) ? 8 : 10; }
70 { $$ = base * $1 + $2; }
H A Dquote_calc4.y6 int base;
68 { $$ = $1; base = ($1==0) ? 8 : 10; }
70 { $$ = base * $1 + $2; }
/freebsd-13-stable/contrib/libevent/test/
H A Dregress_main.c105 * if it wants to find its event base/socketpair in global variables (ugh),
192 struct event_base *base = NULL; local
233 base = event_init();
235 base = event_base_new();
236 if (!base)
240 if (event_base_start_iocp_(base, 0)<0) {
241 event_base_free(base);
258 data->base = base;
285 if (data->base) {
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_type_hash_itanium.cpp36 /// Type info for classes with no bases, and base class for type info for
115 /// \brief Determine whether \p Derived has a \p Base base class subobject at
131 // No base class subobjects.
134 // Look for a base class which is derived from \p Base at the right offset.
135 for (unsigned int base = 0; base != VTI->base_count; ++base) {
136 // FIXME: Curtail the recursion if this base can't possibly contain the
138 sptr OffsetHere = VTI->base_info[base].__offset_flags >>
140 if (VTI->base_info[base]
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dregress_main.c109 * if it wants to find its event base/socketpair in global variables (ugh),
196 struct event_base *base = NULL; local
237 base = event_init();
239 base = event_base_new();
240 if (!base)
244 if (event_base_start_iocp_(base, 0)<0) {
245 event_base_free(base);
262 data->base = base;
289 if (data->base) {
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dstring.c35 isc_string_touint64(char *source, char **end, int base) { argument
42 if ((base < 0) || (base == 1) || (base > 36)) {
51 if (base == 0) {
54 base = 16;
56 base = 8;
58 base = 10;
65 overflow /= base;
76 if ((o - digits) >= base) {
[all...]
/freebsd-13-stable/sys/i386/include/
H A Dmd_var.h68 void fill_based_sd(struct segment_descriptor *sdp, uint32_t base);
77 void set_fsbase(struct thread *td, uint32_t base);
78 void set_gsbase(struct thread *td, uint32_t base);
/freebsd-13-stable/usr.sbin/makefs/cd9660/
H A Dcd9660_archimedes.c63 u_int64_t base; local
65 base = 31536000ULL * 70 + 86400 * 17;
66 return (((u_int64_t)unixtime) + base)*100;

Completed in 95 milliseconds

<<11121314151617181920>>