t6_               235 src/gauche/arith.h         u_long t6_;                                             \
t6_               238 src/gauche/arith.h                 UMULOV(t6_, v, x, y);                           \
t6_               239 src/gauche/arith.h                 if ((v) || t6_ > LONG_MAX) (v) = 1;             \
t6_               240 src/gauche/arith.h                 else (r) = t6_;                                 \
t6_               242 src/gauche/arith.h                 UMULOV(t6_, v, x, -y);                          \
t6_               243 src/gauche/arith.h                 if ((v) || t6_ > LONG_MAX+1UL) (v) = -1;        \
t6_               244 src/gauche/arith.h                 else (r) = -t6_;                                \
t6_               248 src/gauche/arith.h                 UMULOV(t6_, v, -x, y);                          \
t6_               249 src/gauche/arith.h                 if ((v) || t6_ > LONG_MAX+1UL) (v) = -1;        \
t6_               250 src/gauche/arith.h                 else (r) = -t6_;                                \
t6_               252 src/gauche/arith.h                 UMULOV(t6_, v, -x, -y);                         \
t6_               253 src/gauche/arith.h                 if ((v) || t6_ > LONG_MAX) (v) = 1;             \
t6_               254 src/gauche/arith.h                 else (r) = t6_;                                 \