Searched refs:EFI_ULONG_T (Results 1 – 4 of 4) sorted by relevance
67 #define ALIGN(p) (((EFI_ULONG_T)(p) + ALIGNBYTES) & ~ALIGNBYTES)139 #define x86_round_pdr(x) ((((EFI_ULONG_T)(x)) + PDOFSET) & ~PDOFSET)140 #define x86_trunc_pdr(x) ((EFI_ULONG_T)(x) & ~PDOFSET)141 #define x86_btod(x) ((EFI_ULONG_T)(x) >> PDSHIFT)142 #define x86_dtob(x) ((EFI_ULONG_T)(x) << PDSHIFT)143 #define x86_round_page(x) ((((EFI_ULONG_T)(x)) + PGOFSET) & ~PGOFSET)144 #define x86_trunc_page(x) ((EFI_ULONG_T)(x) & ~PGOFSET)145 #define x86_btop(x) ((EFI_ULONG_T)(x) >> PGSHIFT)146 #define x86_ptob(x) ((EFI_ULONG_T)(x) << PGSHIFT)
137 #define ia64_round_page(x) ((((EFI_ULONG_T)(x)) + NBPG - 1) & ~(NBPG - 1))138 #define ia64_trunc_page(x) ((EFI_ULONG_T)(x) & ~(NBPG - 1))140 #define ia64_btop(x) ((EFI_ULONG_T)(x) >> PGSHIFT)141 #define ia64_ptob(x) ((EFI_ULONG_T)(x) << PGSHIFT)
94 #define x86_round_page(x) ((((EFI_ULONG_T)(x)) + PGOFSET) & ~PGOFSET)95 #define x86_trunc_page(x) ((EFI_ULONG_T)(x) & ~PGOFSET)96 #define x86_btop(x) ((EFI_ULONG_T)(x) >> PGSHIFT)97 #define x86_ptob(x) ((EFI_ULONG_T)(x) << PGSHIFT)
357 typedef UINTN EFI_ULONG_T; typedef