Home
last modified time | relevance | path

Searched refs:biClrUsed (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7638.patch16 biClrUsed = 131075
18 …located. But then biClrUsed colors are read from a file and stored into the palette. SDL_LoadBMP_R…
30 if ( biClrUsed == 0 ) {
31 biClrUsed = 1 << biBitCount;
32 + } else if ( biClrUsed > (1 << biBitCount) ) {
38 for ( i = 0; i < (int)biClrUsed; ++i ) {
H A DCVE-2019-7635.patch38 + if ( bits[i] >= biClrUsed ) {
51 + if ( 8 == biBitCount && palette && biClrUsed < (1 << biBitCount ) ) {
53 + if ( bits[i] >= biClrUsed ) {
/OK3568_Linux_fs/external/rockit/mpi/example/include/
H A Dtest_comm_bmp.h79 RK_U32 biClrUsed; member
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/
H A Dpicturewidget.cpp42 u_int32_t biClrUsed; member
62 qDebug()<<"color count:"<<pBmpInforHead.biClrUsed; in showBmpInforHead()
/OK3568_Linux_fs/kernel/scripts/
H A Dbmpconvert31 self.biClrUsed = unpack("<i", self.file.read(4))[0]
239 self.file.write(pack("<i", self.biClrUsed)) # biClrUsed
/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwincursor.c285 pbmi->bmiHeader.biClrUsed = 3; in winLoadCursor()