Searched refs:PAGE_SIZE (Results 1 - 25 of 34) sorted by relevance

12

/seL4-refos-master/libs/libmuslc/src/legacy/
H A Dgetpagesize.c7 return PAGE_SIZE;
H A Dvalloc.c7 return memalign(PAGE_SIZE, size);
/seL4-refos-master/libs/libmuslc/src/thread/
H A Dpthread_getattr_np.c15 size_t l = PAGE_SIZE;
16 p += -(uintptr_t)p & PAGE_SIZE-1;
18 while (mremap(p-l-PAGE_SIZE, PAGE_SIZE, 2*PAGE_SIZE, 0)==MAP_FAILED && errno==ENOMEM)
19 l += PAGE_SIZE;
/seL4-refos-master/libs/libmuslc/src/mman/
H A Dmprotect.c8 start = (size_t)addr & -PAGE_SIZE;
9 end = (size_t)((char *)addr + len + PAGE_SIZE-1) & -PAGE_SIZE;
/seL4-refos-master/libs/libmuslc/arch/aarch64/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/aarch64_sel4/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/arm/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/arm_sel4/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/i386/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
H A Duser.h40 #define PAGE_MASK (~(PAGE_SIZE-1))
41 #define NBPG PAGE_SIZE
/seL4-refos-master/libs/libmuslc/arch/i386_sel4/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
H A Duser.h40 #define PAGE_MASK (~(PAGE_SIZE-1))
41 #define NBPG PAGE_SIZE
/seL4-refos-master/libs/libmuslc/arch/or1k/bits/
H A Dlimits.h3 #define PAGE_SIZE 8192 macro
/seL4-refos-master/libs/libmuslc/arch/s390x/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
H A Duser.h57 #define PAGE_MASK (~(PAGE_SIZE-1))
58 #define NBPG PAGE_SIZE
/seL4-refos-master/libs/libmuslc/arch/sh/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/x32/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
H A Duser.h37 #define PAGE_MASK (~(PAGE_SIZE-1))
38 #define NBPG PAGE_SIZE
/seL4-refos-master/libs/libmuslc/arch/x86_64/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/x86_64_sel4/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/riscv/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/libs/libmuslc/arch/riscv_sel4/bits/
H A Dlimits.h3 #define PAGE_SIZE 4096 macro
/seL4-refos-master/projects/refos/impl/libs/libdatastruct/include/data_struct/
H A Dcmacros.h29 #ifdef PAGE_SIZE
30 #define _PAGE_ALIGN(x) ((x) & ~(PAGE_SIZE - 1))
/seL4-refos-master/libs/libdatastruct/include/data_struct/
H A Dcmacros.h29 #ifdef PAGE_SIZE
30 #define _PAGE_ALIGN(x) ((x) & ~(PAGE_SIZE - 1))
/seL4-refos-master/libs/libmuslc/src/malloc/
H A Dexpand_heap.c46 if (n > SIZE_MAX/2 - PAGE_SIZE) {
50 n += -n & PAGE_SIZE-1;
54 brk += -brk & PAGE_SIZE-1;
64 size_t min = (size_t)PAGE_SIZE << mmap_step/2;

Completed in 80 milliseconds

12