Lines Matching defs:xci
43 XRRCrtcInfo *xci;
78 xci = Xmalloc(rbytes);
85 xci = NULL;
88 if (xci == NULL) {
95 xci->timestamp = rep.timestamp;
96 xci->x = rep.x;
97 xci->y = rep.y;
98 xci->width = rep.width;
99 xci->height = rep.height;
100 xci->mode = rep.mode;
101 xci->rotation = rep.rotation;
102 xci->noutput = rep.nOutput;
103 xci->outputs = (RROutput *) (xci + 1);
104 xci->rotations = rep.rotations;
105 xci->npossible = rep.nPossibleOutput;
106 xci->possible = (RROutput *) (xci->outputs + rep.nOutput);
108 _XRead32 (dpy, (long *) xci->outputs, rep.nOutput << 2);
109 _XRead32 (dpy, (long *) xci->possible, rep.nPossibleOutput << 2);
119 return (XRRCrtcInfo *) xci;