Home | History | Annotate | Download | only in include

Lines Matching defs:NBPG

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))
173 #define mips_trunc_page(x) ((uintptr_t)(x) & ~(NBPG-1))
186 * MCLBYTES must be no larger than NBPG (the software page size), and,