Lines Matching refs:rc

6 	int rc = 0;  in test()  local
9 rc += __builtin_add_overflow(i, i, &i); in test()
10 rc += __builtin_add_overflow(l, i, &i); in test()
11 rc += __builtin_add_overflow(i, l, &i); in test()
12 rc += __builtin_add_overflow(i, i, &l); in test()
13 rc += __builtin_add_overflow(ll, i, &i); in test()
14 rc += __builtin_add_overflow(i, ll, &i); in test()
15 rc += __builtin_add_overflow(i, i, &ll); in test()
17 rc += __builtin_add_overflow_p(i, i, i); in test()
18 rc += __builtin_add_overflow_p(l, i, i); in test()
19 rc += __builtin_add_overflow_p(i, l, i); in test()
20 rc += __builtin_add_overflow_p(i, i, l); in test()
21 rc += __builtin_add_overflow_p(ll, i, i); in test()
22 rc += __builtin_add_overflow_p(i, ll, i); in test()
23 rc += __builtin_add_overflow_p(i, i, ll); in test()
25 rc += __builtin_sub_overflow(i, i, &i); in test()
26 rc += __builtin_sub_overflow(l, i, &i); in test()
27 rc += __builtin_sub_overflow(i, l, &i); in test()
28 rc += __builtin_sub_overflow(i, i, &l); in test()
29 rc += __builtin_sub_overflow(ll, i, &i); in test()
30 rc += __builtin_sub_overflow(i, ll, &i); in test()
31 rc += __builtin_sub_overflow(i, i, &ll); in test()
33 rc += __builtin_sub_overflow_p(i, i, i); in test()
34 rc += __builtin_sub_overflow_p(l, i, i); in test()
35 rc += __builtin_sub_overflow_p(i, l, i); in test()
36 rc += __builtin_sub_overflow_p(i, i, l); in test()
37 rc += __builtin_sub_overflow_p(ll, i, i); in test()
38 rc += __builtin_sub_overflow_p(i, ll, i); in test()
39 rc += __builtin_sub_overflow_p(i, i, ll); in test()
41 rc += __builtin_mul_overflow(i, i, &i); in test()
42 rc += __builtin_mul_overflow(l, i, &i); in test()
43 rc += __builtin_mul_overflow(i, l, &i); in test()
44 rc += __builtin_mul_overflow(i, i, &l); in test()
45 rc += __builtin_mul_overflow(ll, i, &i); in test()
46 rc += __builtin_mul_overflow(i, ll, &i); in test()
47 rc += __builtin_mul_overflow(i, i, &ll); in test()
49 rc += __builtin_mul_overflow_p(i, i, i); in test()
50 rc += __builtin_mul_overflow_p(l, i, i); in test()
51 rc += __builtin_mul_overflow_p(i, l, i); in test()
52 rc += __builtin_mul_overflow_p(i, i, l); in test()
53 rc += __builtin_mul_overflow_p(ll, i, i); in test()
54 rc += __builtin_mul_overflow_p(i, ll, i); in test()
55 rc += __builtin_mul_overflow_p(i, i, ll); in test()
58 rc += __builtin_add_overflow(); in test()
59 rc += __builtin_add_overflow(i); in test()
60 rc += __builtin_add_overflow(i, i); in test()
61 rc += __builtin_add_overflow(i, i, &i, i); in test()
62 rc += __builtin_add_overflow(e, i, &i); in test()
63 rc += __builtin_add_overflow(i, e, &i); in test()
64 rc += __builtin_add_overflow(i, i, &e); in test()
65 rc += __builtin_add_overflow(b, i, &i); in test()
66 rc += __builtin_add_overflow(i, b, &i); in test()
67 rc += __builtin_add_overflow(i, i, &b); in test()
68 rc += __builtin_add_overflow(i, i, p); in test()
70 rc += __builtin_add_overflow_p(); in test()
71 rc += __builtin_add_overflow_p(i); in test()
72 rc += __builtin_add_overflow_p(i, i); in test()
73 rc += __builtin_add_overflow_p(i, i, i, i); in test()
74 rc += __builtin_add_overflow_p(e, i, i); in test()
75 rc += __builtin_add_overflow_p(i, e, i); in test()
76 rc += __builtin_add_overflow_p(i, i, e); in test()
77 rc += __builtin_add_overflow_p(b, i, i); in test()
78 rc += __builtin_add_overflow_p(i, b, i); in test()
79 rc += __builtin_add_overflow_p(i, i, b); in test()
80 rc += __builtin_add_overflow_p(i, i, p); in test()
82 rc += __builtin_sub_overflow(); in test()
83 rc += __builtin_sub_overflow(i); in test()
84 rc += __builtin_sub_overflow(i, i); in test()
85 rc += __builtin_sub_overflow(i, i, &i, i); in test()
86 rc += __builtin_sub_overflow(e, i, &i); in test()
87 rc += __builtin_sub_overflow(i, e, &i); in test()
88 rc += __builtin_sub_overflow(i, i, &e); in test()
89 rc += __builtin_sub_overflow(b, i, &i); in test()
90 rc += __builtin_sub_overflow(i, b, &i); in test()
91 rc += __builtin_sub_overflow(i, i, &b); in test()
92 rc += __builtin_sub_overflow(i, i, p); in test()
94 rc += __builtin_sub_overflow_p(); in test()
95 rc += __builtin_sub_overflow_p(i); in test()
96 rc += __builtin_sub_overflow_p(i, i); in test()
97 rc += __builtin_sub_overflow_p(i, i, i, i); in test()
98 rc += __builtin_sub_overflow_p(e, i, i); in test()
99 rc += __builtin_sub_overflow_p(i, e, i); in test()
100 rc += __builtin_sub_overflow_p(i, i, e); in test()
101 rc += __builtin_sub_overflow_p(b, i, i); in test()
102 rc += __builtin_sub_overflow_p(i, b, i); in test()
103 rc += __builtin_sub_overflow_p(i, i, b); in test()
104 rc += __builtin_sub_overflow_p(i, i, p); in test()
106 rc += __builtin_mul_overflow(); in test()
107 rc += __builtin_mul_overflow(i); in test()
108 rc += __builtin_mul_overflow(i, i); in test()
109 rc += __builtin_mul_overflow(i, i, &i, i); in test()
110 rc += __builtin_mul_overflow(e, i, &i); in test()
111 rc += __builtin_mul_overflow(i, e, &i); in test()
112 rc += __builtin_mul_overflow(i, i, &e); in test()
113 rc += __builtin_mul_overflow(b, i, &i); in test()
114 rc += __builtin_mul_overflow(i, b, &i); in test()
115 rc += __builtin_mul_overflow(i, i, &b); in test()
116 rc += __builtin_mul_overflow(i, i, p); in test()
118 rc += __builtin_mul_overflow_p(); in test()
119 rc += __builtin_mul_overflow_p(i); in test()
120 rc += __builtin_mul_overflow_p(i, i); in test()
121 rc += __builtin_mul_overflow_p(i, i, i, i); in test()
122 rc += __builtin_mul_overflow_p(e, i, i); in test()
123 rc += __builtin_mul_overflow_p(i, e, i); in test()
124 rc += __builtin_mul_overflow_p(i, i, e); in test()
125 rc += __builtin_mul_overflow_p(b, i, i); in test()
126 rc += __builtin_mul_overflow_p(i, b, i); in test()
127 rc += __builtin_mul_overflow_p(i, i, b); in test()
128 rc += __builtin_mul_overflow_p(i, i, p); in test()
130 return rc; in test()