Lines Matching refs:stuff

61     swaps(&stuff->length);  in SProcXIWarpPointer()
62 swapl(&stuff->src_win); in SProcXIWarpPointer()
63 swapl(&stuff->dst_win); in SProcXIWarpPointer()
64 swapl(&stuff->src_x); in SProcXIWarpPointer()
65 swapl(&stuff->src_y); in SProcXIWarpPointer()
66 swaps(&stuff->src_width); in SProcXIWarpPointer()
67 swaps(&stuff->src_height); in SProcXIWarpPointer()
68 swapl(&stuff->dst_x); in SProcXIWarpPointer()
69 swapl(&stuff->dst_y); in SProcXIWarpPointer()
70 swaps(&stuff->deviceid); in SProcXIWarpPointer()
91 rc = dixLookupDevice(&pDev, stuff->deviceid, client, DixWriteAccess); in ProcXIWarpPointer()
94 client->errorValue = stuff->deviceid; in ProcXIWarpPointer()
100 client->errorValue = stuff->deviceid; in ProcXIWarpPointer()
104 if (stuff->dst_win != None) { in ProcXIWarpPointer()
105 rc = dixLookupWindow(&dest, stuff->dst_win, client, DixGetAttrAccess); in ProcXIWarpPointer()
107 client->errorValue = stuff->dst_win; in ProcXIWarpPointer()
116 src_x = stuff->src_x / (double) (1 << 16); in ProcXIWarpPointer()
117 src_y = stuff->src_y / (double) (1 << 16); in ProcXIWarpPointer()
118 dst_x = stuff->dst_x / (double) (1 << 16); in ProcXIWarpPointer()
119 dst_y = stuff->dst_y / (double) (1 << 16); in ProcXIWarpPointer()
121 if (stuff->src_win != None) { in ProcXIWarpPointer()
125 rc = dixLookupWindow(&src, stuff->src_win, client, DixGetAttrAccess); in ProcXIWarpPointer()
127 client->errorValue = stuff->src_win; in ProcXIWarpPointer()
136 (stuff->src_width != 0 && in ProcXIWarpPointer()
137 winX + src_x + (int) stuff->src_width < 0) || in ProcXIWarpPointer()
138 (stuff->src_height != 0 && in ProcXIWarpPointer()
139 winY + src_y + (int) stuff->src_height < y) || in ProcXIWarpPointer()