Lines Matching defs:a
51 #define DECODE_ERROR(a) (unsigned long)(a & ~MAX_BIT) argument
63 #define DP_IS_END_TYPE(a) argument
64 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE ) argument
66 #define DevicePathType(a) ( ((a)->Type) & EFI_DP_TYPE_MASK ) argument
67 #define DevicePathSubType(a) ( (a)->SubType ) argument
68 #define DevicePathNodeLength(a) ((size_t)(((a)->Length[0]) | ((a)->Length[1] << 8))) argument
69 #define NextDevicePathNode(a) ( (EFI_DEVICE_PATH *) ( ((UINT8 *) (a)) + DevicePathNodeLength(… argument
70 #define IsDevicePathType(a, t) ( DevicePathType(a) == t ) argument
71 #define IsDevicePathEndType(a) IsDevicePathType(a, END_DEVICE_PATH_TYPE) argument
72 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE ) argument
73 #define IsDevicePathEnd(a) ( IsDevicePathEndType(a) && IsDevicePathEndSubType(a) ) argument
74 #define IsDevicePathUnpacked(a) ( (a)->Type & EFI_DP_TYPE_UNPACKED ) argument
77 #define SetDevicePathNodeLength(a,l) { \ argument
82 #define SetDevicePathEndNode(a) { \ argument