Lines Matching defs:nPtr
58 NEOPtr nPtr = NEOPTR(pScrn);
62 nPtr->NeoHWCursorShown = TRUE;
68 NEOPtr nPtr = NEOPTR(pScrn);
79 nPtr->NeoHWCursorShown = FALSE;
94 NEOPtr nPtr = NEOPTR(pScrn);
98 unsigned char *_dest = ((unsigned char *)nPtr->NeoFbBase +
100 unsigned char *src = nPtr->NeoCursorImage;
111 if (yoff != nPtr->NeoCursorPrevY || xoff !=nPtr->NeoCursorPrevX) {
112 nPtr->NeoCursorPrevY = yoff;
113 nPtr->NeoCursorPrevX = xoff;
184 NEOPtr nPtr = NEOPTR(pScrn);
198 NEOPtr nPtr = NEOPTR(pScrn);
204 for (i = 0; i< nPtr->CursorInfo->MaxHeight - yoff; i++) {
205 _dest = ((unsigned char *)nPtr->NeoFbBase
207 + ((nPtr->CursorInfo->MaxWidth >> 2) * i));
208 _width = (nPtr->CursorInfo->MaxWidth
210 _src = (src + ((nPtr->CursorInfo->MaxWidth >> 2) * i));
216 _dest += (nPtr->CursorInfo->MaxWidth >> 3);
217 _src += (nPtr->CursorInfo->MaxWidth >> 3);
221 memset(nPtr->NeoFbBase + nAcl->CursorAddress
222 + ((nPtr->CursorInfo->MaxWidth >> 2) * i),
223 0, (nPtr->CursorInfo->MaxHeight - i)
224 * (nPtr->CursorInfo->MaxWidth >> 2));
234 NEOPtr nPtr = NEOPTR(pScrn);
235 nPtr->NeoCursorImage = src; /* store src address for later use */
238 nPtr->NeoCursorPrevY = nPtr->NeoCursorPrevX = 0;
295 NEOPtr nPtr = NEOPTR(pScrn);
300 nPtr->CursorInfo = infoPtr;