HomeSort by: relevance | last modified time | path
    Searched refs:PG_TYPE (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/arch/sun2/include/
pte.h 129 #define PG_TYPE 0x00C00000
  /src/sys/arch/sun3/include/
pte3.h 45 #define PG_TYPE 0x0C000000
  /src/sys/arch/sparc/sparc/
memreg.c 192 if ((pte & PG_V) != 0 && (pte & PG_TYPE) == PG_OBMEM) {
199 if ((pte & PG_V) != 0 && (pte & PG_TYPE) == PG_OBMEM) {
pmap.c 1750 if ((pte & (PG_V | PG_TYPE)) == (PG_V | PG_OBMEM)) {
4736 if ((pte & PG_TYPE) == PG_OBMEM) {
4900 if ((pte & PG_TYPE) == PG_OBMEM) {
5227 if ((pte & (PG_W|PG_TYPE)) ==
5311 if ((pte & (PG_U|PG_NC|PG_TYPE)) == (PG_U|PG_OBMEM))
5672 if ((pte & (PG_PFNUM|PG_TYPE)) ==
5673 (pteproto & (PG_PFNUM|PG_TYPE))) {
5680 if ((pte & PG_TYPE) == PG_OBMEM) {
5849 if ((pte & (PG_PFNUM|PG_TYPE)) ==
5850 (pteproto & (PG_PFNUM|PG_TYPE))) {
    [all...]
  /src/sys/arch/sparc/include/
pte.h 257 #define PG_TYPE 0x0c000000 /* both type bits */
276 #define PG_TNC_SHIFT 26 /* shift to get PG_TYPE + PG_NC */
292 enum pgtype { pg_obmem, pg_obio, pg_vme16, pg_vme32 } pg_type:2; member in struct:pte
  /src/sys/arch/sun3/sun3/
obio.c 310 if ((pte & (PG_VALID | PG_TYPE)) ==
pmap.c 157 #define MEM_BITS (PG_TYPE | PA_PGNUM(0xF8000000))
1663 if ((pte & (PG_VALID|PG_TYPE)) != PG_VALID) {
1675 if ((pte & (PG_VALID|PG_TYPE)) != PG_VALID) {
2119 if ((old_pte & (PG_TYPE|PG_FRAME)) == (new_pte & (PG_TYPE|PG_FRAME))) {
2294 if ((old_pte & (PG_TYPE|PG_FRAME)) == (new_pte & (PG_TYPE|PG_FRAME))) {
2891 if (pte & PG_TYPE) {
  /src/sys/arch/sparc/dev/
obio.c 312 if ((pte & PG_V) == 0 || (pte & PG_TYPE) != pgtype ||
  /src/sys/arch/sun2/sun2/
pmap.c 149 #define IS_MAIN_MEM(pte) (((pte) & PG_TYPE) == 0 && PG_PA(pte) < 0x00700000)
283 #define PV_TYPE (PG_TYPE >> PV_SHIFT)
1645 if ((pte & (PG_VALID|PG_TYPE)) != PG_VALID) {
1657 if ((pte & (PG_VALID|PG_TYPE)) != PG_VALID) {
2089 if ((old_pte & (PG_TYPE|PG_FRAME)) == (new_pte & (PG_TYPE|PG_FRAME))) {
2265 if ((old_pte & (PG_TYPE|PG_FRAME)) == (new_pte & (PG_TYPE|PG_FRAME))) {
2913 if (pte & PG_TYPE) {
machdep.c 1128 if ((pte & (PG_VALID | PG_TYPE)) ==

Completed in 25 milliseconds