Home
last modified time | relevance | path

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

/tf-a-ffa_el3_spmc/include/lib/extensions/
A Dras_arch.h75 #define ERR_STATUS_GET_FIELD(_status, _field) \ argument
76 (((_status) >> ERR_STATUS_ ##_field ##_SHIFT) & ERR_STATUS_ ##_field ##_MASK)
78 #define ERR_STATUS_CLR_FIELD(_status, _field) \ argument
79 (_status) &= ~(ERR_STATUS_ ##_field ##_MASK << ERR_STATUS_ ##_field ##_SHIFT)
81 #define ERR_STATUS_SET_FIELD(_status, _field, _value) \ argument
82 (_status) |= (((_value) & ERR_STATUS_ ##_field ##_MASK) << ERR_STATUS_ ##_field ##_SHIFT)
84 #define ERR_STATUS_WRITE_FIELD(_status, _field, _value) do { \ argument
85 ERR_STATUS_CLR_FIELD(_status, _field, _value); \
86 ERR_STATUS_SET_FIELD(_status, _field, _value); \

Completed in 5 milliseconds