Lines Matching refs:height

129 void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format,  in getAlignedWidthAndHeight()  argument
133 aligned_h = height; in getAlignedWidthAndHeight()
137 aligned_h = ALIGN(height, 32); in getAlignedWidthAndHeight()
165 height, bpp, tile_enabled, in getAlignedWidthAndHeight()
203 aligned_h = VENUS_Y_SCANLINES(COLOR_FMT_NV12, height); in getAlignedWidthAndHeight()
209 aligned_h = ALIGN(height, 64); in getAlignedWidthAndHeight()
246 width, height, format, 0,raster_mode, padding_threshold, in getAlignedWidthAndHeight()
397 unsigned int getSize(int format, int width, int height, const int alignedw, in getSize() argument
418 size += ALIGN(2 * ALIGN(width/2, 32) * ALIGN(height/2, 32), 4096); in getSize()
425 size += ALIGN( alignedw * ALIGN(height/2, 32), 8192); in getSize()
428 if ((format == HAL_PIXEL_FORMAT_YV12) && ((width&1) || (height&1))) { in getSize()
452 size = VENUS_BUFFER_SIZE(COLOR_FMT_NV12, width, height); in getSize()
455 if(height != 1) { in getSize()
502 unsigned int getBufferSizeAndDimensions(int width, int height, int format, in getBufferSizeAndDimensions() argument
508 height, in getBufferSizeAndDimensions()
514 size = getSize(format, width, height, alignedw, alignedh); in getBufferSizeAndDimensions()
520 unsigned int getBufferSizeAndDimensions(int width, int height, int format, in getBufferSizeAndDimensions() argument
527 height, in getBufferSizeAndDimensions()
533 size = getSize(format, width, height, alignedw, alignedh); in getBufferSizeAndDimensions()
539 void getBufferAttributes(int width, int height, int format, int usage, in getBufferAttributes() argument
545 height, in getBufferAttributes()
550 size = getSize(format, width, height, alignedw, alignedh); in getBufferAttributes()
569 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
570 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1); in getYUVPlaneInfo()
583 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
584 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1); in getYUVPlaneInfo()
595 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
596 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + in getYUVPlaneInfo()
597 cstride * hnd->height/2); in getYUVPlaneInfo()