| 253 | } |
| 254 | |
| 255 | int MemoryManager::toPTE(const int virtualAddress) |
| 256 | { |
| 257 | return (0xffc00000 + ((virtualAddress & 0xffc00000) >> 10) + (((virtualAddress & 0x003ff000) >> 12) * 4)); |
| 258 | } |
| 259 | |
| 260 | void MemoryManager::releasePages(enum AddressPoolType type, const int virtualAddress, const int count) |
| 261 | { |
nothing calls this directly
no outgoing calls
no test coverage detected