Lines Matching full:sizeof
14 (void)sizeof(a); // \
15 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
16 (void)sizeof((((a)))); // \
17 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
18 (void)sizeof a; // \
19 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'int [10]'}}
20 (void)sizeof arr; // \
21 // expected-warning{{sizeof on array function parameter will return size of 'int *' instead of 'Arr' (aka 'int [10]')}}
25 (void)sizeof b;
27 (void)sizeof brr;
28 (void)sizeof(Arr);
29 (void)sizeof(int);