Home
last modified time | relevance | path

Searched refs:ustart (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/cmd/fs.d/ufs/fsck/
H A Dpass5.c464 int astart, aend, ustart, uend; in check_maps() local
468 astart = ustart = aend = uend = -1; in check_maps()
500 if (ustart == -1) { in check_maps()
501 ustart = uend = n; in check_maps()
508 size = uend - ustart + 1; in check_maps()
511 ustart = uend = n; in check_maps()
515 ustart += skip; in check_maps()
525 name, ustart); in check_maps()
529 name, ustart, in check_maps()
530 ustart + size - 1); in check_maps()
[all …]
/titanic_50/usr/src/cmd/mdb/common/modules/genunix/
H A Dthread.c725 caddr_t ustart; /* userland copy of kernel stack, aligned start */ in stackinfo() local
903 ustart = ustack = (caddr_t)mdb_alloc(usize + 8, UM_SLEEP); in stackinfo()
904 if ((((uintptr_t)ustart) & 0x7) != 0) { in stackinfo()
905 ustart = (caddr_t)((((uintptr_t)ustart) & (~0x7)) + 8); in stackinfo()
907 uend = ustart + usize; in stackinfo()
910 if (mdb_vread(ustart, usize, (uintptr_t)start) != usize) { in stackinfo()
929 ptr = (uint64_t *)((void *)ustart); in stackinfo()
933 ustart, (caddr_t)ptr); in stackinfo()
942 while (ptr >= (uint64_t *)((void *)ustart)) { in stackinfo()
944 percent = stk_compute_percent(ustart, in stackinfo()
/titanic_50/usr/src/uts/i86pc/os/
H A Dmicrocode.c815 uint8_t *ustart; in ucode_load_intel() local
830 ustart = ucode_zalloc(cp->cpu_id, usize); in ucode_load_intel()
831 ASSERT(ustart); in ucode_load_intel()
838 (void) memcpy(ustart, ucodefp->uf_header, UCODE_HEADER_SIZE_INTEL); in ucode_load_intel()
839 (void) memcpy(&ustart[UCODE_HEADER_SIZE_INTEL], ucodefp->uf_body, in ucode_load_intel()
842 (void) memcpy(&ustart[ext_offset], in ucode_load_intel()
845 uus.ucodep = ustart; in ucode_load_intel()