Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dascending_page_allocator.d285 void* newReadWriteLimit = min(data + pagedBytes, in allocate() local
287 if (newReadWriteLimit != readWriteLimit) in allocate()
289 assert(newReadWriteLimit > readWriteLimit); in allocate()
290 if (!extendMemoryProtection(readWriteLimit, newReadWriteLimit - readWriteLimit)) in allocate()
293 readWriteLimit = newReadWriteLimit; in allocate()
378 void* newReadWriteLimit = min(data + numPages * pageSize, in expand() local
380 if (newReadWriteLimit > readWriteLimit) in expand()
382 if (!extendMemoryProtection(readWriteLimit, newReadWriteLimit - readWriteLimit)) in expand()
385 readWriteLimit = newReadWriteLimit; in expand()
574 void* newReadWriteLimit = min(cast(void*) data + pagedBytes, in allocateImpl() local
[all …]