Home
last modified time | relevance | path

Searched refs:PAGE_SIZE (Results 1 – 13 of 13) sorted by relevance

/device/amlogic/yukawa/hal/gralloc/
Dgralloc_buffer_priv.cpp55 hnd->share_attr_fd = ashmem_create_region("gralloc_shared_attr", PAGE_SIZE); in gralloc_buffer_attr_allocate()
76 hnd->attr_base = mmap(NULL, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, hnd->share_attr_fd, 0); in gralloc_buffer_attr_allocate()
86 memset(hnd->attr_base, 0xff, PAGE_SIZE); in gralloc_buffer_attr_allocate()
87 munmap(hnd->attr_base, PAGE_SIZE); in gralloc_buffer_attr_allocate()
135 munmap(hnd->attr_base, PAGE_SIZE); in gralloc_buffer_attr_free()
Dgralloc_helper.h48 return (x + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1); in round_up_to_page_size()
Dgralloc_buffer_priv.h85 hnd->attr_base = mmap(NULL, PAGE_SIZE, prot_flags, MAP_SHARED, hnd->share_attr_fd, 0); in gralloc_buffer_attr_map()
115 if (munmap(hnd->attr_base, PAGE_SIZE) == 0) in gralloc_buffer_attr_unmap()
/device/google/sunfish-kernel/sm7150/kernel-headers/linux/
Dspcom.h25 #ifndef PAGE_SIZE
26 #define PAGE_SIZE 4096 macro
30 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE - 1)
/device/google/coral-kernel/sm8150/original-kernel-headers/linux/
Dspcom.h21 #ifndef PAGE_SIZE
22 #define PAGE_SIZE 4096 macro
48 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE-1)
/device/google/coral-kernel/sm8150/kernel-headers/linux/
Dspcom.h25 #ifndef PAGE_SIZE
26 #define PAGE_SIZE 4096 macro
30 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE - 1)
/device/google/sunfish-kernel/sm7150/original-kernel-headers/linux/
Dspcom.h21 #ifndef PAGE_SIZE
22 #define PAGE_SIZE 4096 macro
48 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE-1)
/device/google/redbull-kernel/sm7250/kernel-headers/linux/
Dspcom.h13 #ifndef PAGE_SIZE
14 #define PAGE_SIZE 4096 macro
18 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE - 1)
/device/google/redbull-kernel/sm7250/original-kernel-headers/linux/
Dspcom.h14 #ifndef PAGE_SIZE
15 #define PAGE_SIZE 4096 macro
41 #define SPCOM_GET_NEXT_REQUEST_SIZE (PAGE_SIZE-1)
/device/linaro/dragonboard/shared/utils/rmtfs/
Dsharedmem.c202 #define PAGE_SIZE 4096 macro
209 char val[PAGE_SIZE]; in rmtfs_mem_open_rfsa()
/device/generic/opengl-transport/host/libs/virglrenderer/
DAVDVirglRenderer.cpp68 #ifndef PAGE_SIZE
69 #define PAGE_SIZE 0x1000 macro
72 #define MAX_CMDRESPBUF_SIZE (10 * PAGE_SIZE)
/device/generic/goldfish-opengl/
DBUILD.gn133 "PAGE_SIZE=4096",
/device/generic/goldfish-opengl/system/gralloc/
Dgralloc_old.cpp849 ashmem_size = (ashmem_size + (PAGE_SIZE-1)) & ~(PAGE_SIZE-1); in gralloc_alloc()