vres              172 maint/gnulib/tests/test-intprops.c   #define CHECK_BINOP(op, opname, a, b, t, v, vres)                       \
vres              177 maint/gnulib/tests/test-intprops.c   #define CHECK_SBINOP(op, opname, a, b, t, v, vres)                      \
vres              178 maint/gnulib/tests/test-intprops.c     CHECK_BINOP(op, opname, a, b, t, v, vres);                            \
vres              182 maint/gnulib/tests/test-intprops.c       ASSERT (result == ((v) ? (vres) : ((a) op (b))));                   \
vres              244 maint/gnulib/tests/test-intprops.c   #define CHECK_SUM(a, b, t, v, vres)                                     \
vres              245 maint/gnulib/tests/test-intprops.c     CHECK_SUM1 (a, b, t, v, vres);                                        \
vres              246 maint/gnulib/tests/test-intprops.c     CHECK_SUM1 (b, a, t, v, vres)
vres              247 maint/gnulib/tests/test-intprops.c   #define CHECK_SUM_WRAPV(a, b, t, v, vres, okres)                        \
vres              248 maint/gnulib/tests/test-intprops.c     CHECK_SUM_WRAPV1 (a, b, t, v, vres, okres);                           \
vres              249 maint/gnulib/tests/test-intprops.c     CHECK_SUM_WRAPV1 (b, a, t, v, vres, okres)
vres              250 maint/gnulib/tests/test-intprops.c   #define CHECK_SUM1(a, b, t, v, vres)                                    \
vres              252 maint/gnulib/tests/test-intprops.c     CHECK_SUM_WRAPV1 (a, b, t, v, vres, (a) + (b))
vres              253 maint/gnulib/tests/test-intprops.c   #define CHECK_SUM_WRAPV1(a, b, t, v, vres, okres)                       \
vres              257 maint/gnulib/tests/test-intprops.c       ASSERT (result == ((v) ? (vres) : (okres)));                        \
vres              293 maint/gnulib/tests/test-intprops.c   #define CHECK_DIFFERENCE(a, b, t, v, vres)                              \
vres              295 maint/gnulib/tests/test-intprops.c   #define CHECK_SDIFFERENCE(a, b, t, v, vres)                             \
vres              296 maint/gnulib/tests/test-intprops.c     CHECK_DIFFERENCE (a, b, t, v, vres);                                  \
vres              297 maint/gnulib/tests/test-intprops.c     CHECK_SDIFFERENCE_WRAPV (a, b, t, v, vres)
vres              298 maint/gnulib/tests/test-intprops.c   #define CHECK_SDIFFERENCE_WRAPV(a, b, t, v, vres)                       \
vres              302 maint/gnulib/tests/test-intprops.c       ASSERT (result == ((v) ? (vres) : ((a) - (b))));                    \
vres              326 maint/gnulib/tests/test-intprops.c   #define CHECK_PRODUCT(a, b, t, v, vres)                                 \
vres              327 maint/gnulib/tests/test-intprops.c     CHECK_PRODUCT1 (a, b, t, v, vres);                                    \
vres              328 maint/gnulib/tests/test-intprops.c     CHECK_PRODUCT1 (b, a, t, v, vres)
vres              329 maint/gnulib/tests/test-intprops.c   #define CHECK_SPRODUCT(a, b, t, v, vres)                                \
vres              330 maint/gnulib/tests/test-intprops.c     CHECK_SPRODUCT1 (a, b, t, v, vres);                                   \
vres              331 maint/gnulib/tests/test-intprops.c     CHECK_SPRODUCT1 (b, a, t, v, vres)
vres              332 maint/gnulib/tests/test-intprops.c   #define CHECK_SPRODUCT_WRAPV(a, b, t, v, vres)                          \
vres              333 maint/gnulib/tests/test-intprops.c     CHECK_SPRODUCT_WRAPV1 (a, b, t, v, vres);                             \
vres              334 maint/gnulib/tests/test-intprops.c     CHECK_SPRODUCT_WRAPV1 (b, a, t, v, vres)
vres              335 maint/gnulib/tests/test-intprops.c   #define CHECK_PRODUCT1(a, b, t, v, vres)                                \
vres              337 maint/gnulib/tests/test-intprops.c   #define CHECK_SPRODUCT1(a, b, t, v, vres)                               \
vres              338 maint/gnulib/tests/test-intprops.c     CHECK_PRODUCT1 (a, b, t, v, vres);                                    \
vres              339 maint/gnulib/tests/test-intprops.c     CHECK_SPRODUCT_WRAPV1 (a, b, t, v, vres)
vres              340 maint/gnulib/tests/test-intprops.c   #define CHECK_SPRODUCT_WRAPV1(a, b, t, v, vres)                         \
vres              344 maint/gnulib/tests/test-intprops.c       ASSERT (result == ((v) ? (vres) : ((a) * (b))));                    \