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

  /src/sys/arch/usermode/include/
param.h 23 #define PGOFSET (NBPG - 1)
  /src/sys/arch/sh3/include/
param.h 55 #define PGOFSET (NBPG - 1)
  /src/sys/arch/arm/include/arm32/
param.h 54 #define PGOFSET (NBPG - 1) /* byte offset into page */
  /src/sys/arch/powerpc/include/
param.h 75 #define PGOFSET (NBPG - 1)
  /src/sys/arch/or1k/include/
param.h 64 #define PGOFSET (NBPG - 1)
  /src/sys/arch/alpha/include/
param.h 67 #define PGOFSET (NBPG-1) /* byte off. into pg */
  /src/sys/arch/m68k/include/
param.h 64 #define PGOFSET (NBPG-1) /* byte offset into page */
96 #define m68k_round_page(x) ((((vaddr_t)(x)) + PGOFSET) & ~PGOFSET)
97 #define m68k_trunc_page(x) ((vaddr_t)(x) & ~PGOFSET)
98 #define m68k_page_offset(x) ((vaddr_t)(x) & PGOFSET)
  /src/sys/arch/riscv/include/
param.h 75 #define PGOFSET (NBPG - 1)
  /src/sys/arch/hppa/include/
param.h 47 #define PGOFSET (NBPG - 1) /* byte offset into page */
  /src/sys/arch/sparc/include/
param.h 69 * See also the definitions of NBPG, PGOFSET and PGSHIFT below.
72 extern int nbpg, pgofset, pgshift;
148 # define PGOFSET (NBPG-1)
152 # define PGOFSET (NBPG-1)
156 # define PGOFSET pgofset
  /src/sys/arch/aarch64/include/
param.h 115 #define PGOFSET (NBPG - 1)
169 #define aarch64_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
  /src/sys/arch/vax/include/
param.h 55 #define PGOFSET (NBPG - 1) /* byte offset into page */
  /src/sys/arch/ia64/include/
param.h 84 #define PGOFSET (NBPG-1) /* byte offset into page */
  /src/sys/arch/i386/include/
param.h 78 #define PGOFSET (NBPG-1) /* byte offset into page */
162 #define x86_round_page(x) ((((paddr_t)(x)) + PGOFSET) & ~PGOFSET)
163 #define x86_trunc_page(x) ((paddr_t)(x) & ~PGOFSET)
  /src/sys/arch/sparc64/include/
param.h 100 * See also the definitions of NBPG, PGOFSET and PGSHIFT below.
103 extern int nbpg, pgofset, pgshift;
265 * NBPG, PGOFSET and PGSHIFT are defined as variables which are initialized
280 #define PGOFSET (NBPG-1) /* byte offset into page */
  /src/sys/arch/amd64/include/
param.h 41 #define PGOFSET (NBPG-1) /* byte offset into page */
145 #define x86_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
146 #define x86_trunc_page(x) ((unsigned long)(x) & ~PGOFSET)
  /src/sys/arch/mips/include/
mips_param.h 126 #define PGOFSET (NBPG - 1) /* byte offset into page */

Completed in 21 milliseconds