Home | History | Annotate | Download | only in nouveau

Lines Matching refs:pcli

45 	struct nouveau_client_priv *pcli = nouveau_client(client);
47 if (pcli->kref_nr > bo->handle)
48 kref = pcli->kref[bo->handle].kref;
55 struct nouveau_client_priv *pcli = nouveau_client(client);
57 if (pcli->kref_nr > bo->handle)
58 push = pcli->kref[bo->handle].push;
67 struct nouveau_client_priv *pcli = nouveau_client(client);
68 if (pcli->kref_nr <= bo->handle) {
69 pcli->kref = realloc(pcli->kref,
70 sizeof(*pcli->kref) * bo->handle * 2);
71 while (pcli->kref_nr < bo->handle * 2) {
72 pcli->kref[pcli->kref_nr].kref = NULL;
73 pcli->kref[pcli->kref_nr].push = NULL;
74 pcli->kref_nr++;
77 pcli->kref[bo->handle].kref = kref;
78 pcli->kref[bo->handle].push = push;