Searched refs:base (Results 226 - 250 of 1868) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/dev/wtap/plugins/
H A Dvisibility.h46 struct wtap_plugin base; member in struct:visibility_plugin
/freebsd-11-stable/tools/tools/ath/athstats/
H A Dathstats.h41 struct bsdstat base; member in struct:athstatfoo
/freebsd-11-stable/tests/sys/geom/class/mirror/
H A Dconf.sh6 base=`basename $0`
/freebsd-11-stable/tests/sys/geom/class/uzip/
H A Dconf.sh5 base=`basename $0`
/freebsd-11-stable/sys/arm/xscale/pxa/
H A Duart_bus_pxa.c72 bus_space_handle_t base; local
75 base = (bus_space_handle_t)pxa_get_base(dev);
89 if (base != PXA2X0_FFUART_BASE)
93 if ((bus_space_read_4(obio_tag, base,
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dsunddi.h43 int ddi_strtol(const char *str, char **nptr, int base, long *result);
44 int ddi_strtoul(const char *str, char **nptr, int base, unsigned long *result);
45 int ddi_strtoll(const char *str, char **nptr, int base, long long *result);
46 int ddi_strtoull(const char *str, char **nptr, int base,
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64clat.h41 struct nat64_config base; member in struct:nat64clat_cfg
H A Dnat64stl.c96 nat64_check_private_ip4(&cfg->base, ip->ip_src.s_addr) != 0 ||
97 nat64_check_private_ip4(&cfg->base, ip->ip_dst.s_addr) != 0)
104 saddr = cfg->base.plat_prefix;
105 nat64_embed_ip4(&saddr, cfg->base.plat_plen, ip->ip_src.s_addr);
106 if (cfg->base.flags & NAT64_LOG) {
111 return (nat64_do_handle_ip4(m, &saddr, &daddr, 0, &cfg->base,
124 if (nat64_check_private_ip4(&cfg->base, aaddr) != 0) {
125 NAT64STAT_INC(&cfg->base.stats, dropped);
135 if (memcmp(&ip6->ip6_dst, &cfg->base.plat_prefix,
136 cfg->base
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dinterface.h25 typedef void (*iterate_callback)(uintptr_t base, size_t size, void *arg);
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A Dbench_http.c88 struct event_base *base; local
151 base = event_base_new_with_config(cfg);
152 if (!base) {
157 http = evhttp_new(base);
177 use_iocp? "IOCP" : event_base_get_method(base));
184 event_base_loopexit(base, &tv);
187 event_base_dispatch(base);
H A Dregress_thread.c102 struct event_base *base = arg; local
111 evtimer_assign(&ev, base, wake_all_timeout, &cw);
134 event_base_loopexit(base, NULL);
150 struct event_base *base = arg; local
155 event_base_loopexit(base, &tv);
174 struct event_base *base = data->base; local
182 tt_assert(base);
183 if (evthread_make_base_notifiable(base)<0) {
184 tt_abort_msg("Couldn't make base notifiabl
301 struct event_base *base = data->base; local
456 struct event_base *base = NULL; local
[all...]
H A Dregress_dns.c197 struct event_base *base = event_base_new(); local
198 struct evdns_base *dns = evdns_base_new(base, 1/* init name servers */);
201 tt_assert(base);
207 dns, &in, 0, dns_gethostbyname_cb, base);
210 event_base_dispatch(base);
217 if (base)
218 event_base_free(base);
376 struct evdns_base *base=NULL; local
381 base = evdns_base_new(NULL, 0);
407 evdns_base_nameserver_sockaddr_add(base, (struc
534 struct event_base *base = data->base; local
618 struct event_base *base = data->base; local
693 struct event_base *base = data->base; local
792 struct event_base *base = data->base; local
868 struct event_base *base = data->base; local
933 struct event_base *base = data->base, *inactive_base; local
1688 struct event_base *base; member in struct:gaic_request_status
1730 struct event_base *base = status->base; local
1747 gaic_launch(struct event_base *base, struct evdns_base *dns_base) argument
1796 struct event_base *base; member in struct:testleak_env_t
1951 struct event_base *base; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c54 append_uint(struct archive_string *as, uintmax_t d, unsigned base) argument
57 if (d >= base)
58 append_uint(as, d/base, base);
59 archive_strappend_char(as, digits[d % base]);
63 append_int(struct archive_string *as, intmax_t d, unsigned base) argument
72 append_uint(as, ud, base);
179 /* Format it in the correct base. */
/freebsd-11-stable/stand/ficl/
H A Dprefix.c117 static void tempBase(FICL_VM *pVM, int base) argument
119 int oldbase = pVM->base;
122 pVM->base = base;
129 pVM->base = oldbase;
135 int base = stackPopINT(pVM->pStack); local
136 tempBase(pVM, base);
/freebsd-11-stable/contrib/gcc/
H A Dscan.c31 int cur_pos = str->ptr - str->base;
32 int cur_size = str->limit - str->base;
38 str->base = xrealloc (str->base, new_size);
39 str->ptr = str->base + cur_size;
40 str->limit = str->base + new_size;
51 s = src->base;
60 s->ptr = s->base;
166 s->ptr = s->base;
181 source_lineno = atoi (s->base)
[all...]
/freebsd-11-stable/usr.bin/m4/
H A Dtokenizer.l86 long base;
92 base = strtol(yytext+2, &next, 0);
93 if (base > 36 || next == NULL) {
106 if (d >= base) {
110 l = base * l + d;
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Dbuffer.h61 * a == base of buffer.
79 * base is a valid pointer to length bytes of memory
141 #define isc_buffer_base(b) ((void *)(b)->base) /*a*/
143 ((void *)((unsigned char *)(b)->base + (b)->current)) /*b*/
145 ((void *)((unsigned char *)(b)->base + (b)->active)) /*c*/
147 ((void *)((unsigned char *)(b)->base + (b)->used)) /*d*/
170 void *base; member in struct:isc_buffer
172 /*! The following integers are byte offsets from 'base'. */
225 isc__buffer_init(isc_buffer_t *b, const void *base, unsigned int length);
227 * \brief Make 'b' refer to the 'length'-byte region starting at base
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/
H A Devport.c141 evport_init(struct event_base *base) argument
161 evsig_init_(base);
256 evport_dispatch(struct event_base *base, struct timeval *tv) argument
259 struct evport_data *epdp = base->evbase;
294 fdi = evmap_io_get_fdinfo_(&base->io, fd);
304 EVBASE_RELEASE_LOCK(base, th_base_lock);
309 EVBASE_ACQUIRE_LOCK(base, th_base_lock);
329 /*EVUTIL_ASSERT(evmap_io_get_fdinfo_(&base->io, fd) == fdi);*/
356 evmap_io_active_(base, fd, res);
379 evport_add(struct event_base *base, in argument
396 evport_del(struct event_base *base, int fd, short old, short events, void *p) argument
435 evport_dealloc(struct event_base *base) argument
[all...]
H A Dkqueue.c116 kq_init(struct event_base *base) argument
162 base->evsigsel = &kqsigops;
254 kq_dispatch(struct event_base *base, struct timeval *tv) argument
256 struct kqop *kqop = base->evbase;
267 /* Build "changes" from "base->changes" */
269 n_changes = kq_build_changes_list(&base->changelist, kqop);
273 event_changelist_remove_all_(&base->changelist, base);
299 EVBASE_RELEASE_LOCK(base, th_base_lock);
304 EVBASE_ACQUIRE_LOCK(base, th_base_loc
431 kq_dealloc(struct event_base *base) argument
440 kq_sig_add(struct event_base *base, int nsignal, short old, short events, void *p) argument
473 kq_sig_del(struct event_base *base, int nsignal, short old, short events, void *p) argument
508 event_kq_add_notify_event_(struct event_base *base) argument
539 event_kq_notify_base_(struct event_base *base) argument
[all...]
/freebsd-11-stable/contrib/ntp/sntp/libevent/include/event2/
H A Drpc.h51 * base with:
53 * struct evrpc_base *base = evrpc_init(http);
57 * EVRPC_REGISTER(base, SendCommand, Request, Reply, FunctionCB, arg);
89 (*(msg)->base->member##_assign)((msg), (value))
99 (*(msg)->base->member##_assign)((msg), (value), (len))
109 (*(msg)->base->member##_get)((msg), (pvalue))
120 (*(msg)->base->member##_get)((msg), (pvalue), (plen))
128 (*(msg)->base->member##_add)((msg), (value))
133 (*(msg)->base->member##_add)(msg)
138 (*(msg)->base
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_connectors.c268 if (conflict->encoder_ids[i] == encoder->base.id) {
401 radeon_property_change_mode(&radeon_encoder->base);
415 radeon_property_change_mode(&radeon_encoder->base);
429 radeon_property_change_mode(&radeon_encoder->base);
443 radeon_property_change_mode(&radeon_encoder->base);
468 radeon_property_change_mode(&radeon_encoder->base);
504 radeon_property_change_mode(&radeon_encoder->base);
636 radeon_connector->edid = drm_get_edid(&radeon_connector->base,
693 radeon_property_change_mode(&radeon_encoder->base);
759 radeon_connector->edid = drm_get_edid(&radeon_connector->base, radeon_connecto
[all...]
/freebsd-11-stable/sys/amd64/vmm/intel/
H A Dvmcs.c128 vmcs_seg_desc_encoding(int seg, uint32_t *base, uint32_t *lim, uint32_t *acc) argument
133 *base = VMCS_GUEST_ES_BASE;
138 *base = VMCS_GUEST_CS_BASE;
143 *base = VMCS_GUEST_SS_BASE;
148 *base = VMCS_GUEST_DS_BASE;
153 *base = VMCS_GUEST_FS_BASE;
158 *base = VMCS_GUEST_GS_BASE;
163 *base = VMCS_GUEST_TR_BASE;
168 *base = VMCS_GUEST_LDTR_BASE;
173 *base
252 uint32_t base, limit, access; local
280 uint32_t base, limit, access; local
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_gem_stolen.c50 u32 base; local
53 * is unreliable, so on those compute the base by subtracting the
65 base = 0;
71 pci_read_config_dword(dev->dev, 0xB0, &base);
72 base &= ~4095; /* lower bits used for locking register */
75 pci_read_config_dword(dev->dev, 0xA4, &base);
81 base = val >> 3 << 27;
82 base -= dev_priv->mm.gtt->stolen_size;
85 base = max_low_pfn_mapped << PAGE_SHIFT;
89 return base;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp30 return {static_cast<char *>(SegBlocks[Seg].base()),
35 return reinterpret_cast<JITTargetAddress>(SegBlocks[Seg].base());
43 void *SlabStart = SegBlocks.begin()->second.base();
46 SlabStart = std::min(SlabStart, KV.second.base());
47 SlabEnd = std::max(SlabEnd, (char *)(KV.second.base()) +
67 sys::Memory::InvalidateInstructionCache(Block.base(),
116 sys::MemoryBlock SegMem(SlabRemaining.base(), SegmentSize);
117 SlabRemaining = sys::MemoryBlock((char *)SlabRemaining.base() + SegmentSize,
121 memset(static_cast<char *>(SegMem.base()) + Seg.getContentSize(), 0,
/freebsd-11-stable/tools/tools/locale/tools/
H A Dfinalize7 # this script will copy base ones that others symlink to, and rearrange
25 base=$(dirname ${self})
26 old=${base}/../${1}.draft
27 new=${base}/../${1}
108 > ${base}/../etc/final-maps/map.UTF-8
111 > ${base}/../etc/final-maps/map.eucCN
114 > ${base}/../etc/final-maps/map.GB2312
126 /usr/local/bin/perl ${base}/convert_map.pl \
127 ${base}/../etc/charmaps/${map}.TXT ${encoding} \
129 > ${base}/
[all...]

Completed in 416 milliseconds

1234567891011>>