Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:tt

21   TempTracker &TT;
26 : TT(_TT), P(_P), Truth(_Truth) {}
27 A(const A &RHS) : TT(RHS.TT), P(RHS.P), Truth(RHS.Truth) { RHS.P = 0; }
30 TT.Product *= pow(P, ++TT.Index);
34 TT = RHS.TT;
46 TempTracker tt;
48 A a(tt, 2);
49 if ((A(tt, 3), val))
50 A b(tt, 5);
51 A c(tt, 7);
53 return tt.Product;
58 TempTracker tt;
60 A a(tt, 2);
61 if ((A(tt, 3), val))
62 A b(tt, 5);
63 A c(tt, 7);
65 return tt.Product;
70 TempTracker tt;
72 A a(tt, 2);
73 if (A b = A(tt, 3))
74 A c(tt, 5);
75 A d(tt, 7);
77 return tt.Product;
82 TempTracker tt;
84 A a(tt, 2);
85 if (A b = A(tt, 3, false))
86 A c(tt, 5);
88 A c(tt, 7);
89 A d(tt, 11);
91 return tt.Product;
96 TempTracker tt;
98 A a(tt, 2);
99 while (A b = A(tt, 3, false))
100 A c(tt, 5);
101 A c(tt, 7);
103 return tt.Product;
108 TempTracker tt;
110 A a(tt, 2);
111 while (A b = A(tt, 3, true)) {
112 A c(tt, 5);
115 A c(tt, 7);
117 return tt.Product;
122 TempTracker tt;
124 A a(tt, 2);
125 for (A b = (A(tt, 3), A(tt, 5)), c = (A(tt, 7), A(tt, 11));;)
127 A c(tt, 13);
129 return tt.Product;
134 TempTracker tt;
136 (void)((A(tt, 2, false) && A(tt, 3, false)) || A(tt, 5, false));
138 return tt.Product;
143 TempTracker tt;
146 (void)((A(tt, 2) || A(tt, 3)) && A(tt, 5));
148 return tt.Product;