Lines Matching refs:overflow

437 # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \  argument
441 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
444 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
447 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
450 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
453 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
456 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
459 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
462 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
465 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
468 _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
477 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ argument
479 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, st, smin, smax) \
480 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, ut, 0, umax))
482 # define _GL_INT_OP_WRAPV_SMALLISH(a,b,r,op,overflow,st,smin,smax,ut,umax) \ argument
483 (overflow (a, b, smin, smax) \
484 ? (overflow (a, b, 0, umax) \
487 : (overflow (a, b, 0, umax) \
492 # define _GL_INT_OP_WRAPV(a, b, r, op, overflow) \ argument
494 ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \
498 ? _GL_INT_OP_WRAPV_SMALLISH (a, b, r, op, overflow, \
503 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
505 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned int, \
507 : _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow))
509 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
512 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
514 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
517 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
519 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long long int, \
522 # define _GL_INT_OP_WRAPV_LONGISH(a, b, r, op, overflow) \ argument
524 ? _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
526 : _GL_INT_OP_CALC (a, b, r, op, overflow, unsigned long int, \
535 #define _GL_INT_OP_CALC(a, b, r, op, overflow, ut, t, tmin, tmax) \ argument
536 (overflow (a, b, tmin, tmax) \