Searched defs:align (Results 1 - 25 of 79) sorted by relevance

1234

/hardware/qcom/display/msm8996/sdm/libs/hwc2/
H A Dhwc_buffer_allocator.h42 inline Type ALIGN(Type x, Type align) { argument
43 return (x + align - 1) & ~(align - 1);
/hardware/qcom/display/msm8998/sdm/libs/hwc2/
H A Dhwc_buffer_allocator.h42 inline Type ALIGN(Type x, Type align) { argument
43 return (x + align - 1) & ~(align - 1);
/hardware/qcom/display/msm8909/sdm/libs/hwc2/
H A Dhwc_buffer_allocator.h42 inline Type ALIGN(Type x, Type align) { argument
43 return (x + align - 1) & ~(align - 1);
/hardware/qcom/display/msm8909w_3100/sdm/libs/hwc2/
H A Dhwc_buffer_allocator.h42 inline Type ALIGN(Type x, Type align) { argument
43 return (x + align - 1) & ~(align - 1);
/hardware/qcom/display/msm8996/libgralloc1/
H A Dgr_utils.h48 inline Type1 ALIGN(Type1 x, Type2 align) { argument
49 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
H A Dgr_ion_alloc.h51 unsigned int align = 1; member in struct:gralloc1::AllocData
/hardware/qcom/display/msm8998/libgralloc1/
H A Dgr_utils.h48 inline Type1 ALIGN(Type1 x, Type2 align) { argument
49 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
/hardware/qcom/display/msm8084/libgralloc/
H A Dmemalloc.h48 size_t align; member in struct:gralloc::alloc_data
H A Dgr.h41 inline Type ALIGN(Type x, Type align) { argument
42 return (x + align-1) & ~(align-1);
/hardware/qcom/display/msm8226/libgralloc/
H A Dmemalloc.h48 unsigned int align; member in struct:gralloc::alloc_data
H A Dgr.h41 inline Type ALIGN(Type x, Type align) { argument
42 return (x + align-1) & ~(align-1);
/hardware/qcom/display/msm8909/libgralloc/
H A Dmemalloc.h48 unsigned int align; member in struct:gralloc::alloc_data
/hardware/qcom/display/msm8909w_3100/libgralloc/
H A Dmemalloc.h48 unsigned int align; member in struct:gralloc::alloc_data
/hardware/qcom/display/msm8960/libgralloc/
H A Dgr.h41 inline size_t ALIGN(size_t x, size_t align) { argument
42 return (x + align-1) & ~(align-1);
H A Dmemalloc.h48 size_t align; member in struct:gralloc::alloc_data
/hardware/qcom/display/msm8994/libgralloc/
H A Dmemalloc.h48 unsigned int align; member in struct:gralloc::alloc_data
H A Dgr.h42 inline Type ALIGN(Type x, Type align) { argument
43 return (x + align-1) & ~(align-1);
/hardware/qcom/display/msm8996/libgralloc/
H A Dmemalloc.h48 unsigned int align; member in struct:gralloc::alloc_data
/hardware/intel/img/hwcomposer/merrifield/ips/common/
H A DWsbm.cpp57 bool Wsbm::allocateTTMBuffer(uint32_t size, uint32_t align, void ** buf) argument
59 int ret = psbWsbmAllocateTTMBuffer(size, align, buf);
68 bool Wsbm::allocateTTMBufferUB(uint32_t size, uint32_t align, void ** buf, void *user_pt) argument
70 int ret = psbWsbmAllocateFromUB(size, align, buf, user_pt);
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
H A DWsbm.cpp57 bool Wsbm::allocateTTMBuffer(uint32_t size, uint32_t align, void ** buf) argument
59 int ret = psbWsbmAllocateTTMBuffer(size, align, buf);
68 bool Wsbm::allocateTTMBufferUB(uint32_t size, uint32_t align, void ** buf, void *user_pt) argument
70 int ret = psbWsbmAllocateFromUB(size, align, buf, user_pt);
/hardware/qcom/display/msm8909/gralloc/
H A Dgr_ion_alloc.h51 unsigned int align = 1; member in struct:gralloc1::AllocData
H A Dgr_utils.h59 inline Type1 ALIGN(Type1 x, Type2 align) { argument
60 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
/hardware/qcom/display/msm8909w_3100/libgralloc1/
H A Dgr_ion_alloc.h51 unsigned int align = 1; member in struct:gralloc1::AllocData
H A Dgr_utils.h59 inline Type1 ALIGN(Type1 x, Type2 align) { argument
60 return (Type1)((x + (Type1)align - 1) & ~((Type1)align - 1));
/hardware/qcom/display/msm8996/sdm/libs/hwc/
H A Dhwc_buffer_allocator.cpp70 data.align = SECURE_ALIGN;
72 data.align = UINT32(getpagesize());
90 buffer_size = ROUND_UP(buffer_size, data.align) * buffer_config.buffer_count;
154 uint32_t align = UINT32(getpagesize()); local
167 align = SECURE_ALIGN;
184 buffer_size = ROUND_UP(buffer_size, align) * buffer_config.buffer_count;

Completed in 493 milliseconds

1234