Home
last modified time | relevance | path

Searched refs:KALLOC_DISPATCH (Results 1 – 1 of 1) sorted by relevance

/xnu-8020.101.4/osfmk/kern/
H A Dkalloc.h498 #define KALLOC_TYPE_VAR_DEFINE(...) KALLOC_DISPATCH(KALLOC_TYPE_VAR_DEFINE, ##__VA_ARGS__)
641 #define kalloc_type(...) KALLOC_DISPATCH(kalloc_type, ##__VA_ARGS__)
662 #define kfree_type(...) KALLOC_DISPATCH(kfree_type, ##__VA_ARGS__)
665 #define kalloc_type_site(...) KALLOC_DISPATCH(kalloc_type_site, ##__VA_ARGS__)
666 #define kalloc_type_tag(...) KALLOC_DISPATCH(kalloc_type_tag, ##__VA_ARGS__)
667 #define krealloc_type_site(...) KALLOC_DISPATCH(krealloc_type_site, ##__VA_ARGS__)
668 #define krealloc_type(...) KALLOC_DISPATCH(krealloc_type, ##__VA_ARGS__)
1025 #define KALLOC_DISPATCH(base, ...) \ macro