Lines Matching defs:val
1764 } val;
1779 * offset from val.s of value (if EXPORT)
1794 #define ALLOC BIT(0) /* val.s has been allocated */
1796 #define ISSET BIT(2) /* has value, vp->val.[si] */
1802 #define INTEGER BIT(9) /* val.i contains integer value */
2378 #define notok2mul(max,val,c) (((val) != 0) && ((c) != 0) && \
2379 (((max) / (c)) < (val)))
2380 #define notok2add(max,val,c) ((val) > ((max) - (c)))
2381 #define notoktomul(val,cnst) notok2mul(SIZE_MAX, (val), (cnst))
2382 #define notoktoadd(val,cnst) notok2add(SIZE_MAX, (val), (cnst))
2383 #define checkoktoadd(val,cnst) do { \
2384 if (notoktoadd((val), (cnst))) \
2385 internal_errorf(Tintovfl, (size_t)(val), \