Lines Matching refs:lpBits
163 uint32_t *lpBits; in winLoadCursor() local
239 lpBits = NULL; in winLoadCursor()
256 lpBits = calloc(pScreenPriv->cursor.sm_cx * pScreenPriv->cursor.sm_cy, in winLoadCursor()
259 if (lpBits) { in winLoadCursor()
264 dst = &(lpBits[y * pScreenPriv->cursor.sm_cx]); in winLoadCursor()
270 if (!lpBits) { in winLoadCursor()
301 lpBits = calloc(pScreenPriv->cursor.sm_cx * pScreenPriv->cursor.sm_cy, 1); in winLoadCursor()
303 pCur = (unsigned char *) lpBits; in winLoadCursor()
304 if (lpBits) { in winLoadCursor()
341 if (lpBits) { in winLoadCursor()
357 SetDIBits(hDC, hXor, 0, pScreenPriv->cursor.sm_cy, lpBits, in winLoadCursor()
361 free(lpBits); in winLoadCursor()