Lines Matching defs:NBPG
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))
116 #define alpha_trunc_page(x) ((unsigned long)(x) & ~(NBPG-1))