Home | History | Annotate | Download | only in Sema

Lines Matching full:sizeof

35 short chk1[sizeof(T)       == 3 ? 1 : -1];
36 short chk2[sizeof(T[1]) == 4 ? 1 : -1];
37 short chk3[sizeof(T[2]) == 6 ? 1 : -1];
38 short chk4[sizeof(T[2][1]) == 8 ? 1 : -1];
39 short chk5[sizeof(T[1][2]) == 6 ? 1 : -1];
45 short chk1[sizeof(T2) == 4 ? 1 : -1];
46 short chk2[sizeof(T2[1]) == 4 ? 1 : -1];
47 short chk3[sizeof(T2[2]) == 8 ? 1 : -1];
48 short chk4[sizeof(T2[2][1]) == 8 ? 1 : -1];
49 short chk5[sizeof(T2[1][2]) == 8 ? 1 : -1];