Searched refs:base (Results 126 - 150 of 1766) sorted by relevance

1234567891011>>

/freebsd-13-stable/tools/tools/ath/athaggrstats/
H A Dathaggrstats.h41 struct bsdstat base; member in struct:athaggrstatfoo
/freebsd-13-stable/tools/tools/mwl/mwlstats/
H A Dmwlstats.h41 struct bsdstat base; member in struct:mwlstatfoo
/freebsd-13-stable/tests/sys/geom/class/raid3/
H A Dconf.sh6 base=`basename $0`
/freebsd-13-stable/tests/sys/geom/class/shsec/
H A Dconf.sh6 base=`basename $0`
/freebsd-13-stable/contrib/apr-util/buckets/
H A Dapr_buckets_pool.c37 p->heap.base = apr_bucket_alloc(p->heap.alloc_len, p->list);
38 memcpy(p->heap.base, p->base, p->heap.alloc_len);
39 p->base = NULL;
49 const char *base = p->base; local
57 base = p->heap.base;
59 *str = base + b->start;
103 /* XXX: why is this? buf is const, p->base i
[all...]
/freebsd-13-stable/bin/pkill/tests/
H A Dpgrep-_s_test.sh4 base=`basename $0`
/freebsd-13-stable/sys/dev/dpaa/
H A Dqman.h60 #define QMAN_CE_PA(base) (base)
61 #define QMAN_CI_PA(base) ((base) + 0x100000)
63 #define QMAN_PORTAL_CE_PA(base, n) \
64 (QMAN_CE_PA(base) + ((n) * QMAN_PORTAL_CE_SIZE))
65 #define QMAN_PORTAL_CI_PA(base, n) \
66 (QMAN_CI_PA(base) + ((n) * QMAN_PORTAL_CI_SIZE))
212 * Get base FQID of the FQR.
/freebsd-13-stable/stand/libsa/
H A Dsbrk.c42 setheap(void *base, void *top) argument
45 heapbase = (void *)(((uintptr_t)base + MALLOCALIGN_MASK) &
/freebsd-13-stable/sys/netinet/
H A Dsctp_crc32.c92 uint32_t base = 0xffffffff; local
103 base = calculate_crc32c(base,
109 base = calculate_crc32c(base,
114 base = sctp_finalize_crc32c(base);
115 return (base);
/freebsd-13-stable/contrib/llvm-project/libcxx/src/
H A Dstring.cpp67 as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) argument
73 V r = f(p, &ptr, base);
87 as_integer(const string& func, const S& s, size_t* idx, int base);
93 as_integer(const string& func, const string& s, size_t* idx, int base )
96 long r = as_integer_helper<long>( func, s, idx, base, strtol );
105 as_integer(const string& func, const string& s, size_t* idx, int base )
107 return as_integer_helper<long>( func, s, idx, base, strtol );
113 as_integer( const string& func, const string& s, size_t* idx, int base )
115 return as_integer_helper<unsigned long>( func, s, idx, base, strtoul );
121 as_integer( const string& func, const string& s, size_t* idx, int base )
256 stoi(const string& str, size_t* idx, int base) argument
262 stoi(const wstring& str, size_t* idx, int base) argument
268 stol(const string& str, size_t* idx, int base) argument
274 stol(const wstring& str, size_t* idx, int base) argument
280 stoul(const string& str, size_t* idx, int base) argument
286 stoul(const wstring& str, size_t* idx, int base) argument
292 stoll(const string& str, size_t* idx, int base) argument
298 stoll(const wstring& str, size_t* idx, int base) argument
304 stoull(const string& str, size_t* idx, int base) argument
310 stoull(const wstring& str, size_t* idx, int base) argument
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Dlsearch.c22 void *lsearch(const void *key, void *base, size_t *nelp, size_t width, argument
26 return (lwork(key, base, nelp, width, compar, 1));
29 void *lfind(const void *key, const void *base, size_t *nelp, size_t width, argument
33 return (lwork(key, base, nelp, width, compar, 0));
37 lwork(const void *key, const void *base, size_t *nelp, size_t width, argument
42 ep = __DECONST(uint8_t *, base);
/freebsd-13-stable/contrib/unbound/compat/
H A Dinet_aton.c94 int base, n; local
108 val = 0; base = 10;
112 base = 16, c = *++cp;
114 base = 8;
118 val = (val * base) + (c - '0');
120 } else if (base == 16 && isascii((unsigned char)c) && isxdigit((unsigned char)c)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A Damxintrin.h69 /// Load tile rows from memory specifieid by "base" address and "stride" into
79 /// \param base
80 /// A pointer to base address.
83 #define _tile_loadd(dst, base, stride) \
84 __builtin_ia32_tileloadd64((dst), ((const void *)(base)), (__SIZE_TYPE__)(stride))
86 /// Load tile rows from memory specifieid by "base" address and "stride" into
98 /// \param base
99 /// A pointer to base address.
102 #define _tile_stream_loadd(dst, base, stride) \
103 __builtin_ia32_tileloaddt164((dst), ((const void *)(base)), (__SIZE_TYPE_
[all...]
/freebsd-13-stable/contrib/ldns/compat/
H A Dinet_aton.c94 int base, n; local
108 val = 0; base = 10;
112 base = 16, c = *++cp;
114 base = 8;
118 val = (val * base) + (c - '0');
120 } else if (base == 16 && isascii((int) c) && isxdigit((int) c)) {
/freebsd-13-stable/contrib/libevent/test/
H A Dtest-closed.c74 struct event_base *base; local
85 base = event_base_new_with_config(cfg);
87 if (!base) {
102 ev = event_new(base, pair[1], EV_CLOSED | EV_TIMEOUT, closed_cb, event_self_cbarg());
104 event_base_dispatch(base);
107 event_base_free(base);
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dlcompat.c24 int base; local
38 base = 10;
41 base = 8;
44 base = 16;
60 if (digits >= base) {
63 value = (value * base) + digits;
/freebsd-13-stable/sys/dev/mlx5/mlx5_core/
H A Dfs_core.h72 struct fs_base base; member in struct:mlx5_flow_rule
80 struct fs_base base; member in struct:fs_fte
96 struct fs_base base; member in struct:mlx5_flow_table
118 struct fs_base base; member in struct:fs_prio
131 struct fs_base base; member in struct:mlx5_flow_namespace
150 struct fs_base base; member in struct:mlx5_flow_group
174 #define fs_get_obj(v, _base) {v = container_of((_base), typeof(*v), base); }
175 #define fs_get_parent(v, child) {v = (child)->base.parent ? \
176 container_of((child)->base.parent, \
177 typeof(*v), base)
[all...]
/freebsd-13-stable/contrib/ntp/sntp/libevent/test/
H A Dtest-closed.c81 struct event_base *base; local
92 base = event_base_new_with_config(cfg);
94 if (!base) {
109 ev = event_new(base, pair[1], EV_CLOSED | EV_TIMEOUT, closed_cb, event_self_cbarg());
111 event_base_dispatch(base);
114 event_base_free(base);
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dparseint.c33 isc_parse_uint32(isc_uint32_t *uip, const char *string, int base) { argument
39 n = strtoul(string, &e, base);
49 isc_parse_uint16(isc_uint16_t *uip, const char *string, int base) { argument
52 result = isc_parse_uint32(&val, string, base);
62 isc_parse_uint8(isc_uint8_t *uip, const char *string, int base) { argument
65 result = isc_parse_uint32(&val, string, base);
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dinet_aton.c91 int base, n; local
105 val = 0; base = 10;
109 base = 16, c = *++cp;
111 base = 8;
115 val = (val * base) + (c - '0');
117 } else if (base == 16 && isascii(c) && isxdigit(c)) {
/freebsd-13-stable/usr.sbin/bhyve/
H A Dkernemu_dev.c60 .base = DEFAULT_APIC_BASE,
68 .base = VIOAPIC_BASE,
75 .base = VHPET_BASE,
89 (unsigned)lapic_mmio.base);
93 (unsigned)ioapic_mmio.base);
97 (unsigned)hpet_mmio.base);
/freebsd-13-stable/crypto/openssh/regress/
H A Dforwarding.sh10 base=33
18 a=$base$j$i
44 -$d ${base}01:127.0.0.1:$PORT \
45 -$d ${base}02:127.0.0.1:$PORT \
46 -$d ${base}03:127.0.0.1:$PORT \
47 -$d ${base}04:127.0.0.1:$PORT \
54 -$d ${base}01:127.0.0.1:$PORT \
55 -$d ${base}02:127.0.0.1:$PORT \
56 -$d ${base}03:127.0.0.1:$PORT \
57 -$d ${base}0
[all...]
/freebsd-13-stable/sys/contrib/ncsw/etc/
H A Dmm.c54 * rom "base" address. Each busy block has a name that
58 * base - base address of the busy block
66 static t_BusyBlock * CreateBusyBlock(uint64_t base, uint64_t size, char *name) argument
78 p_BusyBlock->base = base;
79 p_BusyBlock->end = base + size;
96 * from "base" address.
99 * base - base addres
106 CreateNewBlock(uint64_t base, uint64_t size) argument
139 CreateFreeBlock(uint64_t base, uint64_t size) argument
175 AddFree(t_MM *p_MM, uint64_t base, uint64_t end) argument
310 uint64_t alignBase, base, end; local
444 CutBusy(t_MM *p_MM, uint64_t base, uint64_t end) argument
596 MM_Init(t_Handle *h_MM, uint64_t base, uint64_t size) argument
782 MM_GetForce(t_Handle h_MM, uint64_t base, uint64_t size, char* name) argument
928 MM_Put(t_Handle h_MM, uint64_t base) argument
980 MM_PutForce(t_Handle h_MM, uint64_t base, uint64_t size) argument
1011 MM_Add(t_Handle h_MM, uint64_t base, uint64_t size) argument
[all...]
/freebsd-13-stable/crypto/heimdal/lib/com_err/
H A Derror.c54 if (code >= p->table->base && code < p->table->base + p->table->n_msgs)
55 return p->table->msgs[code - p->table->base];
64 if (code >= p->table->base && code < p->table->base + p->table->n_msgs) {
65 const char *msg = p->table->msgs[code - p->table->base];
68 snprintf(domain, sizeof(domain), "heim_com_err%d", p->table->base);
86 long base)
100 et->table->base = base;
83 initialize_error_table_r(struct et_list **list, const char **messages, int num_errors, long base) argument
[all...]
/freebsd-13-stable/lib/libc/db/btree/
H A Dbt_search.c69 indx_t base, idx, lim; local
80 for (base = 0, lim = NEXTINDEX(h); lim; lim >>= 1) {
81 t->bt_cur.index = idx = base + (lim >> 1);
90 base = idx + 1;
105 if (base == 0 &&
109 if (base == NEXTINDEX(h) &&
115 t->bt_cur.index = base;
126 idx = base ? base - 1 : base;
[all...]

Completed in 230 milliseconds

1234567891011>>