HomeSort by: relevance | last modified time | path
    Searched defs:NBPG (Results 1 - 18 of 18) sorted by relevancy

  /src/sys/arch/usermode/include/
param.h 22 #define NBPG (1 << PGSHIFT)
23 #define PGOFSET (NBPG - 1)
  /src/sys/arch/sh3/include/
param.h 54 #define NBPG (1 << PGSHIFT)
55 #define PGOFSET (NBPG - 1)
61 #define USPACE (UPAGES * NBPG) /* total size of u-area */
71 #define MSGBUFSIZE NBPG /* default message buffer size */
76 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/arm/include/arm32/
param.h 51 #define PGSHIFT 12 /* LOG2(NBPG) */
53 #define NBPG (1 << PGSHIFT) /* bytes/page */
54 #define PGOFSET (NBPG - 1) /* byte offset into page */
55 #define NPTEPG (NBPG / sizeof(pt_entry_t)) /* PTEs per Page */
57 #define SSIZE 1 /* initial stack size/NBPG */
58 #define SINCR 1 /* increment of stack/NBPG */
64 #define USPACE (UPAGES * NBPG) /* total size of u-area */
  /src/sys/arch/powerpc/include/
param.h 74 #define NBPG (1 << PGSHIFT) /* Page size */
75 #define PGOFSET (NBPG - 1)
77 #define BLKDEV_IOSIZE NBPG
79 #define USPACE (UPAGES * NBPG)
82 #define MSGBUFSIZE (2*NBPG) /* default message buffer size */
91 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/or1k/include/
param.h 63 #define NBPG (1 << PGSHIFT)
64 #define PGOFSET (NBPG - 1)
68 * MCLBYTES must be no larger than NBPG (the software page size), and
69 * NBPG % MCLBYTES must be zero.
  /src/sys/arch/alpha/include/
param.h 66 #define NBPG (1 << ALPHA_PGSHIFT) /* bytes/page */
67 #define PGOFSET (NBPG-1) /* byte off. into pg */
68 #define PGSHIFT ALPHA_PGSHIFT /* LOG2(NBPG) */
73 #define SSIZE 1 /* initial stack size/NBPG */
74 #define SINCR 1 /* increment of stack/NBPG */
77 #define USPACE (UPAGES * NBPG) /* total size of u-area */
80 #define MSGBUFSIZE NBPG /* default message buffer size */
90 * MCLBYTES must be no larger than NBPG (the software page size), and,
115 #define alpha_round_page(x) ((((unsigned long)(x)) + NBPG - 1) & ~(NBPG-1)
    [all...]
  /src/sys/arch/m68k/include/
param.h 63 #define NBPG (1 << PGSHIFT) /* bytes/page */
64 #define PGOFSET (NBPG-1) /* byte offset into page */
68 #define SSIZE 1 /* initial stack size/NBPG */
69 #define SINCR 1 /* increment of stack/NBPG */
71 #define USPACE (UPAGES * NBPG)
74 #define MSGBUFSIZE NBPG /* default message buffer size */
79 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/riscv/include/
param.h 74 #define NBPG (1 << PGSHIFT)
75 #define PGOFSET (NBPG - 1)
79 #define USPACE_ALIGN NBPG
83 * MCLBYTES must be no larger than NBPG (the software page size), and
84 * NBPG % MCLBYTES must be zero.
  /src/sys/arch/hppa/include/
param.h 45 #define PGSHIFT 12 /* LOG2(NBPG) */
46 #define NBPG (1 << PGSHIFT) /* bytes/page */
47 #define PGOFSET (NBPG - 1) /* byte offset into page */
56 #define SSIZE (1) /* initial stack size/NBPG */
57 #define SINCR (1) /* increment of stack/NBPG */
64 #define USPACE (UPAGES * NBPG) /* pages for user struct and kstack */
67 #define MSGBUFSIZE (4 * NBPG) /* default message buffer size */
  /src/sys/arch/sparc/include/
param.h 69 * See also the definitions of NBPG, PGOFSET and PGSHIFT below.
72 extern int nbpg, pgofset, pgshift;
94 * MCLBYTES must be no larger than NBPG (the software page size), and,
147 # define NBPG 4096
148 # define PGOFSET (NBPG-1)
151 # define NBPG 8192
152 # define PGOFSET (NBPG-1)
155 # define NBPG nbpg
  /src/sys/arch/aarch64/include/
param.h 114 #define NBPG (1 << PGSHIFT)
115 #define PGOFSET (NBPG - 1)
119 * MCLBYTES must be no larger than NBPG (the software page size), and
120 * NBPG % MCLBYTES must be zero.
  /src/sys/arch/hp300/stand/common/
srt0.S 60 NBPG = 4096
290 addl #((2*NBPG)-1),%d0
291 andl #-(2*NBPG),%d0
  /src/sys/arch/vax/include/
param.h 53 #define PGSHIFT 12 /* LOG2(NBPG) */
54 #define NBPG (1 << PGSHIFT) /* (1 << PGSHIFT) bytes/page */
55 #define PGOFSET (NBPG - 1) /* byte offset into page */
65 #define USPACE (NBPG*UPAGES)
69 #define MSGBUFSIZE NBPG /* default message buffer size */
82 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/ia64/include/
param.h 65 #define USPACE (UPAGES * NBPG) /* total size of u-area */
68 #define MSGBUFSIZE NBPG /* default message buffer size */
82 #define PGSHIFT 14 /* LOG2(NBPG) */
83 #define NBPG (1 << PGSHIFT) /* bytes/page */
84 #define PGOFSET (NBPG-1) /* byte offset into page */
85 #define NPTEPG (NBPG/(sizeof (pt_entry_t)))
88 * MCLBYTES must be no larger than NBPG (the software page size), and,
119 #define ia64_round_page(x) ((((unsigned long)(x)) + NBPG - 1) & ~(NBPG - 1))
120 #define ia64_trunc_page(x) ((unsigned long)(x) & ~(NBPG - 1)
    [all...]
  /src/sys/arch/i386/include/
param.h 76 #define PGSHIFT 12 /* LOG2(NBPG) */
77 #define NBPG (1 << PGSHIFT) /* bytes/page */
78 #define PGOFSET (NBPG-1) /* byte offset into page */
79 #define NPTEPG (NBPG/(sizeof (pt_entry_t)))
103 #define SSIZE 1 /* initial stack size/NBPG */
104 #define SINCR 1 /* increment of stack/NBPG */
113 #define USPACE (UPAGES * NBPG) /* total size of u-area */
117 #define MSGBUFSIZE (16*NBPG) /* default message buffer size */
122 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/sparc64/include/
param.h 100 * See also the definitions of NBPG, PGOFSET and PGSHIFT below.
103 extern int nbpg, pgofset, pgshift;
169 #define _MAXNBPG 8192 /* fixed VAs, independent of actual NBPG */
185 * MCLBYTES must be no larger than NBPG (the software page size), and,
200 #define MSGBUFSIZE (4 * NBPG)
265 * NBPG, PGOFSET and PGSHIFT are defined as variables which are initialized
278 #define PGSHIFT 13 /* log2(NBPG) */
279 #define NBPG (1<<PGSHIFT) /* bytes/page */
280 #define PGOFSET (NBPG-1) /* byte offset into page */
  /src/sys/arch/amd64/include/
param.h 39 #define PGSHIFT 12 /* LOG2(NBPG) */
40 #define NBPG (1 << PGSHIFT) /* bytes/page */
41 #define PGOFSET (NBPG-1) /* byte offset into page */
42 #define NPTEPG (NBPG/(sizeof (pt_entry_t)))
69 #define SSIZE 1 /* initial stack size/NBPG */
70 #define SINCR 1 /* increment of stack/NBPG */
97 #define USPACE (UPAGES * NBPG) /* total size of u-area */
100 #define MSGBUFSIZE (16*NBPG) /* default message buffer size */
105 * MCLBYTES must be no larger than NBPG (the software page size), and,
  /src/sys/arch/mips/include/
mips_param.h 99 #define SSIZE 1 /* initial stack size/NBPG */
100 #define SINCR 1 /* increment of stack/NBPG */
107 #define MSGBUFSIZE NBPG /* default message buffer size */
118 #define PGSHIFT 14 /* LOG2(NBPG) */
121 #define PGSHIFT 13 /* LOG2(NBPG) */
123 #define PGSHIFT 12 /* LOG2(NBPG) */
125 #define NBPG (1 << PGSHIFT) /* bytes/page */
126 #define PGOFSET (NBPG - 1) /* byte offset into page */
172 #define mips_round_page(x) ((((uintptr_t)(x)) + NBPG - 1) & ~(NBPG-1)
    [all...]

Completed in 188 milliseconds