Home
last modified time | relevance | path

Searched refs:ubase (Results 1 – 4 of 4) sorted by relevance

/freebsd-10-stable/sys/boot/arm/ixp425/boot2/
Dixp425_board.c58 static u_int8_t *ubase; variable
159 while ((uart_getreg(ubase, REG_LSR) & LSR_RXRDY) == 0 && --limit) in getc()
162 if ((uart_getreg(ubase, REG_LSR) & LSR_RXRDY) == LSR_RXRDY) in getc()
163 c = uart_getreg(ubase, REG_DATA); in getc()
175 while ((uart_getreg(ubase, REG_LSR) & LSR_THRE) == 0 && --limit) in putchar()
177 uart_setreg(ubase, REG_DATA, ch); in putchar()
180 while ((uart_getreg(ubase, REG_LSR) & LSR_TEMT) == 0 && --limit) in putchar()
707 ubase = (u_int8_t *)(IXP425_UART0_HWBASE); in avila_init()
731 ubase = (u_int8_t *)(IXP425_UART0_HWBASE); in cambria_init()
762 ubase = (u_int8_t *)(IXP425_UART1_HWBASE); in pronghorn_init()
/freebsd-10-stable/sys/dev/ksyms/
Dksyms.c451 vm_size_t ubase; in ksyms_read() local
475 ubase = sc->sc_uaddr + off; in ksyms_read()
479 if (copyin((void *)ubase, buf, sz) != 0) in ksyms_read()
487 ubase += sz; in ksyms_read()
/freebsd-10-stable/contrib/gcc/
Dtree-ssa-loop-ivopts.c3035 tree ubase = use->iv->base; in get_computation_aff() local
3039 tree utype = TREE_TYPE (ubase), ctype = TREE_TYPE (cbase); in get_computation_aff()
3069 ubase = fold_convert (uutype, ubase); in get_computation_aff()
3121 common_type = determine_common_wider_type (&ubase, &cbase); in get_computation_aff()
3147 delta = fold_build2 (MINUS_EXPR, common_type, ubase, cbase); in get_computation_aff()
3154 delta = fold_build2 (PLUS_EXPR, common_type, ubase, cbase); in get_computation_aff()
3162 delta = fold_build2 (MINUS_EXPR, common_type, ubase, delta); in get_computation_aff()
3181 tree_to_aff_combination (ubase, common_type, aff); in get_computation_aff()
3850 tree ubase = use->iv->base, ustep = use->iv->step; in get_computation_cost_at() local
3852 tree utype = TREE_TYPE (ubase), ctype; in get_computation_cost_at()
[all …]
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
Ddtrace.c13652 dtrace_dof_relocate(dof_hdr_t *dof, dof_sec_t *sec, uint64_t ubase) argument
13701 *(uint64_t *)taddr += ubase;
13722 dtrace_enabling_t **enabp, uint64_t ubase, int noprobes) argument
13884 if (dtrace_dof_relocate(dof, sec, ubase) != 0)