Lines Matching refs:height

131 void AdrenoMemInfo::getAlignedWidthAndHeight(int width, int height, int format,  in getAlignedWidthAndHeight()  argument
135 aligned_h = height; in getAlignedWidthAndHeight()
139 aligned_h = ALIGN(height, 32); in getAlignedWidthAndHeight()
167 height, bpp, tile_enabled, in getAlignedWidthAndHeight()
210 aligned_h = VENUS_Y_SCANLINES(COLOR_FMT_NV12, height); in getAlignedWidthAndHeight()
217 aligned_h = ALIGN(height, 64); in getAlignedWidthAndHeight()
254 width, height, format, 0,raster_mode, padding_threshold, in getAlignedWidthAndHeight()
394 size_t 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()
456 if(height != 1) { in getSize()
503 size_t getBufferSizeAndDimensions(int width, int height, int format, in getBufferSizeAndDimensions() argument
509 height, in getBufferSizeAndDimensions()
515 size = getSize(format, width, height, alignedw, alignedh); in getBufferSizeAndDimensions()
521 size_t getBufferSizeAndDimensions(int width, int height, int format, int usage, in getBufferSizeAndDimensions() argument
528 height, in getBufferSizeAndDimensions()
534 size = getSize(format, width, height, alignedw, alignedh); in getBufferSizeAndDimensions()
540 void getBufferAttributes(int width, int height, int format, int usage, in getBufferAttributes() argument
546 height, in getBufferAttributes()
551 size = getSize(format, width, height, alignedw, alignedh); in getBufferAttributes()
570 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
571 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height + 1); in getYUVPlaneInfo()
585 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
586 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + 1); in getYUVPlaneInfo()
597 ycbcr->cr = (void*)(hnd->base + ystride * hnd->height); in getYUVPlaneInfo()
598 ycbcr->cb = (void*)(hnd->base + ystride * hnd->height + in getYUVPlaneInfo()
599 cstride * hnd->height/2); in getYUVPlaneInfo()