| 160 | } |
| 161 | |
| 162 | static uptr GetMmapGranularity() { |
| 163 | SYSTEM_INFO si; |
| 164 | GetSystemInfo(&si); |
| 165 | return si.dwAllocationGranularity; |
| 166 | } |
| 167 | |
| 168 | UNUSED static uptr RoundUpTo(uptr size, uptr boundary) { |
| 169 | return (size + boundary - 1) & ~(boundary - 1); |
no outgoing calls
no test coverage detected