Lines Matching refs:a_prefix
197 #define ph_proto(a_attr, a_prefix, a_ph_type, a_type) \ argument
198 a_attr void a_prefix##new(a_ph_type *ph); \
199 a_attr bool a_prefix##empty(a_ph_type *ph); \
200 a_attr a_type *a_prefix##first(a_ph_type *ph); \
201 a_attr a_type *a_prefix##any(a_ph_type *ph); \
202 a_attr void a_prefix##insert(a_ph_type *ph, a_type *phn); \
203 a_attr a_type *a_prefix##remove_first(a_ph_type *ph); \
204 a_attr a_type *a_prefix##remove_any(a_ph_type *ph); \
205 a_attr void a_prefix##remove(a_ph_type *ph, a_type *phn);
211 #define ph_gen(a_attr, a_prefix, a_ph_type, a_type, a_field, a_cmp) \ argument
213 a_prefix##new(a_ph_type *ph) { \
217 a_prefix##empty(a_ph_type *ph) { \
221 a_prefix##first(a_ph_type *ph) { \
229 a_prefix##any(a_ph_type *ph) { \
240 a_prefix##insert(a_ph_type *ph, a_type *phn) { \
267 a_prefix##remove_first(a_ph_type *ph) { \
283 a_prefix##remove_any(a_ph_type *ph) { \
310 a_prefix##remove(a_ph_type *ph, a_type *phn) { \