Lines Matching full:char
6 char stackBased1 () {
7 char buf[2];
12 char stackBased2 () {
13 char buf[2];
19 char stackBased3 (int *x) {
20 char buf[2];
29 char heapBased1 () {
30 char *buf = malloc(2);
32 char result = buf[1]; // expected-warning{{undefined}}
37 char heapBased2 () {
38 char *buf = malloc(2);
40 char result = buf[0]; // expected-warning{{undefined}}