Home
last modified time | relevance | path

Searched refs:MapBase (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dsecondary.h39 uptr MapBase; member
69 unmap(reinterpret_cast<void *>(H->MapBase), H->MapSize, UNMAP_ALL, &Data); in unmap()
157 Entry.MapBase = H->MapBase; in store()
225 unmap(reinterpret_cast<void *>(Entry.MapBase), Entry.MapSize, UNMAP_ALL, in store()
279 (*H)->MapBase = Entry.MapBase; in retrieve()
322 unmap(reinterpret_cast<void *>(Quarantine[I].MapBase), in disableMemoryTagging()
344 void *MapBase; in empty() member
354 MapInfo[N].MapBase = reinterpret_cast<void *>(Entries[I].MapBase); in empty()
364 unmap(MapInfo[I].MapBase, MapInfo[I].MapSize, UNMAP_ALL, in empty()
371 uptr MapBase; member
[all …]
H A Dprimary32.h322 const uptr MapBase = reinterpret_cast<uptr>( in allocateRegionSlow() local
324 if (!MapBase) in allocateRegionSlow()
326 const uptr MapEnd = MapBase + MapSize; in allocateRegionSlow()
327 uptr Region = MapBase; in allocateRegionSlow()
331 RegionsStash[NumberOfStashedRegions++] = MapBase + RegionSize; in allocateRegionSlow()
335 Region = roundUpTo(MapBase, RegionSize); in allocateRegionSlow()
336 unmap(reinterpret_cast<void *>(MapBase), Region - MapBase); in allocateRegionSlow()