Lines Matching refs:macro
15 * Include all the headers with public APIs in case they define a macro to its
83 * Helper macros to convert a macro or its expansion into a string
87 #define MACRO_EXPANSION_TO_STR(macro) MACRO_NAME_TO_STR(macro)
88 #define MACRO_NAME_TO_STR(macro) \
89 mbedtls_printf("%s", strlen( #macro "") > 0 ? #macro "\n" : "")
91 #define STRINGIFY(macro) #macro
92 #define OUTPUT_MACRO_NAME_VALUE(macro) mbedtls_printf( #macro "%s\n", \
93 (STRINGIFY(macro) "")[0] != 0 ? "=" STRINGIFY( \
94 macro) : "")
100 * the macro MBEDTLS_EXPANSION_TO_STR is being invoked without arguments as