Lines Matching refs:n_desc
979 uint16_t n_desc; member
986 int16_t n_desc; member
994 uint16_t n_desc; member
1242 sys::swapByteOrder(S.n_desc); in swapStruct()
1247 sys::swapByteOrder(sym.n_desc); in swapStruct()
1253 sys::swapByteOrder(sym.n_desc); in swapStruct()
1289 static inline uint16_t GET_LIBRARY_ORDINAL(uint16_t n_desc) { in GET_LIBRARY_ORDINAL() argument
1290 return (((n_desc) >> 8u) & 0xffu); in GET_LIBRARY_ORDINAL()
1293 static inline void SET_LIBRARY_ORDINAL(uint16_t &n_desc, uint8_t ordinal) { in SET_LIBRARY_ORDINAL() argument
1294 n_desc = (((n_desc) & 0x00ff) | (((ordinal) & 0xff) << 8)); in SET_LIBRARY_ORDINAL()
1297 static inline uint8_t GET_COMM_ALIGN (uint16_t n_desc) { in GET_COMM_ALIGN() argument
1298 return (n_desc >> 8u) & 0x0fu; in GET_COMM_ALIGN()
1301 static inline void SET_COMM_ALIGN (uint16_t &n_desc, uint8_t align) { in SET_COMM_ALIGN() argument
1302 n_desc = ((n_desc & 0xf0ffu) | ((align & 0x0fu) << 8u)); in SET_COMM_ALIGN()