HomeSort by relevance Sort by last modified time
    Searched refs:PAGE_SIZE (Results 1 - 25 of 243) sorted by null

1 2 3 4 5 6 7 8 910

  /bionic/libc/bionic/
getpagesize.cpp 34 return PAGE_SIZE;
  /bionic/libc/kernel/uapi/asm-generic/
shmparam.h 21 #define SHMLBA PAGE_SIZE
  /external/kernel-headers/original/uapi/asm-generic/
shmparam.h 5 #define SHMLBA PAGE_SIZE /* attach addr a multiple of this */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
shmparam.h 4 #define SHMLBA PAGE_SIZE /* attach addr a multiple of this */
  /device/linaro/hikey/gralloc/
gralloc_helper.h 26 return (x + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-mm.h 5 #define PAGE_SIZE 4096
5lvl.c 6 #define PAGE_SIZE 4096
22 .size = 2 * PAGE_SIZE,
29 .size = 2 * PAGE_SIZE,
36 .size = 2 * PAGE_SIZE,
43 .size = 2 * PAGE_SIZE,
50 .size = 2 * PAGE_SIZE,
56 .size = 2 * PAGE_SIZE,
63 .size = 2 * PAGE_SIZE,
68 .addr = (void *)((1UL << 47) - PAGE_SIZE),
69 .size = 2 * PAGE_SIZE,
    [all...]
  /device/linaro/hikey/gralloc960/
gralloc_helper.h 28 return (x + (PAGE_SIZE-1)) & ~(PAGE_SIZE-1);
gralloc_buffer_priv.cpp 45 hnd->share_attr_fd = ashmem_create_region( "gralloc_shared_attr", PAGE_SIZE );
65 hnd->attr_base = mmap( NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, hnd->share_attr_fd, 0 );
74 memset(hnd->attr_base, 0xff, PAGE_SIZE);
75 munmap( hnd->attr_base, PAGE_SIZE );
119 munmap( hnd->attr_base, PAGE_SIZE );
  /toolchain/binutils/binutils-2.27/ld/emulparams/
coff_i860.sh 3 PAGE_SIZE=0x1000
delta68.sh 4 PAGE_SIZE=0x1000000
elf32_i860.sh 10 PAGE_SIZE=0x1000
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/aarch64/
xlat_tables_aarch64.h 14 #if !defined(PAGE_SIZE)
15 #error "PAGE_SIZE is not defined."
28 #if PAGE_SIZE == (4 * 1024)
30 #elif PAGE_SIZE == (16 * 1024) || PAGE_SIZE == (64 * 1024)
  /bionic/libc/kernel/uapi/linux/
binfmts.h 23 #define MAX_ARG_STRLEN (PAGE_SIZE * 32)
  /external/kernel-headers/original/uapi/linux/
binfmts.h 15 #define MAX_ARG_STRLEN (PAGE_SIZE * 32)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
binfmts.h 14 #define MAX_ARG_STRLEN (PAGE_SIZE * 32)
resource.h 71 #define MLOCK_LIMIT ((PAGE_SIZE > 64*1024) ? PAGE_SIZE : 64*1024)
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/aarch32/
xlat_tables_aarch32.h 14 #if !defined(PAGE_SIZE)
15 #error "PAGE_SIZE is not defined."
27 #if PAGE_SIZE != (4 * 1024)
  /bionic/libc/private/
bionic_page.h 20 // Get PAGE_SIZE and PAGE_MASK.
31 #define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE-1))
WriteProtected.h 34 char padding[PAGE_SIZE];
38 } __attribute__((aligned(PAGE_SIZE)));
45 static_assert(sizeof(T) < PAGE_SIZE,
46 "WriteProtected only supports contents up to PAGE_SIZE");
60 if (mprotect(&contents, PAGE_SIZE, PROT_READ)) {
75 if (mprotect(&contents, PAGE_SIZE, PROT_READ | PROT_WRITE) != 0) {
80 if (mprotect(&contents, PAGE_SIZE, PROT_READ) != 0) {
  /toolchain/binutils/binutils-2.27/bfd/hosts/
i386bsd.h 27 #ifdef PAGE_SIZE
28 #define NBPG PAGE_SIZE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
user.h 96 #define PAGE_SIZE (1UL << PAGE_SHIFT)
97 #define PAGE_MASK (~(PAGE_SIZE-1))
98 #define NBPG PAGE_SIZE
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
vmparam.h 92 #define PAGE_SIZE (1 << PAGE_SHIFT)
93 #define PAGE_MASK (PAGE_SIZE - 1)
98 #define VM_GATEWAY_SIZE PAGE_SIZE
111 #define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE)
  /external/libmojo/base/android/
sys_utils_unittest.cc 18 static_cast<size_t>(sysconf(_SC_PHYS_PAGES) * PAGE_SIZE);
  /external/syslinux/com32/gplinclude/disk/
swsusp.h 11 char reserved[PAGE_SIZE - 20 - sizeof(unsigned long) - sizeof(int)];

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 910