Lines Matching refs:impl
126 #define CALL(impl, ...) \ argument
127 (* (proto_t) (impl)->fn) (__VA_ARGS__)
136 # define FOR_EACH_IMPL(impl, notall) \ argument
137 impl_t *impl; \
146 for (impl = __start_impls; impl < __stop_impls; ++impl) \
147 if (strcmp (impl->name, TEST_NAME) == 0) \
148 skip = impl; \
153 for (impl = __start_impls; impl < __stop_impls; ++impl) \
154 if (impl != skip) \
155 *a++ = *impl; \
172 impl = impl_array; \
173 for (count = 0; count < impl_count; ++count, ++impl) \
174 if (!notall || impl->test)
176 # define FOR_EACH_IMPL(impl, notall) \ argument
177 for (impl_t *impl = __start_impls; impl < __stop_impls; ++impl) \
178 if (!notall || impl->test)