Searched refs:base (Results 626 - 650 of 1511) sorted by relevance

<<21222324252627282930>>

/freebsd-9.3-release/sys/i386/i386/
H A Dsys_machdep.c109 uint32_t base; local
193 base = sdp->sd_hibase << 24 | sdp->sd_lobase;
194 error = copyout(&base, uap->parms, sizeof(base));
197 error = copyin(uap->parms, &base, sizeof(base));
205 sd.sd_lobase = base & 0xffffff;
206 sd.sd_hibase = (base >> 24) & 0xff;
234 base = sdp->sd_hibase << 24 | sdp->sd_lobase;
235 error = copyout(&base, ua
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwdgabn.c172 lwb.base = NULL;
242 r.base = lwb.base;
244 client->sendbuf = r.base;
262 if (lwb.base != NULL)
264 lwb.base, lwb.length);
305 client->gabn.realname = (char *)(b.base) + b.used;
334 client->gabn.realname = (char *) b.base + b.used;
569 client->gabn.base = NULL;
H A Dlwdgrbn.c62 rdatas[*pos] = r.base;
211 lwb.base = NULL;
354 r.base = lwb.base;
356 client->sendbuf = r.base;
386 if (lwb.base != NULL)
387 lwres_context_freemem(cm->lwctx, lwb.base, lwb.length);
436 client->grbn.base = NULL;
/freebsd-9.3-release/lib/libc/stdio/
H A Dvfprintf.c352 int base; /* base for [diouxX] conversion */ local
647 base = 10;
800 base = 8;
811 base = 16;
848 base = 10;
860 base = 16;
889 (flags & ALT && base == 8))
890 cp = __ujtoa(ujval, cp, base,
894 (flags & ALT && base
[all...]
H A Dvfwprintf.c432 int base; /* base for [diouxX] conversion */ local
708 base = 10;
866 base = 8;
877 base = 16;
916 base = 10;
928 base = 16;
957 (flags & ALT && base == 8))
958 cp = __ujtoa(ujval, cp, base,
962 (flags & ALT && base
[all...]
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Di915_reg.h348 #define RING_TAIL(base) ((base)+0x30)
349 #define RING_HEAD(base) ((base)+0x34)
350 #define RING_START(base) ((base)+0x38)
351 #define RING_CTL(base) ((base)+0x3c)
352 #define RING_SYNC_0(base) ((base)
[all...]
/freebsd-9.3-release/sys/i386/xen/
H A Dclock.c142 #define do_div(n,base) ({ \
144 __base = (base); \
251 * Reads a consistent set of time-base values from Xen, into a shadow data
347 * time base.
556 * Initialize the time of day register, based on the time base which is, e.g.
560 domu_inittodr(time_t base) argument
571 if (base) {
572 ts.tv_sec = base;
625 * Initialize the time of day register, based on the time base which is, e.g.
629 inittodr(time_t base) argument
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dbufferevent_sock.c317 bufferevent_socket_new(struct event_base *base, evutil_socket_t fd, argument
324 if (base && event_base_get_iocp_(base))
325 return bufferevent_async_new_(base, fd, options);
331 if (bufferevent_init_common_(bufev_p, base, &bufferevent_ops_socket,
673 bufferevent_base_set(struct event_base *base, struct bufferevent *bufev) argument
681 bufev->ev_base = base;
683 res = event_base_set(base, &bufev->ev_read);
687 res = event_base_set(base, &bufev->ev_write);
/freebsd-9.3-release/contrib/gcc/
H A Dfix-header.c946 s->ptr = s->base;
987 if (SSTRING_LENGTH (&buf) == 0 || strcmp (buf.base, "ifndef") != 0)
995 protect_name = xstrdup (buf.base);
1018 else if (!strcmp (buf.base, "ifndef")
1019 || !strcmp (buf.base, "ifdef") || !strcmp (buf.base, "if"))
1023 else if (!strcmp (buf.base, "endif"))
1029 else if (!strcmp (buf.base, "else"))
1034 else if (!strcmp (buf.base, "define"))
1038 if (buf.base[
[all...]
H A Dtree-mudflap.c497 mf_build_check_statement_for (tree base, tree limit, argument
555 /* Build: __mf_base = (uintptr_t) <base address expression>. */
557 convert (mf_uintptr_type, unshare_expr (base)));
665 /* NB: we pass the overall [base..limit] range to mf_check. */
723 tree type, base, limit, addr, size, t; local
782 base = TREE_OPERAND (var, 0);
799 base = build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (var)), var);
823 addr = fold_convert (ptr_type_node, elt ? elt : base);
841 base = addr;
843 fold_build2 (PLUS_EXPR, ptr_type_node, base, siz
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddwarf2-frame.c28 #include "frame-base.h"
865 Therefore, frame base methods on this page should probably only be
1084 CORE_ADDR base;
1097 base = 0;
1100 base = bfd_get_section_vma (unit->bfd, unit->dwarf_frame_section);
1101 base += (buf - unit->dwarf_frame_buffer);
1104 base = unit->dbase;
1107 base = unit->tbase;
1115 base = 0;
1118 base
1076 CORE_ADDR base; local
[all...]
H A Dframe.c39 #include "frame-base.h"
117 /* The frame's high-level base methods, and corresponding cache.
118 The high level base methods are selected based on the frame's
120 const struct frame_base *base; member in struct:frame_info
369 (same .base, different .func, no test available). Struggle
1403 frame base, in the frame object. */
2070 if (fi->base == NULL)
2071 fi->base = frame_base_find_by_frame (fi->next);
2072 /* Sneaky: If the low-level unwind and high-level base code share a
2074 if (fi->base
2200 deprecated_update_frame_base_hack(struct frame_info *frame, CORE_ADDR base) argument
[all...]
H A Djv-exp.y544 int base = expout_ptr - last_exp_size - 3;
545 if (base < 0 || expout->elts[base+2].opcode != OP_TYPE)
547 type = expout->elts[base+1].type;
551 expout->elts[base + i] = expout->elts[base + i + 3];
695 int base = input_radix;
741 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
750 base = 16;
762 base
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/rdata/generic/
H A Dtkey_249.c272 RETERR(mem_tobuffer(target, sr.base, 12));
284 RETERR(mem_tobuffer(target, sr.base, n + 2));
297 return (mem_tobuffer(target, sr.base, n + 2));
319 return (mem_tobuffer(target, sr.base, sr.length));
468 tkey->key = mem_maybedup(mctx, sr.base, tkey->keylen);
482 tkey->other = mem_maybedup(mctx, sr.base, tkey->otherlen);
H A Dnull_10.c62 return (mem_tobuffer(target, sr.base, sr.length));
118 null->data = mem_maybedup(mctx, r.base, r.length);
H A Dunspec_103.c62 return (mem_tobuffer(target, sr.base, sr.length));
119 unspec->data = mem_maybedup(mctx, r.base, r.length);
/freebsd-9.3-release/crypto/heimdal/lib/asn1/
H A Dder_put.c49 unsigned char *base = p; local
66 *size = base - p;
81 unsigned char *base = p; local
114 *size = base - p;
349 unsigned char *base = p; local
371 *size = base - p;
/freebsd-9.3-release/sys/dev/ctau/
H A Dctddk.h442 port_t port; /* base board port, 200..3e0 */
469 ULONG idbase; /* TAPI device identifier base number */
507 void ct_cmd (port_t base, int cmd);
516 unsigned char cte_in (port_t base, unsigned char reg);
517 void cte_out (port_t base, unsigned char reg, unsigned char val);
518 unsigned char cte_ins (port_t base, unsigned char reg,
520 unsigned char cte_in2 (port_t base, unsigned char reg);
521 void cte_out2 (port_t base, unsigned char reg, unsigned char val);
/freebsd-9.3-release/tools/regression/geom_eli/
H A Dintegrity-copy.t4 base=`basename $0`
7 keyfile=`mktemp /tmp/$base.XXXXXX` || exit 1
8 sector=`mktemp /tmp/$base.XXXXXX` || exit 1
/freebsd-9.3-release/usr.bin/lex/
H A Dtblcmp.c492 base[jamstate] = jambase;
500 /* mkentry - create base/def and nxt/chk entries for transition array
507 * is the offset to be used into the base/def tables, and "deflink" is the
529 base[statenum] = JAMSTATE;
531 base[statenum] = 0;
563 * have a valid base address (i.e., non-negative). Note that
564 * negative base addresses dangerous at run-time (because indexing
577 /* Using baseaddr would result in a negative base
611 /* Ensure that the base address we eventually generate is
623 base[statenu
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Dhmac_link.c99 isc_hmacmd5_update(hmacmd5ctx, data->base, data->length);
124 if (isc_hmacmd5_verify2(hmacmd5ctx, sig->base, sig->length))
228 isc_md5_update(&md5ctx, r.base, r.length);
232 memmove(hkey->key, r.base, r.length);
377 isc_hmacsha1_update(hmacsha1ctx, data->base, data->length);
402 if (isc_hmacsha1_verify(hmacsha1ctx, sig->base, sig->length))
506 isc_sha1_update(&sha1ctx, r.base, r.length);
510 memmove(hkey->key, r.base, r.length);
655 isc_hmacsha224_update(hmacsha224ctx, data->base, data->length);
680 if (isc_hmacsha224_verify(hmacsha224ctx, sig->base, si
[all...]
H A Dkey.c43 p = source->base;
68 p = source->base;
/freebsd-9.3-release/contrib/gcc/cp/
H A Dsearch.c87 tree base; /* The base type we're looking for. */
97 base and update DATA_ (a pointer to LOOKUP_BASE_DATA_S). */
104 if (SAME_BINFO_TYPE_P (BINFO_TYPE (binfo), data->base))
117 /* If this is a non-virtual base, then we can't do
145 on the first base we found. */
154 a (possibly non-proper) base class of T.) If CONSIDER_LOCAL_P is
159 accessible_base_p (tree t, tree base, bool consider_local_p)
163 /* [class.access.base]
165 A base clas
85 tree base; /* The base type we're looking for. */ member in struct:lookup_base_data_s
157 accessible_base_p(tree t, tree base, bool consider_local_p) argument
191 lookup_base(tree t, tree base, base_access access, base_kind *kind_ptr) argument
1507 tree base; local
2547 binfo_for_vbase(tree base, tree t) argument
[all...]
/freebsd-9.3-release/sys/kern/
H A Dlink_elf.c106 caddr_t symbase; /* malloc'ed symbold base */
107 caddr_t strbase; /* malloc'ed string base */
199 elf_set_add(struct elf_set_head *list, Elf_Addr start, Elf_Addr stop, Elf_Addr base) argument
206 set->es_base = base;
227 elf_set_find(struct elf_set_head *list, Elf_Addr addr, Elf_Addr *start, Elf_Addr *base) argument
236 *base = set->es_base;
438 caddr_t ssym, esym, base; local
457 base = ssym;
459 symcnt = *(long *)base;
460 base
1530 Elf_Addr addr, start, base; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Ddataset.py226 (base, snapname) = dsname.split('@')
227 parent = Dataset(base)

Completed in 351 milliseconds

<<21222324252627282930>>