Home
last modified time | relevance | path

Searched defs:__pStart (Results 1 – 1 of 1) sorted by relevance

/device/board/unionman/unionpi_tiger/kernel/drivers/rtl88x2cs/include/
Dbasic_types.h199 #define LE_P4BYTE_TO_HOST_4BYTE(__pStart) (le32_to_cpu(*((u32 *)(__pStart)))) argument
200 #define LE_P2BYTE_TO_HOST_2BYTE(__pStart) (le16_to_cpu(*((u16 *)(__pStart)))) argument
201 #define LE_P1BYTE_TO_HOST_1BYTE(__pStart) ((*((u8 *)(__pStart)))) argument
206 #define BE_P4BYTE_TO_HOST_4BYTE(__pStart) (be32_to_cpu(*((u32 *)(__pStart)))) argument
207 #define BE_P2BYTE_TO_HOST_2BYTE(__pStart) (be16_to_cpu(*((u16 *)(__pStart)))) argument
208 #define BE_P1BYTE_TO_HOST_1BYTE(__pStart) ((*((u8 *)(__pStart)))) argument
214 #define LE_BITS_TO_4BYTE(__pStart, __BitOffset, __BitLen) \ argument
217 #define LE_BITS_TO_2BYTE(__pStart, __BitOffset, __BitLen) \ argument
220 #define LE_BITS_TO_1BYTE(__pStart, __BitOffset, __BitLen) \ argument
227 #define BE_BITS_TO_4BYTE(__pStart, __BitOffset, __BitLen) \ argument
[all …]