Searched refs:u16 (Results 1 – 4 of 4) sorted by relevance
14 typedef unsigned u16; typedef31 static u16 FI( u16 in, u16 subkey ) in FI()33 u16 nine, seven; in FI()34 static const u16 S7[128] = { in FI()43 static const u16 S9[512] = { in FI()80 nine = (u16)(in>>7)&0x1FF; in FI()81 seven = (u16)(in&0x7F); in FI()84 nine = (u16)(S9[nine] ^ seven); in FI()85 seven = (u16)(S7[seven] ^ (nine & 0x7F)); in FI()88 nine = (u16)(S9[nine] ^ seven); in FI()[all …]
13 #define IMX_MU_DATA_U16(mesg, idx) ((mesg)->data.u16[(idx)])46 uint16_t u16[IMX_MU_MSG_SIZE * 2]; member
32 QSORT_HELPER(u16, uint16_t);
359 static void u16_to_bytes(uint16_t u16, uint8_t *bytes) in u16_to_bytes() argument361 *bytes = (uint8_t) (u16 >> 8); in u16_to_bytes()362 *(bytes + 1) = (uint8_t) u16; in u16_to_bytes()365 static void bytes_to_u16(uint8_t *bytes, uint16_t *u16) in bytes_to_u16() argument367 *u16 = (uint16_t) ((*bytes << 8) + *(bytes + 1)); in bytes_to_u16()