Lines Matching refs:d
306 #define RPL_EXPORT_DATA(t, d) \ argument
307 extern t d; \
308 void * const __attribute__((section(".export"))) dexport_ ## d = (void *)&d; \
309 t d
311 #define RPL_EXPORT_DATA_ARRAY(t, d, num) \ argument
312 extern t d[num]; \
313 void * const __attribute__((section(".export"))) dexport_ ## d = (void *)&d; \
314 t d[num]
320 #define RPL_EXPORT_CLASS_STATIC_DATA(t, c, d) \ argument
321 void * const __attribute__((section(".export"))) dexport_ ## c ## d = (void *)&c::d; \
322 t c::d
324 #define RPL_EXPORT_CLASS_STATIC_DATA_ARRAY(t, c, d, num) \ argument
325 void * const __attribute__((section(".export"))) dexport_ ## c ## d = (void *)&c::d; \
326 t c::d[num]