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/or1k/include/
param.h 64 #define PGOFSET (NBPG - 1)
  /src/sys/arch/powerpc/include/
param.h 75 #define PGOFSET (NBPG - 1)
  /src/sys/arch/riscv/include/
param.h 75 #define PGOFSET (NBPG - 1)
  /src/sys/arch/alpha/include/
param.h 67 #define PGOFSET (NBPG-1) /* byte off. into pg */
  /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;
147 # define PGOFSET (NBPG-1)
151 # define PGOFSET (NBPG-1)
155 # define PGOFSET pgofset
  /src/sys/arch/m68k/include/
param.h 80 #define PGOFSET (NBPG-1) /* byte offset into page */
109 #define m68k_round_page(x) ((((vaddr_t)(x)) + PGOFSET) & ~PGOFSET)
110 #define m68k_trunc_page(x) ((vaddr_t)(x) & ~PGOFSET)
111 #define m68k_page_offset(x) ((vaddr_t)(x) & PGOFSET)
  /src/sys/arch/ia64/include/
param.h 84 #define PGOFSET (NBPG-1) /* byte offset into page */
  /src/sys/arch/vax/include/
param.h 55 #define PGOFSET (NBPG - 1) /* byte offset into page */
  /src/sys/arch/aarch64/include/
param.h 112 #define PGOFSET (NBPG - 1)
166 #define aarch64_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
  /src/sys/arch/i386/include/
param.h 78 #define PGOFSET (NBPG-1) /* byte offset into page */
158 #define x86_round_page(x) ((((paddr_t)(x)) + PGOFSET) & ~PGOFSET)
159 #define x86_trunc_page(x) ((paddr_t)(x) & ~PGOFSET)
  /src/sys/arch/amd64/include/
param.h 41 #define PGOFSET (NBPG-1) /* byte offset into page */
141 #define x86_round_page(x) ((((unsigned long)(x)) + PGOFSET) & ~PGOFSET)
142 #define x86_trunc_page(x) ((unsigned long)(x) & ~PGOFSET)
  /src/sys/arch/mips/include/
mips_param.h 123 #define PGOFSET (NBPG - 1) /* byte offset into page */
  /src/sys/arch/sparc64/include/
param.h 100 * See also the definitions of NBPG, PGOFSET and PGSHIFT below.
103 extern int nbpg, pgofset, pgshift;
261 * NBPG, PGOFSET and PGSHIFT are defined as variables which are initialized
276 #define PGOFSET (NBPG-1) /* byte offset into page */

Completed in 24 milliseconds