Home
last modified time | relevance | path

Searched refs:biHeight (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-13616.patch17 + if (biWidth <= 0 || biHeight == 0) {
18 + SDL_SetError("BMP file with bad dimensions (%dx%d)", biWidth, biHeight);
22 if (biHeight < 0) {
24 biHeight = -biHeight;
/OK3568_Linux_fs/kernel/scripts/
H A Dbmpconvert23 self.biHeight = unpack("<i", self.file.read(4))[0]
62 if self.bfReserved1 != 8399 and self.biHeight > 0:
95 for height in range(abs(self.biHeight)):
113 for height in range(abs(self.biHeight)):
154 for height in range(abs(self.biHeight)):
178 for height in range(abs(self.biHeight)):
193 for height in range(abs(self.biHeight)):
206 for height in range(abs(self.biHeight)):
232 self.file.write(pack("<i", self.biHeight))
246 new_bf_size = temp_bi_width * abs(self.biHeight) + 54
[all …]
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinshadgdi.c200 (int)pbmih->biWidth, (int)pbmih->biHeight, pbmih->biBitCount, in winQueryRGBBitsAndMasks()
324 pScreenPriv->pbmih->biHeight = -pScreenInfo->dwHeight; in winAllocateFBShadowGDI()
329 (int) -pScreenPriv->pbmih->biHeight, pScreenPriv->pbmih->biBitCount); in winAllocateFBShadowGDI()
354 (int) dibsection.dsBmih.biWidth, (int) dibsection.dsBmih.biHeight, in winAllocateFBShadowGDI()
388 if (dibsection.dsBmih.biHeight < 0) { in winAllocateFBShadowGDI()
389 dibsection.dsBmih.biHeight = -dibsection.dsBmih.biHeight; in winAllocateFBShadowGDI()
394 / dibsection.dsBmih.biHeight) in winAllocateFBShadowGDI()
H A Dwinwin32rootless.c644 pRLWinPriv->pbmihShadow->biHeight = -pRLWinPriv->pFrame->height; in winMWExtWMStartDrawing()
681 (unsigned int) dibsection.dsBmih.biHeight, in winMWExtWMStartDrawing()
709 if (dibsection.dsBmih.biHeight < 0) { in winMWExtWMStartDrawing()
713 (int) dibsection.dsBmih.biHeight); in winMWExtWMStartDrawing()
716 dibsection.dsBmih.biHeight = -dibsection.dsBmih.biHeight; in winMWExtWMStartDrawing()
H A Dwincursor.c280 pbmi->bmiHeader.biHeight = -abs(pScreenPriv->cursor.sm_cy); /* right-side up */ in winLoadCursor()
/OK3568_Linux_fs/external/rockit/mpi/example/common/
H A Dtest_comm_bmp.cpp146 if (bmpInfo.bmiHeader.biHeight < 0) { in load_bmp_ex()
157 pVideoLogo->height = (RK_U16)((bmpInfo.bmiHeader.biHeight > 0) ? in load_bmp_ex()
158 bmpInfo.bmiHeader.biHeight : (-bmpInfo.bmiHeader.biHeight)); in load_bmp_ex()
H A Dtest_comm_rgn.cpp358 pstBitmap->pData = malloc(4 * (bmpInfo.bmiHeader.biWidth) * (bmpInfo.bmiHeader.biHeight)); in TEST_RGN_LoadBmp()
/OK3568_Linux_fs/external/rockit/mpi/example/include/
H A Dtest_comm_bmp.h72 RK_S32 biHeight; member
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/
H A Dpicturewidget.cpp35 u_int32_t biHeight; member
55 qDebug()<<"height:"<<pBmpInforHead.biHeight; in showBmpInforHead()
/OK3568_Linux_fs/external/xserver/hw/xwin/glx/
H A Dindirect.c954 bmpHeader.biHeight = draw->base.pDraw->height; in glxWinDeferredCreateDrawable()
971 size = bmpHeader.biHeight * RASTERWIDTHBYTES(&bmpHeader); in glxWinDeferredCreateDrawable()