Home
last modified time | relevance | path

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

/optee_os-3.20.0/core/lib/libtomcrypt/src/ciphers/
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()
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 …]
/optee_os-3.20.0/core/include/drivers/
A Dimx_mu.h13 #define IMX_MU_DATA_U16(mesg, idx) ((mesg)->data.u16[(idx)])
45 uint16_t u16[IMX_MU_MSG_SIZE * 2]; member
/optee_os-3.20.0/core/tee/
A Dtee_rpmb_fs.c353 static void u16_to_bytes(uint16_t u16, uint8_t *bytes) in u16_to_bytes() argument
355 *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() argument
361 *u16 = (uint16_t) ((*bytes << 8) + *(bytes + 1)); in bytes_to_u16()

Completed in 8 milliseconds