HomeSort by relevance Sort by last modified time
    Searched refs:GRALLOC_ALIGN (Results 1 - 4 of 4) sorted by null

  /device/linaro/hikey/gralloc960/
alloc_device.cpp 85 const size_t alignedFramebufferSize = GRALLOC_ALIGN(m->finfo.line_length, 64) * m->info.yres;
96 *byte_stride = GRALLOC_ALIGN(m->finfo.line_length, 64);
132 *byte_stride = GRALLOC_ALIGN(m->finfo.line_length, 64);
190 stride = GRALLOC_ALIGN(stride, 64);
210 int h_aligned = GRALLOC_ALIGN( height, AFBC_NORMAL_HEIGHT_ALIGN );
216 w_aligned = GRALLOC_ALIGN( width, AFBC_TILED_HEADERS_BASIC_WIDTH_ALIGN );
217 h_aligned = GRALLOC_ALIGN( height, AFBC_TILED_HEADERS_BASIC_HEIGHT_ALIGN );
222 w_aligned = GRALLOC_ALIGN( width, AFBC_TILED_HEADERS_WIDEBLK_WIDTH_ALIGN );
223 h_aligned = GRALLOC_ALIGN( height, AFBC_TILED_HEADERS_WIDEBLK_HEIGHT_ALIGN );
228 w_aligned = GRALLOC_ALIGN( width, 64 )
    [all...]
alloc_device.h 34 #define GRALLOC_ALIGN( value, base ) (((value) + ((base) - 1)) & ~((base) - 1))
gralloc_module.cpp 202 int adjusted_height = GRALLOC_ALIGN(hnd->height, 2);
235 c_stride = GRALLOC_ALIGN(hnd->byte_stride / 2, 16);
  /device/linaro/hikey/gralloc/
alloc_device.cpp 47 #define GRALLOC_ALIGN( value, base ) (((value) + ((base) - 1)) & ~((base) - 1))
395 stride = GRALLOC_ALIGN(w, 16);
396 size = GRALLOC_ALIGN(h, 16) * (stride + GRALLOC_ALIGN(stride / 2, 16));
403 stride = GRALLOC_ALIGN(w, 16);
404 size = GRALLOC_ALIGN(h, 2) * (stride + GRALLOC_ALIGN(stride / 2, 16));
410 stride = GRALLOC_ALIGN(w, 16);
411 size = GRALLOC_ALIGN(h, 16) * (stride + GRALLOC_ALIGN(stride / 2, 16))
    [all...]

Completed in 122 milliseconds