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

  /src/sys/arch/m68k/include/
vmparam.h 64 * (MIN_PAGE_SIZE != MAX_PAGE_SIZE). For now we define these macros
70 #define MIN_PAGE_SIZE (1 << MIN_PAGE_SHIFT)
  /src/sys/uvm/
uvm_param.h 93 * then provide default values for MIN_PAGE_SIZE and MAX_PAGE_SIZE.
96 #if !defined(MIN_PAGE_SIZE)
97 #define MIN_PAGE_SIZE PAGE_SIZE
98 #endif /* ! MIN_PAGE_SIZE */
107 * PAGE_SIZE is not a constant; MIN_PAGE_SIZE and MAX_PAGE_SIZE must
111 #if !defined(MIN_PAGE_SIZE)
112 #error MIN_PAGE_SIZE not defined
122 * MIN_PAGE_SIZE and MAX_PAGE_SIZE must be constants.
125 #if MIN_PAGE_SIZE == 0
126 #error Invalid MIN_PAGE_SIZE definitio
    [all...]
uvm_bio.c 314 struct vm_page *pgs[howmany(ubc_winsize, MIN_PAGE_SIZE)];
744 struct vm_page *pgs[howmany(ubc_winsize, MIN_PAGE_SIZE)];
809 struct vm_page *pgs[howmany(ubc_winsize, MIN_PAGE_SIZE)];
986 struct vm_page *pgs[howmany(ubc_winsize, MIN_PAGE_SIZE)];
1053 struct vm_page *pgs[howmany(ubc_winsize, MIN_PAGE_SIZE)];
uvm_device.c 171 CTASSERT(MIN_PAGE_SIZE >= 2);
uvm_pager.c 507 struct vm_page *pgs[howmany(MAXPHYS, MIN_PAGE_SIZE)];
uvm_pdaemon.c 480 struct vm_page *swc_pages[howmany(MAXPHYS, MIN_PAGE_SIZE)];
  /src/sys/arch/sparc/include/
vmparam.h 68 #define MIN_PAGE_SIZE (1 << MIN_PAGE_SHIFT)
  /src/sys/arch/powerpc/include/
vmparam.h 39 #define MIN_PAGE_SIZE (1 << MIN_PAGE_SHIFT)
  /src/sys/arch/mips/include/
vmparam.h 73 #define MIN_PAGE_SIZE (1 << MIN_PAGE_SHIFT)
  /src/sys/sys/
mbuf.h 89 #include <uvm/uvm_param.h> /* for MIN_PAGE_SIZE */
249 #ifdef MIN_PAGE_SIZE
250 #define M_EXT_MAXPAGES ((65536 / MIN_PAGE_SIZE) + 1)
  /src/sys/ufs/lfs/
lfs_pages.c 245 struct vm_page *pgs[MAXBSIZE / MIN_PAGE_SIZE], *pg;
  /src/sys/arch/arm/sunxi/
sun6i_dma.c 227 #define DESC_NUM ((MAXPHYS / MIN_PAGE_SIZE + 1) + 1)
  /src/sys/miscfs/genfs/
genfs_io.c 875 struct vm_page *pgs[MAXPHYS / MIN_PAGE_SIZE];
  /src/sys/kern/
vfs_bio.c 2018 int counts[MAXBSIZE / MIN_PAGE_SIZE + 1];

Completed in 43 milliseconds