Lines Matching full:count

18   int count;
19 struct size_known * buf __counted_by(count);
23 int count;
25 struct size_unknown * buf __counted_by(count);
29 int count;
31 const struct size_unknown * buf __counted_by(count);
35 int count;
37 void* buf __counted_by(count);
41 int count;
42 // buffer of `count` function pointers is allowed
43 void (**fn_ptr)(void) __counted_by(count);
47 int count;
48 // buffer of `count` function pointers is allowed
49 fn_ptr_ty* fn_ptr __counted_by(count);
53 int count;
54 // buffer of `count` functions is not allowed
56 void (*fn_ptr)(void) __counted_by(count);
60 int count;
61 // buffer of `count` functions is not allowed
63 fn_ptr_ty fn_ptr __counted_by(count);
67 int count;
72 int count;
74 struct has_unannotated_vla* objects __counted_by(count);
78 int count;
79 int buffer[] __counted_by(count);
86 int count;
88 struct has_annotated_vla* objects __counted_by(count);
92 int count;
94 struct size_known *buf __counted_by(count);
100 int count;
102 struct size_known *buf __counted_by(count);
112 int count;
113 struct size_known *__counted_by(count) buf;
117 int count;
119 struct size_unknown * __counted_by(count) buf;
123 int count;
125 const struct size_unknown * __counted_by(count) buf;
129 int count;
131 void *__counted_by(count) buf;
137 int count;
138 // buffer of `count` function pointers is allowed
139 void (** __counted_by(count) fn_ptr)(void);
143 int count;
144 // buffer of `count` function pointers is allowed
145 fn_ptr_ty* __counted_by(count) fn_ptr;
149 int count;
150 // buffer of `count` functions is not allowed
152 void (* __counted_by(count) fn_ptr)(void);
156 int count;
157 // buffer of `count` functions is not allowed
159 fn_ptr_ty __counted_by(count) fn_ptr;
165 int count;
166 void (* __counted_by(count) * fn_ptr)(void);
170 int count;
172 struct has_unannotated_vla *__counted_by(count) objects;
179 int count;
181 struct has_annotated_vla* __counted_by(count) objects;
187 int count;
188 struct size_known *__counted_by(count) *buf;
192 int count;
193 struct size_known **__counted_by(count) buf;
197 int count;
199 struct size_known * __counted_by(count) buf;
205 int count;
207 struct size_known *__counted_by(count) buf;
215 int count;
217 int wrong_ty __counted_by(count);
221 int count;
224 void wrong_ty __counted_by(count);