Home | History | Annotate | Download | only in ratio.comparison

Lines Matching defs:R1

28     typedef std::ratio<1, 1> R1;
30 test<R1, R2, true>();
33 typedef std::ratio<0x7FFFFFFFFFFFFFFFLL, 1> R1;
35 test<R1, R2, true>();
38 typedef std::ratio<-0x7FFFFFFFFFFFFFFFLL, 1> R1;
40 test<R1, R2, true>();
43 typedef std::ratio<1, 0x7FFFFFFFFFFFFFFFLL> R1;
45 test<R1, R2, true>();
48 typedef std::ratio<1, 1> R1;
50 test<R1, R2, true>();
53 typedef std::ratio<0x7FFFFFFFFFFFFFFFLL, 1> R1;
55 test<R1, R2, true>();
58 typedef std::ratio<-0x7FFFFFFFFFFFFFFFLL, 1> R1;
60 test<R1, R2, false>();
63 typedef std::ratio<1, 0x7FFFFFFFFFFFFFFFLL> R1;
65 test<R1, R2, true>();