Lines Matching defs:pcli
48 struct nouveau_client_priv *pcli = nouveau_client(client);
50 if (pcli->kref_nr > bo->handle)
51 kref = pcli->kref[bo->handle].kref;
58 struct nouveau_client_priv *pcli = nouveau_client(client);
60 if (pcli->kref_nr > bo->handle)
61 push = pcli->kref[bo->handle].push;
70 struct nouveau_client_priv *pcli = nouveau_client(client);
71 if (pcli->kref_nr <= bo->handle) {
72 pcli->kref = realloc(pcli->kref,
73 sizeof(*pcli->kref) * bo->handle * 2);
74 while (pcli->kref_nr < bo->handle * 2) {
75 pcli->kref[pcli->kref_nr].kref = NULL;
76 pcli->kref[pcli->kref_nr].push = NULL;
77 pcli->kref_nr++;
80 pcli->kref[bo->handle].kref = kref;
81 pcli->kref[bo->handle].push = push;