Lines Matching refs:uptr
34 MemMapDefault(uptr Base, uptr Capacity) : Base(Base), Capacity(Capacity) {}
37 bool mapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
38 void unmapImpl(uptr Addr, uptr Size);
39 bool remapImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
40 void setMemoryPermissionImpl(uptr Addr, uptr Size, uptr Flags);
41 void releasePagesToOSImpl(uptr From, uptr Size) {
44 void releaseAndZeroPagesToOSImpl(uptr From, uptr Size);
45 uptr getBaseImpl() { return Base; }
46 uptr getCapacityImpl() { return Capacity; }
51 uptr Base = 0;
52 uptr Capacity = 0;
53 uptr MappedBase = 0;
64 bool createImpl(uptr Addr, uptr Size, const char *Name, uptr Flags);
66 MemMapT dispatchImpl(uptr Addr, uptr Size);
67 uptr getBaseImpl() { return Base; }
68 uptr getCapacityImpl() { return Capacity; }
71 uptr Base = 0;
72 uptr Capacity = 0;