Searched refs:base (Results 976 - 1000 of 1511) sorted by relevance

<<31323334353637383940>>

/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_fb.c230 fb = &rfbdev->rfb.base;
304 drm_framebuffer_cleanup(&rfb->base);
/freebsd-9.3-release/sys/vm/
H A Dvm_page.h396 void vm_page_set_valid(vm_page_t m, int base, int size);
409 vm_page_bits_t vm_page_bits(int base, int size);
/freebsd-9.3-release/usr.bin/dc/
H A Dstack.c268 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) argument
273 print_value(f, &stack->stack[i], prefix, base);
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_decl.c514 ctf_id_t base; local
546 base = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type);
547 kind = ctf_type_kind(dtt.dtt_ctfp, base);
548 size = ctf_type_size(dtt.dtt_ctfp, base);
562 * a new integer type of the same name and attributes as the base type
586 if (ctf_type_kind(dtt.dtt_ctfp, base) != CTF_K_INTEGER ||
587 ctf_type_encoding(dtt.dtt_ctfp, base, &cte) == CTF_ERR ||
881 * If the decl is an array, we must find the base type and then call
922 * If the array base type is not defined in the target
/freebsd-9.3-release/contrib/bind9/bin/dig/
H A Dhost.c228 msg, (int)r.length, (char *)r.base);
352 (char *)r.base);
354 printf("%.*s", (int)r.length, (char *)r.base);
387 printf("%.*s", (int)r.length, (char *)r.base);
700 tr.base = isc_commandline_argument;
740 tr.base = isc_commandline_argument;
/freebsd-9.3-release/contrib/bsnmp/snmpd/
H A Dconfig.c443 input_getnum(u_int base, u_int flen) argument
457 if (base == 8 && (c == '8' || c == '9')) {
463 numval = numval * base + (c - '0');
464 } else if (base == 16 && isxdigit(c)) {
466 numval = numval * base + (c - 'a' + 10);
468 numval = numval * base + (c - 'A' + 10);
H A Dmain.c2333 if (r->base < size) {
2335 if (r1->base - (r->base + r->size) >= size)
2343 if (INT32_MAX - size + 1 < r1->base + r1->size) {
2360 r1->base = 0;
2364 r1->base = r->base + r->size;
2368 r1->base = r->base + r->size;
2371 r1->next = r1->base;
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.hist.c448 struct wordent base = { NULL, &word[0], &word[0] }; local
449 word[0].word = number, word[0].next = &base, word[0].prev = &base;
468 word[w].next = &base, word[w].prev = &word[w-1];
469 word[w-1].next = &word[w], base.prev = &word[w];
480 /* increment 4 digit base 255 number; last characters vary fastest */
493 unsigned hash = hashhist(&base);
/freebsd-9.3-release/sys/dev/acpica/
H A Dacpi_resource.c436 uint64_t base, uint64_t length);
441 uint64_t base, uint64_t length);
500 acpi_res_set_ioport(device_t dev, void *context, uint64_t base, argument
507 bus_set_resource(dev, SYS_RES_IOPORT, cp->ar_nio++, base, length);
522 acpi_res_set_memory(device_t dev, void *context, uint64_t base, argument
530 bus_set_resource(dev, SYS_RES_MEMORY, cp->ar_nmem++, base, length);
/freebsd-9.3-release/sys/dev/bxe/
H A Decore_init_ops.h144 #define IF_IS_INT_TABLE_ADDR(base, addr) \
145 if (((base) <= (addr)) && ((base) + 0x400 >= (addr)))
147 #define IF_IS_PRAM_ADDR(base, addr) \
148 if (((base) <= (addr)) && ((base) + 0x40000 >= (addr)))
/freebsd-9.3-release/sys/dev/syscons/
H A Dsyscons.c220 static void change_cursor_shape(scr_stat *scp, int flags, int base, int height);
861 ((int *)data)[1] = scp->curr_curs_attr.base;
865 ((int *)data)[1] = sc->curs_attr.base;
2726 scp->curs_attr.base = scp->curs_attr.height = 0;
2728 scp->curs_attr.base = imin(scp->curr_curs_attr.base,
2731 scp->font_size - scp->curs_attr.base);
2733 scp->curs_attr.base = 0;
2739 (*scp->rndr->set_cursor)(scp, scp->curs_attr.base, scp->curs_attr.height,
2745 change_cursor_shape(scr_stat *scp, int flags, int base, in argument
2766 sc_change_cursor_shape(scr_stat *scp, int flags, int base, int height) argument
3766 sc_load_font(scr_stat *scp, int page, int size, int width, u_char *buf, int base, int count) argument
3778 sc_save_font(scr_stat *scp, int page, int size, int width, u_char *buf, int base, int count) argument
[all...]
/freebsd-9.3-release/usr.sbin/sysinstall/
H A Dmedia.c992 mediaGenericGet(char *base, const char *file) argument
996 snprintf(buf, PATH_MAX, "%s/%s", base, file);
999 snprintf(buf, PATH_MAX, "%s/FreeBSD/%s", base, file);
1002 snprintf(buf, PATH_MAX, "%s/releases/%s", base, file);
1005 snprintf(buf, PATH_MAX, "%s/%s/%s", base, variable_get(VAR_RELNAME), file);
1008 snprintf(buf, PATH_MAX, "%s/releases/%s/%s", base, variable_get(VAR_RELNAME), file);
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Di386.c915 generic because it is not working well with PPro base chips. */
3463 /* for V1xx modes, just use the base mode */
5468 /* Skip return address and saved base pointer. */
6112 rtx base = NULL_RTX, index = NULL_RTX, disp = NULL_RTX;
6120 base = addr;
6162 if (!base)
6163 base = op;
6215 base_reg = base && GET_CODE (base) == SUBREG ? SUBREG_REG (base)
6098 rtx base = NULL_RTX, index = NULL_RTX, disp = NULL_RTX; local
6643 rtx base, index, disp; local
6913 rtx base; local
7132 rtx dest, base, off, pic, tp; local
8388 rtx base, index, disp; local
12407 rtx base; local
13886 rtx base, index, disp; local
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/libevent/
H A Dhttp.c1051 ((evcon)->base)
1315 evtimer_assign(&evcon->retry_ev, evcon->base, evhttp_connection_retry, evcon);
2250 evhttp_connection_base_bufferevent_new(struct event_base *base, struct evdns_base *dnsbase, struct bufferevent* bev, argument
2277 if (!(bev = bufferevent_socket_new(base, -1, 0))) {
2292 if (base != NULL) {
2293 evcon->base = base;
2294 if (bufferevent_get_base(bev) != base)
2295 bufferevent_base_set(base, evcon->bufev);
2326 evhttp_connection_base_new(struct event_base *base, struc argument
2339 evhttp_connection_set_base(struct evhttp_connection *evcon, struct event_base *base) argument
3489 evhttp_new(struct event_base *base) argument
[all...]
/freebsd-9.3-release/sys/boot/ficl/
H A Dwords.c199 ** a number using the VM's current base. If successful, pushes the number
210 unsigned base = pVM->base; local
254 if (digit >= base)
257 accum = accum * base + digit;
652 ltoa((c).i, pVM->pad, pVM->base);
665 ultoa(u, pVM->pad, pVM->base);
711 ** d - read a cell from the stack, format it as a string (base-10,
713 ** x - same as d, except in base-16
736 int base local
2334 static void base(FICL_VM *pVM) function
3053 FICL_UNS base = pVM->base; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/arm/
H A Darm.h822 as base register for addressing purposes. (See comments in
824 including r11, to be used as base address registers. Hence our problem.
1048 /* The class value for index registers, and the one for base regs. */
1052 /* For the Thumb the high registers cannot be used as base registers
1135 For the ARM, we wish to handle large displacements off a base
1177 /* Reload the high part into a base reg; leave the low part \
1752 /* Nonzero if X can be the base register in a reg+reg addressing mode.
1963 /* Nonzero if X can be the base register in a reg+reg addressing mode.
2301 rtx base = XEXP (X, 0); \
2304 if (GET_CODE (base) !
[all...]
/freebsd-9.3-release/sys/dev/drm2/i915/
H A Dintel_ringbuffer.c378 drm_gem_object_unreference(&obj->base);
397 drm_gem_object_unreference(&obj->base);
974 drm_gem_object_unreference(&obj->base);
1024 drm_gem_object_unreference(&obj->base);
1064 ring->map.offset = dev->agp->base + obj->gtt_offset;
1096 drm_gem_object_unreference(&obj->base);
1119 drm_gem_object_unreference(&ring->obj->base);
/freebsd-9.3-release/usr.bin/lex/
H A Dinitscan.c247 YY_BUFFER_STATE yy_scan_buffer YY_PROTO(( char *base, yy_size_t size ));
3402 YY_BUFFER_STATE yy_scan_buffer( char *base, yy_size_t size ) argument
3404 YY_BUFFER_STATE yy_scan_buffer( base, size )
3405 char *base;
3412 base[size-2] != YY_END_OF_BUFFER_CHAR ||
3413 base[size-1] != YY_END_OF_BUFFER_CHAR )
3422 b->yy_buf_pos = b->yy_ch_buf = base;
/freebsd-9.3-release/sys/amd64/linux32/
H A Dlinux32_sysvec.c137 * Linux: linux-2.6.17.8/include/asm-generic/errno-base.h
247 Elf32_Addr *base; local
257 base = (Elf32_Addr *)*stack_base;
259 pos = base + (imgp->args->argc + imgp->args->envc + 2);
280 AUXARGS_ENTRY_32(pos, AT_BASE, args->base);
294 base--;
295 suword32(base, (uint32_t)imgp->args->argc);
296 *stack_base = (register_t *)base;
868 * Calculate string base and vector table pointers.
911 * vectp also becomes our initial stack base
[all...]
/freebsd-9.3-release/contrib/bind9/lib/bind9/
H A Dcheck.c76 DE_CONST(cfg_obj_asstring(obj), r.base);
77 r.length = strlen(r.base);
82 r.base);
90 DE_CONST(cfg_obj_asstring(obj), r.base);
91 r.length = strlen(r.base);
96 r.base);
286 DE_CONST(cfg_obj_asstring(cfg_listelt_value(element)), r.base);
287 r.length = strlen(r.base);
293 r.base);
1244 DE_CONST(cfg_obj_asstring(typeobj), r.base);
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Demit-rtl.c1501 tree base;
1516 base = t;
1517 while (TREE_CODE (base) == COMPONENT_REF
1518 || TREE_CODE (base) == REALPART_EXPR
1519 || TREE_CODE (base) == IMAGPART_EXPR
1520 || TREE_CODE (base) == BIT_FIELD_REF)
1521 base = TREE_OPERAND (base, 0);
1523 if (DECL_P (base))
1525 if (CODE_CONTAINS_STRUCT (TREE_CODE (base), TS_DECL_WITH_VI
1494 tree base; local
[all...]
/freebsd-9.3-release/sys/dev/asr/
H A Dasr.c43 * Messaging base address.
328 u_long ha_Base; /* base port for each board */
1553 int next, base, span; local
1556 next = base = KVTOPHYS(v);
1557 I2O_SGE_SIMPLE_ELEMENT_setPhysicalAddress(sg, base);
1560 while ((len > 0) && (base == next)) {
1563 next = trunc_page(base) + PAGE_SIZE;
1564 size = next - base;
1571 base = KVTOPHYS(v);
1735 int next, span, base, r local
3395 int next, base, span; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/ia64/
H A Dia64.c1205 rtx base = XEXP (in, 0);
1208 switch (GET_CODE (base))
1214 (in, DImode, gen_rtx_POST_INC (Pmode, base), 0);
1216 (in, DImode, dead ? 0 : gen_rtx_POST_DEC (Pmode, base), 8);
1222 emit_insn (gen_adddi3 (base, base, GEN_INT (8)));
1224 (in, DImode, gen_rtx_POST_DEC (Pmode, base), 8);
1241 base = XEXP (base, 0);
1243 (in, DImode, gen_rtx_POST_INC (Pmode, base),
1200 rtx base = XEXP (in, 0); local
1324 rtx base = XEXP (operands[1], 0); local
2827 rtx base; local
8907 rtx base; local
[all...]
/freebsd-9.3-release/sys/dev/cxgbe/
H A Dt4_main.c1521 (mw->base + bar0) | V_BIR(0) |
1656 memwin_info(struct adapter *sc, int win, uint32_t *base, uint32_t *aperture) argument
1670 if (base != NULL)
1671 *base = mw->base;
5241 uint16_t base[CIM_NUM_IBQ + CIM_NUM_OBQ_T5]; local
5265 t4_read_cimq_cfg(sc, base, size, thres);
5279 qname[i], base[i], size[i], thres[i], G_IBQRDADDR(p[0]),
5284 base[i], size[i], G_QUERDADDR(p[0]) & 0x3fff,
5285 wr[0] - base[
5642 unsigned int base; member in struct:mem_desc
[all...]
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dzoneconf.c335 DE_CONST(str, r.base);
464 region.base = (unsigned char *)(rdata + 1);
465 memmove(region.base, &na.type, region.length);
492 region.base = (unsigned char *)(rdata + 1);
493 memmove(region.base, sregion.base, region.length);
556 region.base = (unsigned char *)(rdata + 1);
557 memmove(region.base, sregion.base, region.length);

Completed in 498 milliseconds

<<31323334353637383940>>