Home | History | Annotate | Download | only in src

Lines Matching refs:pNv

3 #define G80DmaNext(pNv, data) \
4 (pNv)->dmaBase[(pNv)->dmaCurrent++] = (data)
6 #define G80DmaStart(pNv, tag, size) { \
7 if((pNv)->dmaFree <= (size)) \
8 G80DmaWait(pNv, size); \
9 G80DmaNext(pNv, ((size) << 18) | (tag)); \
10 (pNv)->dmaFree -= ((size) + 1); \
13 void G80DmaKickoff(G80Ptr pNv);
14 void G80DmaWait(G80Ptr pNv, int size);