Lines Matching refs:MEMBER
210 #define KERNEL_ENVIRONMENT_IDX(MEMBER, IDX) \ argument
211 constexpr const unsigned MEMBER##Idx = IDX;
218 #define KERNEL_ENVIRONMENT_CONFIGURATION_IDX(MEMBER, IDX) \ argument
219 constexpr const unsigned MEMBER##Idx = IDX;
231 #define KERNEL_ENVIRONMENT_GETTER(MEMBER, RETURNTYPE) \ argument
232 RETURNTYPE *get##MEMBER##FromKernelEnvironment(ConstantStruct *KernelEnvC) { \
233 return cast<RETURNTYPE>(KernelEnvC->getAggregateElement(MEMBER##Idx)); \
241 #define KERNEL_ENVIRONMENT_CONFIGURATION_GETTER(MEMBER) \ in KERNEL_ENVIRONMENT_GETTER() argument
242 ConstantInt *get##MEMBER##FromKernelEnvironment( \ in KERNEL_ENVIRONMENT_GETTER()
246 return dyn_cast<ConstantInt>(ConfigC->getAggregateElement(MEMBER##Idx)); \ in KERNEL_ENVIRONMENT_GETTER()
3675 #define KERNEL_ENVIRONMENT_CONFIGURATION_SETTER(MEMBER) \ argument
3676 void set##MEMBER##OfKernelEnvironment(ConstantInt *NewVal) { \
3680 ConfigC, NewVal, {KernelInfo::MEMBER##Idx}); \