• Home
  • Raw
  • Download

Lines Matching refs:BIG

7 #define BIG 0x7f7f7f7f7f7f7f7fL  macro
44 c = (char) BIG; in test0()
45 c = (short) BIG; // expected-warning {{implicit conversion from 'short' to 'char' changes value}} in test0()
46 c = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'char' changes value}} in test0()
47 c = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'char' changes value}} in test0()
48 s = (char) BIG; in test0()
49 s = (short) BIG; in test0()
50 s = (int) BIG; // expected-warning {{implicit conversion from 'int' to 'short' changes value}} in test0()
51 s = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'short' changes value}} in test0()
52 i = (char) BIG; in test0()
53 i = (short) BIG; in test0()
54 i = (int) BIG; in test0()
55 i = (long) BIG; // expected-warning {{implicit conversion from 'long' to 'int' changes value}} in test0()
56 l = (char) BIG; in test0()
57 l = (short) BIG; in test0()
58 l = (int) BIG; in test0()
59 l = (long) BIG; in test0()
78 …return (long long) BIG; // expected-warning {{implicit conversion from 'long long' to 'char' chang… in test1_e()
81 return (long) BIG; // expected-warning {{implicit conversion from 'long' to 'char' changes value}} in test1_f()
84 return (int) BIG; // expected-warning {{implicit conversion from 'int' to 'char' changes value}} in test1_g()
87 …return (short) BIG; // expected-warning {{implicit conversion from 'short' to 'char' changes value… in test1_h()
90 return (char) BIG; in test1_i()
109 …return (long long) BIG; // expected-warning {{implicit conversion from 'long long' to 'short' cha… in test2_e()
112 …return (long) BIG; // expected-warning {{implicit conversion from 'long' to 'short' changes value… in test2_f()
115 return (int) BIG; // expected-warning {{implicit conversion from 'int' to 'short' changes value}} in test2_g()
118 return (short) BIG; in test2_h()
121 return (char) BIG; in test2_i()
140 …return (long long) BIG; // expected-warning {{implicit conversion from 'long long' to 'int' chang… in test3_f()
143 return (long) BIG; // expected-warning {{implicit conversion from 'long' to 'int' changes value}} in test3_g()
146 return (int) BIG; in test3_h()
149 return (short) BIG; in test3_i()
152 return (char) BIG; in test3_j()
171 return (long long) BIG; in test4_e()
174 return (long) BIG; in test4_f()
177 return (int) BIG; in test4_g()
180 return (short) BIG; in test4_h()
183 return (char) BIG; in test4_i()
192 return (long long) BIG; in test5()
193 return (long) BIG; in test5()
194 return (int) BIG; in test5()
195 return (short) BIG; in test5()
196 return (char) BIG; in test5()