Lines Matching +full:- +full:e
11 // Options: --no-includes --include-headers
23 //----------------------------------------------------------
25 //----------------------------------------------------------
29 T[] E;
32 * (sizeof(E)/sizeof(*E))
34 * (sizeof(E)/sizeof(E[...]))
36 * (sizeof(E)/sizeof(T))
39 //----------------------------------------------------------
41 //----------------------------------------------------------
45 T[] E;
48 - (sizeof(E)/sizeof(*E))
49 + ARRAY_SIZE(E)
51 - (sizeof(E)/sizeof(E[...]))
52 + ARRAY_SIZE(E)
54 - (sizeof(E)/sizeof(T))
55 + ARRAY_SIZE(E)
58 //----------------------------------------------------------
60 //----------------------------------------------------------
64 T[] E;
68 (sizeof(E)@p /sizeof(*E))
70 (sizeof(E)@p /sizeof(E[...]))
72 (sizeof(E)@p /sizeof(T))