Searched refs:_p (Results 1 – 2 of 2) sorted by relevance
/tf-a-ffa_el3_spmc/include/common/ |
A D | param_header.h | 21 #define SET_PARAM_HEAD(_p, _type, _ver, _attr) do { \ argument 22 (_p)->h.type = (uint8_t)(_type); \ 23 (_p)->h.version = (uint8_t)(_ver); \ 24 (_p)->h.size = (uint16_t)sizeof(*(_p)); \ 25 (_p)->h.attr = (uint32_t)(_attr) ; \ 29 #define SET_STATIC_PARAM_HEAD(_p, _type, _ver, _p_type, _attr) \ argument 30 ._p.h.type = (uint8_t)(_type), \ 31 ._p.h.version = (uint8_t)(_ver), \ 32 ._p.h.size = (uint16_t)sizeof(_p_type), \ 33 ._p.h.attr = (uint32_t)(_attr)
|
/tf-a-ffa_el3_spmc/include/lib/psci/ |
A D | psci_lib.h | 52 #define SET_PSCI_LIB_ARGS_V1(_p, _entry) do { \ argument 53 SET_PARAM_HEAD(_p, PARAM_PSCI_LIB_ARGS, VERSION_1, 0); \ 54 (_p)->mailbox_ep = (_entry); \ 68 #define VERIFY_PSCI_LIB_ARGS_V1(_p) (((_p) != NULL) \ argument 69 && ((_p)->h.type == PARAM_PSCI_LIB_ARGS) \ 70 && ((_p)->h.version == VERSION_1) \ 71 && ((_p)->h.size == sizeof(*(_p))) \ 72 && ((_p)->h.attr == 0) \ 73 && ((_p)->mailbox_ep != NULL))
|
Completed in 2 milliseconds