Home | History | Annotate | Download | only in src

Lines Matching refs:pNv

65 #define NVDmaNext(pNv, data) { \
66 (pNv)->dmaBase[(pNv)->dmaCurrent++] = (data); \
69 #define NVDmaStart(pNv, tag, size) { \
70 if((pNv)->dmaFree <= (size)) \
71 NVDmaWait(pNv, size); \
72 NVDmaNext(pNv, ((size) << 18) | (tag)); \
73 (pNv)->dmaFree -= ((size) + 1); \
76 #define WRITE_PUT(pNv, data) { \
79 scratch = (pNv)->FbStart[0]; \
81 (pNv)->FIFO[0x0010] = (data) << 2; \
86 #define READ_GET(pNv) ((pNv)->FIFO[0x0011] >> 2)