• Home
  • Raw
  • Download

Lines Matching full:which

11 …y[2] = 2; // expected-warning {{array index 2 is past the end of the array (which contains 2 eleme…  in foo()
12 …z[1] = 'x'; // expected-warning {{array index 1 is past the end of the array (which contains 1 ele… in foo()
13 …w[0][2] = 0; // expected-warning {{array index 2 is past the end of the array (which contains 1 el… in foo()
14 …v[0][0][2] = 0; // expected-warning {{array index 2 is past the end of the array (which contains 1… in foo()
15 …return x[2] + // expected-warning {{array index 2 is past the end of the array (which contains 2 … in foo()
17 …x[sizeof(x)] + // expected-warning {{array index 8 is past the end of the array (which contains 2… in foo()
18 …0])] + // expected-warning {{array index 2 is past the end of the array (which contains 2 element… in foo()
20 …x[sizeof(x[2])]; // expected-warning {{array index 4 is past the end of the array (which contains … in foo()
34 …int val = a[3]; // expected-warning {{array index 3 is past the end of the array (which contains … in f2()
47 …u.a[3] = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2 ele… in test()
50 …p = &u.a[3]; // expected-warning {{array index 3 is past the end of the array (which contains 2 el… in test()
51 …*(&u.a[2]) = 1; // expected-warning {{array index 2 is past the end of the array (which contains 2… in test()
52 …*(&u.a[3]) = 1; // expected-warning {{array index 3 is past the end of the array (which contains 2… in test()
57 …] = 0; // expected-warning {{array index 3 is past the end of the array (which contains 2 element… in test()
63 …array2[3] = 0; // expected-warning {{array index 3 is past the end of the array (which contains 3 … in test()
64 …array2[2+2] = 0; // expected-warning {{array index 4 is past the end of the array (which contains … in test()
70 …char c2 = str2[5]; // expected-warning {{array index 5 is past the end of the array (which contain… in test()
73 …(*array_ptr)[3] = 1; // expected-warning {{array index 3 is past the end of the array (which conta… in test()
81 …s.arr[4] = 0; // expected-warning 2 {{array index 4 is past the end of the array (which contains 3… in f()
82 …s.arr[I] = 0; // expected-warning {{array index 5 is past the end of the array (which contains 3 e… in f()
95 … SIZE); // expected-warning{{array index 10 is past the end of the array (which contains 10 elemen… in test_no_warn_macro_unreachable()
101 …100]; // expected-warning {{array index 100 is past the end of the array (which contains 100 eleme… in test_pr9240()
119 …arr[3] = 42; // expected-warning{{array index 3 is past the end of the array (which contains 3 ele… in pr9284b()
138 …arr[1]; // expected-warning {{array index 2 is past the end of the array (which contains 2 element… in test_sizeof_as_condition()
150 …arr[2] = 1; // expected-warning {{array index 2 is past the end of the array (which contains 2 ele… in test_switch()
202 …return F->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains… in bar()
204 …B->c1[3] + // expected-warning {{array index 3 is past the end of the array (which contains 1 elem… in bar()
215 …return F->c[3] + // expected-warning {{array index 3 is past the end of the array (which contains … in test()
216 …B->c[3]; // expected-warning {{array index 3 is past the end of the array (which contains 1 elemen… in test()
223 …bar(foo[5]); // expected-warning {{array index 5 is past the end of the array (which contains 5 el… in test_more()
224 …++foo[5]; // expected-warning {{array index 5 is past the end of the array (which contains 5 eleme… in test_more()
225 …if (foo[6]) // expected-warning {{array index 6 is past the end of the array (which contains 5 ele… in test_more()
226 …return --foo[6]; // expected-warning {{array index 6 is past the end of the array (which contains … in test_more()
228 …return foo[5]; // expected-warning {{array index 5 is past the end of the array (which contains 5 … in test_more()
237 …'; // expected-warning {{array index 32768 is past the end of the array (which contains 32768 ele… in test_pr10771()