Searched defs:ubase (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dfindstack_subr.c42 #define KTOU(p) ((p) - kbase + ubase)
43 #define UTOK(p) ((p) - ubase + kbase)
66 crawl(uintptr_t frame, uintptr_t kbase, uintptr_t ktop, uintptr_t ubase, argument
74 fs_dprintf(("<0> frame = %p, kbase = %p, ktop = %p, ubase = %p\n",
75 frame, kbase, ktop, ubase));
146 uintptr_t ubase, utop; local
218 ubase = (uintptr_t)mdb_alloc(stksz, UM_SLEEP);
219 utop = ubase + stksz;
220 if (mdb_vread((caddr_t)ubase, stksz, kbase) != stksz) {
221 mdb_free((void *)ubase, stks
[all...]
H A Dkmem.c1352 char *valid, *ubase; local
1442 ubase = kmw->kmw_ubase;
1444 if (mdb_vread(ubase, chunks * chunksize,
1458 ubase = NULL;
1502 * allocated for the buffer at ubase.)
1513 bc = *((kmem_bufctl_t *)((uintptr_t)ubase + offs));
/illumos-gate/usr/src/boot/sys/boot/arm/ixp425/boot2/
H A Dixp425_board.c58 static u_int8_t *ubase; variable
159 while ((uart_getreg(ubase, REG_LSR) & LSR_RXRDY) == 0 && --limit)
162 if ((uart_getreg(ubase, REG_LSR) & LSR_RXRDY) == LSR_RXRDY)
163 c = uart_getreg(ubase, REG_DATA);
175 while ((uart_getreg(ubase, REG_LSR) & LSR_THRE) == 0 && --limit)
177 uart_setreg(ubase, REG_DATA, ch);
180 while ((uart_getreg(ubase, REG_LSR) & LSR_TEMT) == 0 && --limit)
707 ubase = (u_int8_t *)(IXP425_UART0_HWBASE);
731 ubase = (u_int8_t *)(IXP425_UART0_HWBASE);
762 ubase
[all...]
/illumos-gate/usr/src/uts/sun4v/os/
H A Dmpo.c1680 * Update mblocks after a memory DR deletion of the range (ubase, uend).
1687 mblock_update_del(mpo_config_t *mc_new, mpo_config_t *mc_old, pfn_t ubase, argument
1695 MPO_DEBUG("mblock_update_del(0x%lx, 0x%lx)\n", ubase, uend);
1727 if (base == ubase && end == uend) {
1733 } else if (base < ubase && end > uend) {
1736 mblock[i].size = ptob(ubase - base);
1737 mblock[i].end_pfn = ubase - 1;
1743 } else if (base == ubase) {
1747 mblock[i].size -= ptob(uend - ubase + 1);
1756 mblock[i].size -= ptob(uend - ubase
1887 mnode_update(mpo_config_t *mc, pfn_t ubase, pfn_t uend, update_t utype) argument
[all...]
/illumos-gate/usr/src/uts/common/fs/doorfs/
H A Ddoor_sys.c1089 uintptr_t ubase = (uintptr_t)uaddr; local
1098 end = ubase + count;
1100 if (P2ALIGN(ubase, pgsize) == start)
1101 start = ubase;
1103 offset = start - ubase;
/illumos-gate/usr/src/cmd/mdb/common/modules/libumem/
H A Dumem.c1308 char *valid, *ubase; local
1391 ubase = umw->umw_ubase;
1393 if (mdb_vread(ubase, chunks * chunksize,
1407 ubase = NULL;
1451 * allocated for the buffer at ubase.)
1462 bc = *((umem_bufctl_t *)((uintptr_t)ubase + offs));
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c13122 * specified DOF. At present, this amounts to simply adding 'ubase' to the
13127 dtrace_dof_relocate(dof_hdr_t *dof, dof_sec_t *sec, uint64_t ubase) argument
13176 *(uint64_t *)taddr += ubase;
13197 dtrace_enabling_t **enabp, uint64_t ubase, int noprobes)
13359 if (dtrace_dof_relocate(dof, sec, ubase) != 0)
13196 dtrace_dof_slurp(dof_hdr_t *dof, dtrace_vstate_t *vstate, cred_t *cr, dtrace_enabling_t **enabp, uint64_t ubase, int noprobes) argument

Completed in 733 milliseconds