Home
last modified time | relevance | path

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

/reactos/modules/rostests/apitests/win32nt/ntgdi/
H A DNtGdiDoPalette.c216 BYTE *pjBits; in Test_NtGdiDoPalette_SetDIBColorTable() local
247 hbmp = CreateDIBSection(hdc, (BITMAPINFO*)&bmi, DIB_PAL_COLORS, (PVOID*)&pjBits, NULL, 0); in Test_NtGdiDoPalette_SetDIBColorTable()
249 ok(pjBits != NULL, "pjBits was NULL.\n"); in Test_NtGdiDoPalette_SetDIBColorTable()
253 pjBits[0] = 8; in Test_NtGdiDoPalette_SetDIBColorTable()
254 pjBits[1] = 1; in Test_NtGdiDoPalette_SetDIBColorTable()
255 pjBits[2] = 2; in Test_NtGdiDoPalette_SetDIBColorTable()
256 pjBits[3] = 3; in Test_NtGdiDoPalette_SetDIBColorTable()
/reactos/win32ss/drivers/font/bmfd/
H A Dglyph.c13 CHAR* pjBits, in _ReadPixel() argument
19 j = pjBits[(x/8) * ulHeight + y]; in _ReadPixel()
27 CHAR* pjBits, in _WritePixel() argument
33 pjBits += y * cjRow; in _WritePixel()
34 pjBits += x / 8; in _WritePixel()
35 *pjBits |= color << (~x & 0x7); in _WritePixel()
/reactos/modules/rostests/apitests/gdi32/
H A DGetDIBColorTable.c20 PBYTE pjBits; in Test_GetDIBColorTable() local
62 hbmp = CreateDIBSection(hdc, pbmi, DIB_RGB_COLORS, (PVOID*)&pjBits, 0, 0 ); in Test_GetDIBColorTable()
96 hbmp = CreateDIBSection(hdc, pbmi, DIB_PAL_COLORS, (PVOID*)&pjBits, 0, 0 ); in Test_GetDIBColorTable()
H A DFrameRgn.c81 PUCHAR pjBits, in CheckBitmapBitsWithLine() argument
91 ok(GetPixel(hdc, x, y) == pcrColors[pjBits[i]], in CheckBitmapBitsWithLine()
93 x, y, pcrColors[pjBits[i]], GetPixel(hdc, x, y)); in CheckBitmapBitsWithLine()
/reactos/win32ss/gdi/ntgdi/
H A Ddibobj.c1117 _Out_writes_bytes_opt_(cjMaxBits) LPBYTE pjBits, in NtGdiGetDIBitsInternal()
1173 if (pjBits) in NtGdiGetDIBitsInternal()
1176 hSecure = EngSecureMem(pjBits, cjMaxBits); in NtGdiGetDIBitsInternal()
1188 pjBits, in NtGdiGetDIBitsInternal()
1800 PBYTE pjBits; in GreCreateDIBitmapFromPackedDIB() local
1826 pjBits = (PBYTE)pvPackedDIB + cjInfo; in GreCreateDIBitmapFromPackedDIB()
1833 pjBits, in GreCreateDIBitmapFromPackedDIB()
/reactos/sdk/include/psdk/
H A Dntgdi.h2779 _Out_writes_bytes_opt_(cjMaxBits) LPBYTE pjBits,