Lines Matching defs:t

73   { int t = x + I; assert (t == 6); }  in Foo1()  local
74 { int t = x - I; assert (t == 6); } in Foo1() local
75 { int t = x * I; assert (t == 6); } in Foo1() local
76 { int t = x / I; assert (t == 6); } in Foo1() local
77 { int t = (x+=I); assert (t == 6); } in Foo1() local
79 { int t = x % I; assert (t == 7); } in Foo1() local
80 { int t = x << I; assert (t == 7); } in Foo1() local
81 { int t = x | I; assert (t == 7); } in Foo1() local
82 { int t = x && I; assert (t == 7); } in Foo1() local
83 { int t = x || I; assert (t == 7); } in Foo1() local
84 { int t = x != I; assert (t == 7); } in Foo1() local
85 { int t = x < I; assert (t == 7); } in Foo1() local
86 { int t = x <= I; assert (t == 7); } in Foo1() local
87 { int t = x > I; assert (t == 7); } in Foo1() local
88 { int t = x >= I; assert (t == 7); } in Foo1() local
89 { int t = *x; assert (t == 7); } in Foo1() local
90 { int t = !x; assert (t == 7); } in Foo1() local
91 { int t = ~x; assert (t == 7); } in Foo1() local
92 { int t = x++; assert (t == 7); } in Foo1() local
93 { int t = x--; assert (t == 7); } in Foo1() local
94 { int t = ++x; assert (t == 107); } in Foo1() local
95 { int t = --x; assert (t == 107); } in Foo1() local
96 { int t = x (); assert (t == 7); } in Foo1() local
97 { int t = (x, I); assert (t == 7); } in Foo1() local
98 { int t = x[I]; assert (t == 7); } in Foo1() local
99 { int t = (x-=I); assert (t == 7); } in Foo1() local
100 { int t = (x/=I); assert (t == 7); } in Foo1() local
101 { int t = (x*=I); assert (t == 7); } in Foo1() local
103 { int t = x >> I; assert (t == 8); } in Foo1() local
104 { int t = x & I; assert (t == 8); } in Foo1() local
105 { int t = &x; assert (t == 8); } in Foo1() local
106 { int t = x == I; assert (t == 8); } in Foo1() local
114 { int t = x + I; assert (t == 6); } in Foo2() local
115 { int t = x - I; assert (t == 6); } in Foo2() local
116 { int t = x * I; assert (t == 6); } in Foo2() local
117 { int t = x / I; assert (t == 6); } in Foo2() local
118 { int t = (x+=I); assert (t == 6); } in Foo2() local
120 { int t = x % I; assert (t == 7); } in Foo2() local
121 { int t = x >> I; assert (t == 7); } in Foo2() local
122 { int t = x << I; assert (t == 7); } in Foo2() local
123 { int t = x | I; assert (t == 7); } in Foo2() local
124 { int t = x && I; assert (t == 7); } in Foo2() local
125 { int t = x || I; assert (t == 7); } in Foo2() local
126 { int t = x == I; assert (t == 7); } in Foo2() local
127 { int t = x != I; assert (t == 7); } in Foo2() local
128 { int t = x < I; assert (t == 7); } in Foo2() local
129 { int t = x <= I; assert (t == 7); } in Foo2() local
130 { int t = x > I; assert (t == 7); } in Foo2() local
131 { int t = x >= I; assert (t == 7); } in Foo2() local
132 { int t = *x; assert (t == 7); } in Foo2() local
133 { int t = !x; assert (t == 7); } in Foo2() local
134 { int t = ~x; assert (t == 7); } in Foo2() local
135 { int t = x++; assert (t == 7); } in Foo2() local
136 { int t = x--; assert (t == 7); } in Foo2() local
137 { int t = ++x; assert (t == 107); } in Foo2() local
138 { int t = --x; assert (t == 107); } in Foo2() local
139 { int t = x (); assert (t == 7); } in Foo2() local
140 { int t = (x, I); assert (t == 7); } in Foo2() local
141 { int t = x[I]; assert (t == 7); } in Foo2() local
142 { int t = &x; assert (t == 7); } in Foo2() local
143 { int t = (x-=I); assert (t == 7); } in Foo2() local
144 { int t = (x/=I); assert (t == 7); } in Foo2() local
145 { int t = (x*=I); assert (t == 7); } in Foo2() local
146 { int t = x & I; assert (t == 7); } in Foo2() local
155 { int t = x + I; assert (t == 6); } in Foo3() local
156 { int t = x - I; assert (t == 6); } in Foo3() local
157 { int t = x * I; assert (t == 6); } in Foo3() local
158 { int t = x / I; assert (t == 6); } in Foo3() local
159 { int t = (x+=I); assert (t == 6); } in Foo3() local
161 { int t = x % I; assert (t == 7); } in Foo3() local
162 { int t = x << I; assert (t == 7); } in Foo3() local
163 { int t = x | I; assert (t == 7); } in Foo3() local
164 { int t = x && I; assert (t == 7); } in Foo3() local
165 { int t = x || I; assert (t == 7); } in Foo3() local
166 { int t = x == I; assert (t == 7); } in Foo3() local
167 { int t = x != I; assert (t == 7); } in Foo3() local
168 { int t = x < I; assert (t == 7); } in Foo3() local
169 { int t = x <= I; assert (t == 7); } in Foo3() local
170 { int t = x > I; assert (t == 7); } in Foo3() local
171 { int t = x >= I; assert (t == 7); } in Foo3() local
172 { int t = *x; assert (t == 7); } in Foo3() local
173 { int t = !x; assert (t == 7); } in Foo3() local
174 { int t = ~x; assert (t == 7); } in Foo3() local
175 { int t = x++; assert (t == 7); } in Foo3() local
176 { int t = x--; assert (t == 7); } in Foo3() local
177 { int t = ++x; assert (t == 107); } in Foo3() local
178 { int t = --x; assert (t == 107); } in Foo3() local
179 { int t = x (); assert (t == 7); } in Foo3() local
180 { int t = (x, I); assert (t == 7); } in Foo3() local
181 { int t = x[I]; assert (t == 7); } in Foo3() local
182 { int t = (x-=I); assert (t == 7); } in Foo3() local
183 { int t = (x/=I); assert (t == 7); } in Foo3() local
184 { int t = (x*=I); assert (t == 7); } in Foo3() local
186 { int t = x & I; assert (t == 7); } in Foo3() local
187 { int t = x >> I; assert (t == 8); } in Foo3() local
188 { int t = &x; assert (t == 8); } in Foo3() local
196 { int t = operator+ (x, I); assert (t == 6); } in Foo4() local
197 { int t = operator- (x, I); assert (t == 6); } in Foo4() local
198 { int t = operator* (x, I); assert (t == 6); } in Foo4() local
199 { int t = operator/ (x, I); assert (t == 6); } in Foo4() local
200 { int t = operator+= (x, I); assert (t == 6); } in Foo4() local
202 { int t = x.operator% (I); assert (t == 7); } in Foo4() local
203 { int t = x.operator<< (I); assert (t == 7); } in Foo4() local
204 { int t = x.operator| (I); assert (t == 7); } in Foo4() local
205 { int t = x.operator&& (I); assert (t == 7); } in Foo4() local
206 { int t = x.operator|| (I); assert (t == 7); } in Foo4() local
207 { int t = x.operator!= (I); assert (t == 7); } in Foo4() local
208 { int t = x.operator< (I); assert (t == 7); } in Foo4() local
209 { int t = x.operator<= (I); assert (t == 7); } in Foo4() local
210 { int t = x.operator> (I); assert (t == 7); } in Foo4() local
211 { int t = x.operator>= (I); assert (t == 7); } in Foo4() local
212 { int t = x.operator* (); assert (t == 7); } in Foo4() local
213 { int t = x.operator! (); assert (t == 7); } in Foo4() local
214 { int t = x.operator~ (); assert (t == 7); } in Foo4() local
215 { int t = x.operator++ (0); assert (t == 7); } in Foo4() local
216 { int t = x.operator-- (0); assert (t == 7); } in Foo4() local
217 { int t = x.operator++ (); assert (t == 107); } in Foo4() local
218 { int t = x.operator-- (); assert (t == 107); } in Foo4() local
219 { int t = x.operator() (); assert (t == 7); } in Foo4() local
220 { int t = x.operator, (I); assert (t == 7); } in Foo4() local
221 { int t = x.operator[] (I); assert (t == 7); } in Foo4() local
222 { int t = x.operator-= (I); assert (t == 7); } in Foo4() local
223 { int t = x.operator/= (I); assert (t == 7); } in Foo4() local
224 { int t = x.operator*= (I); assert (t == 7); } in Foo4() local
226 { int t = x.operator>> (I); assert (t == 8); } in Foo4() local
227 { int t = x.operator& (); assert (t == 8); } in Foo4() local
228 { int t = x.operator& (I); assert (t == 8); } in Foo4() local
229 { int t = operator== (x, I); assert (t == 8); } in Foo4() local