Lines Matching defs:a
47 #define DP_IS_END_TYPE(a) argument
48 #define DP_IS_END_SUBTYPE(a) ( ((a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE ) argument
50 #define DevicePathType(a) ( ((a)->Type) & EFI_DP_TYPE_MASK ) argument
51 #define DevicePathSubType(a) ( (a)->SubType ) argument
52 #define DevicePathNodeLength(a) ( ((a)->Length[0]) | ((a)->Length[1] << 8) ) argument
53 #define NextDevicePathNode(a) ( (EFI_DEVICE_PATH_PROTOCOL *) ( ((UINT8 *) (a)) + DevicePathNo… argument
55 #define IsDevicePathEndType(a) ( DevicePathType(a) == END_DEVICE_PATH_TYPE ) argument
56 #define IsDevicePathEndSubType(a) ( (a)->SubType == END_ENTIRE_DEVICE_PATH_SUBTYPE ) argument
57 #define IsDevicePathEnd(a) ( IsDevicePathEndType(a) && IsDevicePathEndSubType(a) ) argument
58 #define IsDevicePathUnpacked(a) ( (a)->Type & EFI_DP_TYPE_UNPACKED ) argument
61 #define SetDevicePathNodeLength(a,l) { \ argument
66 #define SetDevicePathEndNode(a) { \ argument