HomeSort by: relevance | last modified time | path
    Searched refs:rc (Results 1 - 25 of 407) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/libX11/dist/src/
GetEventData.c 33 Bool rc; local
36 rc = _XFetchEventCookie(dpy, event);
40 return rc;
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
nv04_state_frag.c 65 #define INIT_COMBINER(chan, ctx, rc, i) do { \
68 (rc)->ctx = ctx; \
69 (rc)->unit = i; \
70 (rc)->alpha = __INIT_COMBINER_ALPHA_##chan; \
71 (rc)->premodulate = c->_NumArgs##chan == 4; \
72 (rc)->mode = c->Mode##chan; \
73 (rc)->source = c->Source##chan; \
74 (rc)->operand = c->Operand##chan; \
75 (rc)->logscale = c->ScaleShift##chan; \
76 (rc)->hw = 0;
    [all...]
nv10_state_frag.c 81 #define INIT_COMBINER(chan, ctx, rc, i) do { \
84 (rc)->ctx = ctx; \
85 (rc)->unit = i; \
86 (rc)->premodulate = c->_NumArgs##chan == 4; \
87 (rc)->mode = c->Mode##chan; \
88 (rc)->source = c->Source##chan; \
89 (rc)->operand = c->Operand##chan; \
90 (rc)->logscale = c->ScaleShift##chan; \
91 (rc)->in = (rc)->out = 0;
345 struct combiner_state rc = {}; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
nv04_state_frag.c 65 #define INIT_COMBINER(chan, ctx, rc, i) do { \
68 (rc)->ctx = ctx; \
69 (rc)->unit = i; \
70 (rc)->alpha = __INIT_COMBINER_ALPHA_##chan; \
71 (rc)->premodulate = c->_NumArgs##chan == 4; \
72 (rc)->mode = c->Mode##chan; \
73 (rc)->source = c->Source##chan; \
74 (rc)->operand = c->Operand##chan; \
75 (rc)->logscale = c->ScaleShift##chan; \
76 (rc)->hw = 0;
    [all...]
nv10_state_frag.c 81 #define INIT_COMBINER(chan, ctx, rc, i) do { \
84 (rc)->ctx = ctx; \
85 (rc)->unit = i; \
86 (rc)->premodulate = c->_NumArgs##chan == 4; \
87 (rc)->mode = c->Mode##chan; \
88 (rc)->source = c->Source##chan; \
89 (rc)->operand = c->Operand##chan; \
90 (rc)->logscale = c->ScaleShift##chan; \
91 (rc)->in = (rc)->out = 0;
345 struct combiner_state rc = {}; local
    [all...]
  /xsrc/external/mit/luit/dist/
sys.c 103 int rc; local
109 rc = poll(pfd, 1, -1);
110 if (rc < 0)
117 int rc; local
121 rc = select(FD_SETSIZE, NULL, &fds, NULL, NULL);
122 if (rc < 0)
141 int rc; local
148 rc = poll(pfd, 2, -1);
149 if (rc < 0) {
160 int rc; local
185 int rc; local
202 int rc; local
217 int rc; local
233 int rc; local
252 int rc; local
297 int rc; local
336 int rc; local
431 int rc; local
497 int rc; local
    [all...]
  /xsrc/external/mit/xf86-video-vboxvideo/dist/src/
VBoxVideoErr.h 45 #define RT_SUCCESS_NP(rc) ( (int)(rc) >= VINF_SUCCESS )
46 #define RT_SUCCESS(rc) ( likely(RT_SUCCESS_NP(rc)) )
47 #define RT_FAILURE(rc) ( unlikely(!RT_SUCCESS_NP(rc)) )
  /xsrc/external/mit/xorg-server.old/dist/Xext/
syncsdk.h 34 int rc; \
35 rc = SyncVerifyFence(&(pFence), (fid), (client), (mode)); \
36 if (Success != rc) return rc; \
  /xsrc/external/mit/xorg-server/dist/Xi/
xichangecursor.c 71 int rc; local
79 rc = dixLookupDevice(&pDev, stuff->deviceid, client, DixSetAttrAccess);
80 if (rc != Success)
81 return rc;
87 rc = dixLookupWindow(&pWin, stuff->win, client, DixSetAttrAccess);
88 if (rc != Success)
89 return rc;
99 rc = dixLookupResourceByType((void **) &pCursor, stuff->cursor,
101 if (rc != Success)
102 return rc;
    [all...]
xisetclientpointer.c 67 int rc; local
72 rc = dixLookupDevice(&pDev, stuff->deviceid, client, DixManageAccess);
73 if (rc != Success) {
75 return rc;
86 rc = dixLookupClient(&targetClient, stuff->win, client,
89 if (rc != Success)
96 rc = SetClientPointer(targetClient, pDev);
97 if (rc != Success) {
99 return rc;
grabdev.c 103 int rc; local
123 rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGrabAccess);
124 if (rc != Success)
125 return rc;
127 if ((rc = CreateMaskFromList(client, (XEventClass *) &stuff[1],
130 return rc;
134 rc = GrabDevice(client, dev, stuff->other_devices_mode,
139 if (rc != Success)
140 return rc;
174 int rc, i, j local
    [all...]
ungrdevb.c 100 int rc; local
105 rc = dixLookupDevice(&dev, stuff->grabbed_device, client, DixGrabAccess);
106 if (rc != Success)
107 return rc;
112 rc = dixLookupDevice(&mdev, stuff->modifier_device, client,
114 if (rc != Success)
122 rc = dixLookupWindow(&pWin, stuff->grabWindow, client, DixSetAttrAccess);
123 if (rc != Success)
124 return rc;
ungrdev.c 92 int rc; local
97 rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGetAttrAccess);
98 if (rc != Success)
99 return rc;
  /xsrc/external/mit/xorg-server.old/dist/Xi/
xichangecursor.c 72 int rc; local
80 rc = dixLookupDevice(&pDev, stuff->deviceid, client, DixSetAttrAccess);
81 if (rc != Success)
82 return rc;
89 rc = dixLookupWindow(&pWin, stuff->win, client, DixSetAttrAccess);
90 if (rc != Success)
91 return rc;
103 rc = dixLookupResourceByType((pointer *)&pCursor, stuff->cursor,
105 if (rc != Success)
106 return rc;
    [all...]
xisetclientpointer.c 70 int rc; local
76 rc = dixLookupDevice(&pDev, stuff->deviceid, client, DixManageAccess);
77 if (rc != Success)
80 return rc;
93 rc = dixLookupClient(&targetClient, stuff->win, client,
96 if (rc != Success)
102 rc = SetClientPointer(targetClient, pDev);
103 if (rc != Success)
106 return rc;
xichangehierarchy.c 146 int rc; local
151 rc = AllocDevicePair(client, name, &ptr, &keybd,
153 if (rc != Success)
160 rc = AllocXTestDevice(client, name, &XTestptr, &XTestkeybd, ptr, keybd);
161 if (rc != Success)
200 return rc;
221 int rc = Success; local
227 rc = dixLookupDevice(&ptr, r->deviceid, client, DixDestroyAccess);
228 if (rc != Success)
234 rc = BadDevice
350 int rc; local
385 int rc; local
441 int rc = Success; local
    [all...]
ungrdevb.c 102 int rc; local
107 rc = dixLookupDevice(&dev, stuff->grabbed_device, client, DixGrabAccess);
108 if (rc != Success)
109 return rc;
114 rc = dixLookupDevice(&mdev, stuff->modifier_device, client,
116 if (rc != Success)
123 rc = dixLookupWindow(&pWin, stuff->grabWindow, client, DixSetAttrAccess);
124 if (rc != Success)
125 return rc;
ungrdev.c 94 int rc; local
99 rc = dixLookupDevice(&dev, stuff->deviceid, client, DixGetAttrAccess);
100 if (rc != Success)
101 return rc;
  /xsrc/external/mit/xorg-server/dist/Xext/
syncsdk.h 37 int rc; \
38 rc = SyncVerifyFence(&(pFence), (fid), (client), (mode)); \
39 if (Success != rc) return rc; \
  /xsrc/external/mit/xorg-server/dist/dix/
selection.c 75 int rc = BadMatch; local
84 rc = XaceHookSelectionAccess(client, &pSel, access_mode);
86 return rc;
148 int rc; local
162 rc = dixLookupWindow(&pWin, stuff->window, client, DixSetAttrAccess);
163 if (rc != Success)
164 return rc;
174 rc = dixLookupSelection(&pSel, stuff->selection, client, DixSetAttrAccess);
176 if (rc == Success) {
193 else if (rc == BadMatch)
229 int rc; local
266 int rc; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/dix/
selection.c 76 int rc = BadMatch; local
84 rc = XaceHookSelectionAccess(client, &pSel, access_mode);
86 return rc;
148 int rc; local
162 rc = dixLookupWindow(&pWin, stuff->window, client, DixSetAttrAccess);
163 if (rc != Success)
164 return rc;
174 rc = dixLookupSelection(&pSel, stuff->selection, client, DixSetAttrAccess);
176 if (rc == Success) {
194 else if (rc == BadMatch
231 int rc; local
267 int rc; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/test/
xtest.c 112 int rc; local
117 rc = XIGetDeviceProperty(xtestpointer, xtest_prop, &prop);
118 assert(rc == Success);
121 rc = XIGetDeviceProperty(xtestkeyboard, xtest_prop, &prop);
122 assert(rc == Success);
125 rc = XIChangeDeviceProperty(xtestpointer, xtest_prop,
128 assert(rc == BadAccess);
129 rc = XIChangeDeviceProperty(xtestkeyboard, xtest_prop,
132 assert(rc == BadAccess);
misc.c 42 int rc; local
44 rc = version_compare(0, 0, 1, 0);
45 assert(rc < 0);
46 rc = version_compare(1, 0, 0, 0);
47 assert(rc > 0);
48 rc = version_compare(0, 0, 0, 0);
49 assert(rc == 0);
50 rc = version_compare(1, 0, 1, 0);
51 assert(rc == 0);
52 rc = version_compare(1, 0, 0, 9)
187 int rc; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/test/
xtest.c 84 int rc; local
89 rc = XIGetDeviceProperty(xtestpointer, xtest_prop, &prop);
90 g_assert(rc == Success);
93 rc = XIGetDeviceProperty(xtestkeyboard, xtest_prop, &prop);
94 g_assert(rc == Success);
97 rc = XIChangeDeviceProperty(xtestpointer, xtest_prop,
99 g_assert(rc == BadAccess);
100 rc = XIChangeDeviceProperty(xtestkeyboard, xtest_prop,
102 g_assert(rc == BadAccess);
  /xsrc/external/mit/xorg-server/dist/test/xi2/
protocol-xiqueryversion.c 114 int rc; local
135 rc = ProcXIQueryVersion(&client);
136 assert(rc == error);
145 rc = SProcXIQueryVersion(&client);
146 assert(rc == error);
204 int rc; local
221 rc = ProcXIQueryVersion(&client);
222 assert(rc == Success);
227 rc = ProcXIQueryVersion(&client);
228 assert(rc == Success)
    [all...]

Completed in 15 milliseconds

1 2 3 4 5 6 7 8 91011>>