HomeSort by: relevance | last modified time | path
    Searched refs:numPages (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
ascending_page_allocator.d 52 return Ternary(buf.ptr >= data && buf.ptr < buf.ptr + numPages * pageSize);
60 auto ret = munmap(cast(void*) data, numPages * pageSize);
94 numPages = n.roundUpToMultipleOf(cast(uint) pageSize) / pageSize;
101 data = cast(typeof(data)) mmap(null, pageSize * numPages,
111 data = cast(typeof(data)) VirtualAlloc(null, pageSize * numPages,
132 auto size = numPages * pageSize + data - offset;
237 size_t numPages;
274 immutable pagedBytes = numPages * pageSize;
322 immutable pagedBytes = numPages * pageSize;
372 if (extraPages > numPages || offset - data > pageSize * (numPages - extraPages)
    [all...]
allocator_list.d 838 enum numPages = 2;
839 AllocatorList!((n) => AscendingPageAllocator(max(n, numPages * pageSize)), Mallocator) a;
848 void[] b2 = a.allocate((numPages + 1) * pageSize);
849 assert(b2.length == (numPages + 1) * pageSize);
896 enum numPages = 2;
897 AllocatorList!((n) => AscendingPageAllocator(max(n, numPages * pageSize)), NullAllocator) a;
905 void[] b2 = a.allocate((numPages + 1) * pageSize);
906 assert(b2.length == (numPages + 1) * pageSize);
962 enum numPages = 5;
963 AllocatorList!((n) => AscendingPageAllocator(max(n, numPages * pageSize)), NullAllocator) a
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_gmr.c 64 define_cmd.numPages = num_pages;
83 remap_cmd.numPages = nr;
123 define_cmd.numPages = 0;
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/device_include/
svga_reg.h 293 * (ppn==0, numPages==0)
296 * (ppn != 0, numPages != 0)
301 * (ppn != 0, numPages == 0)
334 uint32 numPages;
1997 uint32 numPages;
2044 uint32 numPages; /* number of pages to remap */
svga3d_cmd.h 2088 uint32 numPages;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/
gc.d 673 auto newsz = lpool.numPages(size);
776 auto minsz = lpool.numPages(minsize);
777 auto maxsz = lpool.numPages(maxsize);
1991 immutable npages = LargeObjectPool.numPages(size);
3865 static size_t numPages(size_t size) nothrow @nogc

Completed in 21 milliseconds