| 221 | } |
| 222 | |
| 223 | int MemoryManager::toPTE(const int virtualAddress) |
| 224 | { |
| 225 | return (0xffc00000 + ((virtualAddress & 0xffc00000) >> 10) + (((virtualAddress & 0x003ff000) >> 12) * 4)); |
| 226 | } |
| 227 | |
| 228 | void MemoryManager::releasePages(enum AddressPoolType type, const int virtualAddress, const int count) |
| 229 | { |
nothing calls this directly
no outgoing calls
no test coverage detected