Searched refs:u16 (Results 1 – 3 of 3) 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()81 seven = (u16)(in&0x7F); in FI()95 u16 left, right; in FO()98 left = (u16)(in>>16); in FO()99 right = (u16) in&0xFFFF; in FO()119 u16 l, r, a, b; in FL()121 l = (u16)(in>>16); in FL()[all …]
13 #define IMX_MU_DATA_U16(mesg, idx) ((mesg)->data.u16[(idx)])45 uint16_t u16[IMX_MU_MSG_SIZE * 2]; member
353 static void u16_to_bytes(uint16_t u16, uint8_t *bytes) in u16_to_bytes() argument355 *bytes = (uint8_t) (u16 >> 8); in u16_to_bytes()356 *(bytes + 1) = (uint8_t) u16; in u16_to_bytes()359 static void bytes_to_u16(uint8_t *bytes, uint16_t *u16) in bytes_to_u16() argument361 *u16 = (uint16_t) ((*bytes << 8) + *(bytes + 1)); in bytes_to_u16()
Completed in 8 milliseconds