Home | History | Annotate | Download | only in include

Lines Matching refs:cout

1804    Producing cout last stops it using up a register during the main part of
1807 to the two places cout is generated. */
1809 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1828 (cout) = 1; \
1838 (cout) = 0; \
1843 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1844 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1846 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
1847 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_sub_n, \
1876 #define __GMPN_AORS_1(cout, dst, src, n, v, OP, CB) \
1889 (cout) = 1; \
1900 (cout) = 0; \
1909 (cout) = 0; \
1915 #define __GMPN_AORS_1(cout, dst, src, n, v, OP, CB) \
1928 (cout) = 1; \
1939 (cout) = 0; \
1948 (cout) = 0; \
1956 #define __GMPN_ADD_1(cout, dst, src, n, v) \
1957 __GMPN_AORS_1(cout, dst, src, n, v, +, __GMPN_ADDCB)
1958 #define __GMPN_SUB_1(cout, dst, src, n, v) \
1959 __GMPN_AORS_1(cout, dst, src, n, v, -, __GMPN_SUBCB)