Home
last modified time | relevance | path

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

/optee_os/core/lib/libtomcrypt/src/ciphers/
A Dkasumi.c21 typedef unsigned u16; typedef
38 static u16 FI( u16 in, u16 subkey ) in FI()
40 u16 nine, seven; in FI()
41 static const u16 S7[128] = { in FI()
88 seven = (u16)(in&0x7F); in FI()
102 u16 left, right; in FO()
105 left = (u16)(in>>16); in FO()
106 right = (u16) in&0xFFFF; in FO()
126 u16 l, r, a, b; in FL()
128 l = (u16)(in>>16); in FL()
[all …]
/optee_os/core/drivers/
A Dimx_sc_api.c22 #define RPC_U16(mesg, idx) ((mesg)->data.u16[(idx)])
104 uint16_t u16[(SC_RPC_MAX_MSG - 1) * 2]; member
/optee_os/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 12 milliseconds