Lines Matching refs:overflow
408 # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ argument
412 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
415 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
418 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
421 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
424 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
427 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
430 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
433 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
436 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
439 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
448 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ argument
450 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \
451 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, ut, 0, umax))
453 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ argument
454 (overflow (a, b, smin, smax) \
455 ? (overflow (a, b, 0, umax) \
458 : (overflow (a, b, 0, umax) \
463 # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ argument
465 ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \
469 ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \
474 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
476 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
478 : _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow))
480 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
483 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
485 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
488 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
490 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
493 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
495 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
497 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
506 #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ argument
507 (overflow (a, b, tmin, tmax) \