HomeSort by: relevance | last modified time | path
    Searched defs:curtbl (Results 1 - 1 of 1) sorted by relevancy

  /src/sys/arch/sparc/sparc/
pmap.c 7907 int *curtbl; local in function:VA2PAsw
7928 curtbl = (int *)(((curpte & ~0x3) << 4) | KERNBASE); /* correct for krn */
7929 *pte = curpte = curtbl[VA_VREG(addr)];
7931 printf("L1 table at 0x%x.\nGot L1 pte 0x%x\n",curtbl,curpte);
7942 curtbl = (int *)(((curpte & ~0x3) << 4) | KERNBASE); /* correct for krn */
7943 *pte = curpte = curtbl[VA_VSEG(addr)];
7945 printf("L2 table at 0x%x.\nGot L2 pte 0x%x\n",curtbl,curpte);
7956 curtbl = (int *)(((curpte & ~0x3) << 4) | KERNBASE); /* correct for krn */
7957 *pte = curpte = curtbl[VA_VPG(addr)];
7959 printf("L3 table at %p.\nGot L3 pte 0x%x\n", curtbl, curpte)
    [all...]

Completed in 16 milliseconds