Lines Matching full:indexes
8 …y[2] = 2; // expected-warning {{array index of '2' indexes past the end of an array (that contains… in foo()
9 …return x[2] + // expected-warning {{array index of '2' indexes past the end of an array (that con… in foo()
10 … y[-1] + // expected-warning {{array index of '-1' indexes before the beginning of the array}} in foo()
11 …x[sizeof(x)] + // expected-warning {{array index of '8' indexes past the end of an array (that co… in foo()
12 …x[sizeof(x) / sizeof(x[0])] + // expected-warning {{array index of '2' indexes past the end of an… in foo()
14 …x[sizeof(x[2])]; // expected-warning {{array index of '4' indexes past the end of an array (that c… in foo()
28 …int val = a[3]; // expected-warning {{array index of '3' indexes past the end of an array (that c… in f2()
41 …u.a[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (that contai… in test()
46 …array[const_subscript] = 0; // expected-warning {{array index of '3' indexes past the end of an a… in test()
52 …array2[3] = 0; // expected-warning {{array index of '3' indexes past the end of an array (that con… in test()
53 …array2[2+2] = 0; // expected-warning {{array index of '4' indexes past the end of an array (that c… in test()
59 …char c2 = str2[5]; // expected-warning {{array index of '5' indexes past the end of an array (that… in test()
62 …(*array_ptr)[3] = 1; // expected-warning {{array index of '3' indexes past the end of an array (th… in test()
70 …s.arr[4] = 0; // expected-warning {{array index of '4' indexes past the end of an array (that cont… in f()
71 …s.arr[I] = 0; // expected-warning {{array index of '5' indexes past the end of an array (that cont… in f()
84 …ARR_IN_MACRO(1, arr, SIZE); // expected-warning{{array index of '10' indexes past the end of an ar… in test_no_warn_macro_unreachable()
90 …return array[(unsigned long long) 100]; // expected-warning {{array index of '100' indexes past th… in test_pr9240()
108 …arr[3] = 42; // expected-warning{{array index of '3' indexes past the end of an array (that contai… in pr9284b()
127 …sizeof(char) ? arr[2] : arr[1]; // expected-warning {{array index of '2' indexes past the end of a… in test_sizeof_as_condition()
139 …arr[2] = 1; // expected-warning {{array index of '2' indexes past the end of an array (that contai… in test_switch()