Searched refs:va (Results 226 - 244 of 244) sorted by relevance

12345678910

/illumos-gate/usr/src/uts/common/vm/
H A Dvm_as.c1552 struct vattr va; local
1580 va.va_mask = AT_SIZE;
1581 if (VOP_GETATTR(vn_a->vp, &va, ATTR_HINT, vn_a->cred, NULL) != 0) {
1586 if (eoff >= va.va_size) {
1591 if (btopr(va.va_size) < btopr(eoff)) {
1593 size = va.va_size - (vn_a->offset & PAGEMASK);
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_kvm.c274 kmt_vtop(mdb_tgt_t *t, mdb_tgt_as_t as, uintptr_t va, physaddr_t *pap) argument
297 if (kmdb_prom_vtop(va, pap) == 0)
307 if ((fptr != NULL) && ((*fptr)(va, asp, pap) == 0))
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_xdr.c2385 vattr_t va; local
2417 pov.fres.vap = &va;
2523 nvp = makenfs3node_va(&fh, &va, dvp->v_vfsp,
H A Dnfs4_subr.c2057 vattr_t va, pva; local
2145 va = gar.n4g_va;
2149 (va.va_type != VDIR)) {
H A Dnfs4_acl.c180 ace4vals_compare(const void *va, const void *vb) argument
182 const ace4vals_t *a = va, *b = vb;
H A Dnfs4_vfsops.c2273 struct vattr va; local
2602 va.va_mask = AT_TYPE;
2603 error = nfs4getattr(rtvp, &va, tcr);
2606 rtvp->v_type = va.va_type;
/illumos-gate/usr/src/uts/sun4u/io/px/
H A Dpx_hlib.c1965 caddr_t va; local
1972 va = (caddr_t)(MMU_PTOB(mmu_p->dvma_base_pg + obp_tsb_bias +
1974 vmem_xfree(dvma_map, va, MMU_PAGE_SIZE);
/illumos-gate/usr/src/uts/sfmmu/vm/
H A Dhat_sfmmu.h153 * created ISM segment is created out of a new address space at base va
156 #define ISM_ALIGN(shift) (1 << shift) /* base va aligned to <n>M */
157 #define ISM_ALIGNED(shift, va) (((uintptr_t)va & (ISM_ALIGN(shift) - 1)) == 0)
187 uintptr_t imap_seg; /* base va + sz of ISM segment */
207 caddr_t iment_base_va; /* hat's va base for this ism seg */
1102 caddr_t addr; /* va */
1736 uint32_t tag_va_hi:10; /* va[63:54] */
1737 uint32_t tag_va_lo; /* va[53:22] */
1966 /* sectsb va
[all...]
/illumos-gate/usr/src/uts/common/io/
H A Dbscv.c6390 va_list va; local
6398 va_start(va, fmt);
6399 (void) vsnprintf(p, sizeof (buf) - (p - buf), fmt, va);
6400 va_end(va);
/illumos-gate/usr/src/cmd/fs.d/ufs/fsdb/
H A Dfsdb.c5136 log_read_log(u_offset_t *addr, caddr_t va, int nb, uint32_t *chk) argument
5156 if (va != NULL) {
5157 memcpy(va, bp + blkoff(fs, *addr), xfer);
5158 va += xfer;
/illumos-gate/usr/src/uts/common/io/bge/
H A Dbge_main2.c2107 caddr_t va; local
2125 dma_flags, DDI_DMA_DONTWAIT, NULL, &va, &dma_p->alength,
2133 dma_p->mem_va = va;
2135 va, dma_p->alength, dma_flags, DDI_DMA_DONTWAIT, NULL,
2781 BGE_DEBUG(("RXB CHNK %d INIT: va=%p alen=%d off=%d pa=%llx psz=%d",
2793 BGE_DEBUG(("RXB SLCE %d STND: va=%p alen=%d off=%d pa=%llx psz=%d (nslots=%d slotlen=%d)",
2809 BGE_DEBUG(("RXB SLCE %d JUMB: va=%p alen=%d off=%d pa=%llx psz=%d (nslots=%d slotlen=%d)",
2826 BGE_DEBUG(("RXB SLCE %d MINI: va=%p alen=%d off=%d pa=%llx psz=%d (nslots=%d slotlen=%d)",
2837 BGE_DEBUG(("RXB CHNK %d DONE: va=%p alen=%d off=%d pa=%llx psz=%d",
2850 BGE_DEBUG(("TXB CHNK %d INIT: va
[all...]
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dus3_common.c6199 cpu_check_ce(int flag, uint64_t pa, caddr_t va, uint_t psz) argument
6253 if (flag == SCRUBBER_CEEN_CHECK && va) {
6272 va = (caddr_t)(va + (P2ALIGN(page_offset, 64)));
6274 cpu_check_block((caddr_t)(P2ALIGN((uint64_t)va, 64)),
H A Dopl_olympus.c2280 cpu_check_ce(int flag, uint64_t pa, caddr_t va, uint_t psz) argument
H A Dus3_common_asm.s2872 cpu_check_block(caddr_t va, uint_t psz)
H A Dspitfire.c4084 cpu_check_ce(int flag, uint64_t pa, caddr_t va, uint_t bpp) argument
/illumos-gate/usr/src/uts/common/io/ib/clients/ibd/
H A Dibd.c3798 uint8_t *va; local
3800 va = (uint8_t *)(uintptr_t)sgl_p[i].ds_va;
3801 ASSERT(va >= bktp->bkt_mem && va < lso_mem_end);
3807 ndx = (va - bktp->bkt_mem) / IBD_LSO_BUFSZ;
3811 ASSERT(lbufp->lb_buf == va);
/illumos-gate/usr/src/uts/intel/ia32/os/
H A Darchdep.c1047 sync_data_memory(caddr_t va, size_t len) argument
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs.h1920 vattr_t va; member in struct:entryplus3_va_fh
/illumos-gate/usr/src/uts/sfmmu/ml/
H A Dsfmmu_asm.s157 * tsbep = TSBE va (ro)
203 * tsbep = TSBE va (ro)
230 * tsbep = pointer to the TSBE to load as va (ro)
233 * we need to mask off the context and leave only the va (clobbered)
283 * tsbep = pointer to the TSBE to load as va (ro)
287 * we need to mask off the context and leave only the va (clobbered)
359 * tsbep = pointer to the TSBE to load as va (ro)
360 * tteva = pointer to the TTE to load as va (ro)
362 * to match va of MMU tag target register only (ro)
404 * tsbep = pointer to TSBE as va (r
[all...]

Completed in 387 milliseconds

12345678910