Lines Matching full:short
18 (a == (unsigned short) b) +
22 ((short) a == b) + // expected-warning {{comparison of integers of different signs}}
26 ((short) a == (unsigned short) b) +
30 (a < (unsigned short) b) +
34 ((short) a < b) + // expected-warning {{comparison of integers of different signs}}
38 ((short) a < (unsigned short) b) +
44 (A == (unsigned short) b) +
48 ((short) A == b) +
52 ((short) A == (unsigned short) b) +
56 (A < (unsigned short) b) +
60 ((short) A < b) +
64 ((short) A < (unsigned short) b) +
70 (a == (unsigned short) B) +
74 ((short) a == B) +
78 ((short) a == (unsigned short) B) +
82 (a < (unsigned short) B) +
86 ((short) a < B) +
90 ((short) a < (unsigned short) B) +
96 (C == (unsigned short) b) + // expected-warning {{comparison of constant 'C' (65536) with expression of type 'unsigned short' is always false}}
100 ((short) C == b) +
104 ((short) C == (unsigned short) b) +
108 (C < (unsigned short) b) + // expected-warning {{comparison of constant 'C' (65536) with expression of type 'unsigned short' is always false}}
112 ((short) C < b) +
116 ((short) C < (unsigned short) b) +
122 (a == (unsigned short) C) +
126 ((short) a == C) + // expected-warning {{comparison of constant 'C' (65536) with expression of type 'short' is always false}}
130 ((short) a == (unsigned short) C) +
134 (a < (unsigned short) C) +
138 ((short) a < C) + // expected-warning {{comparison of constant 'C' (65536) with expression of type 'short' is always true}}
142 ((short) a < (unsigned short) C) +
148 (0x80000 == (unsigned short) b) + // expected-warning {{comparison of constant 524288 with expression of type 'unsigned short' is always false}}
152 ((short) 0x80000 == b) +
156 ((short) 0x80000 == (unsigned short) b) +
160 (0x80000 < (unsigned short) b) + // expected-warning {{comparison of constant 524288 with expression of type 'unsigned short' is always false}}
164 ((short) 0x80000 < b) +
168 ((short) 0x80000 < (unsigned short) b) +
174 (a == (unsigned short) 0x80000) +
178 ((short) a == 0x80000) + // expected-warning {{comparison of constant 524288 with expression of type 'short' is always false}}
182 ((short) a == (unsigned short) 0x80000) +
186 (a < (unsigned short) 0x80000) +
190 ((short) a < 0x80000) + // expected-warning {{comparison of constant 524288 with expression of type 'short' is always true}}
194 ((short) a < (unsigned short) 0x80000) +
265 unsigned short x, y;