Searched refs:ap (Results 1 – 2 of 2) sorted by relevance
2453 uint32_t ap = 0; in MMU_APSection() local2456 if ((priv == NO_ACCESS) && (user == NO_ACCESS)) { ap = 0x0; } in MMU_APSection()2457 else if ((priv == RW) && (user == NO_ACCESS)) { ap = 0x1; } in MMU_APSection()2458 else if ((priv == RW) && (user == READ)) { ap = 0x2; } in MMU_APSection()2459 else if ((priv == RW) && (user == RW)) { ap = 0x3; } in MMU_APSection()2460 else if ((priv == READ) && (user == NO_ACCESS)) { ap = 0x5; } in MMU_APSection()2461 else if ((priv == READ) && (user == READ)) { ap = 0x7; } in MMU_APSection()2465 if ((priv == RW) && (user == NO_ACCESS)) { ap = 0x1; } in MMU_APSection()2466 else if ((priv == RW) && (user == RW)) { ap = 0x3; } in MMU_APSection()2467 else if ((priv == READ) && (user == NO_ACCESS)) { ap = 0x5; } in MMU_APSection()[all …]
608 uint32_t ap : 1; ///< Access Point member