Home
last modified time | relevance | path

Searched refs:u16 (Results 1 – 4 of 4) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/ciphers/
H A Dkasumi.c14 typedef unsigned u16; typedef
31 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 …]
/optee_os/core/include/drivers/
H A Dimx_mu.h13 #define IMX_MU_DATA_U16(mesg, idx) ((mesg)->data.u16[(idx)])
46 uint16_t u16[IMX_MU_MSG_SIZE * 2]; member
/optee_os/lib/libutils/ext/
H A Dqsort_helpers.c32 QSORT_HELPER(u16, uint16_t);
/optee_os/core/tee/
H A Dtee_rpmb_fs.c359 static void u16_to_bytes(uint16_t u16, uint8_t *bytes) in u16_to_bytes() argument
361 *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() argument
367 *u16 = (uint16_t) ((*bytes << 8) + *(bytes + 1)); in bytes_to_u16()