Lines Matching defs:pNv
31 NVPtr pNv = NVPTR(pScrn);
32 nouveau_object_del(&pNv->NvCopy);
33 nouveau_pushbuf_del(&pNv->ce_pushbuf);
34 nouveau_object_del(&pNv->ce_channel);
55 NVPtr pNv = NVPTR(pScrn);
58 if (pNv->AccelMethod == NONE) {
64 switch (pNv->Architecture) {
66 if (pNv->dev->chipset < 0xa3 ||
67 pNv->dev->chipset == 0xaa ||
68 pNv->dev->chipset == 0xac)
71 ret = nouveau_object_new(&pNv->dev->object, 0,
77 &pNv->ce_channel);
80 ret = nouveau_object_new(&pNv->dev->object, 0,
84 &pNv->ce_channel);
89 ret = nouveau_object_new(&pNv->dev->object, 0,
95 &pNv->ce_channel);
107 ret = nouveau_pushbuf_new(pNv->client, pNv->ce_channel, 4,
108 32 * 1024, true, &pNv->ce_pushbuf);
117 ret = nouveau_object_new(pNv->ce_channel,
120 &pNv->NvCopy);
122 if (!method->init(pNv)) {