Home | History | Annotate | Download | only in extensions

Lines Matching refs:presult

198     XSyncValue* /*presult*/,
205 XSyncValue* /*presult*/,
242 #define _XSyncValueAdd(presult,a,b,poverflow) {\
246 ((presult)->lo = (a).lo + (b).lo);\
247 ((presult)->hi = (a).hi + (b).hi);\
248 if (t>(presult)->lo) (presult)->hi++;\
249 *poverflow = ((signa == signb) && !(signa == XSyncValueIsNegative(*presult)));\
251 #define _XSyncValueSubtract(presult,a,b,poverflow) {\
255 ((presult)->lo = (a).lo - (b).lo);\
256 ((presult)->hi = (a).hi - (b).hi);\
257 if (t>(presult)->lo) (presult)->hi--;\
258 *poverflow = ((signa == signb) && !(signa == XSyncValueIsNegative(*presult)));\
281 #define XSyncValueAdd(presult,a,b,poverflow) _XSyncValueAdd(presult,a,b,poverflow)
282 #define XSyncValueSubtract(presult,a,b,poverflow) _XSyncValueSubtract(presult,a,b,poverflow)