Home
last modified time | relevance | path

Searched refs:u32 (Results 1 – 10 of 10) sorted by relevance

/optee_os/core/arch/arm/crypto/
H A Dsha256_armv8a_ce_a32.S35 vadd.u32 ta\ev, q\s0, k\ev
63 vadd.u32 ta0, q0, k0
86 vadd.u32 dga, dga, dg0
87 vadd.u32 dgb, dgb, dg1
H A Dsha1_armv8a_ce_a32.S35 vadd.u32 tb\ev, q\s0, \rc
71 vadd.u32 ta0, q8, k0
99 vadd.u32 dga, dga, dg0
100 vadd.u32 dgb, dgb, dg1a0
/optee_os/core/include/drivers/
H A Dimx_mu.h12 #define IMX_MU_DATA_U32(mesg, idx) ((mesg)->data.u32[(idx)])
45 uint32_t u32[IMX_MU_MSG_SIZE]; member
/optee_os/core/lib/qcbor/src/
H A Dieee754.c155 uint32_t u32; in CopyFloatToUint32() local
156 memcpy(&u32, &f, sizeof(uint32_t)); in CopyFloatToUint32()
157 return u32; in CopyFloatToUint32()
177 CopyUint32ToSingle(uint32_t u32) in CopyUint32ToSingle() argument
180 memcpy(&f, &u32, sizeof(uint32_t)); in CopyUint32ToSingle()
/optee_os/lib/libutils/ext/
H A Dqsort_helpers.c34 QSORT_HELPER(u32, uint32_t);
/optee_os/core/drivers/imx/mu/
H A Dimx_mu.c80 &msg->data.u32[count - 1]); in imx_mu_receive_msg()
152 msg->data.u32[count - start_index]); in imx_mu_send_msg()
/optee_os/core/lib/qcbor/inc/qcbor/
H A DUsefulBuf.h743 static inline float UsefulBufUtil_CopyUint32ToFloat(uint32_t u32);
1899 uint32_t u32; in UsefulBufUtil_CopyFloatToUint32() local
1900 memcpy(&u32, &f, sizeof(uint32_t)); in UsefulBufUtil_CopyFloatToUint32()
1901 return u32; in UsefulBufUtil_CopyFloatToUint32()
1918 static inline float UsefulBufUtil_CopyUint32ToFloat(uint32_t u32) in UsefulBufUtil_CopyUint32ToFloat() argument
1921 memcpy(&f, &u32, sizeof(uint32_t)); in UsefulBufUtil_CopyUint32ToFloat()
/optee_os/core/lib/libtomcrypt/src/pk/ec25519/
H A Dtweetnacl.c11 typedef ulong32 u32; typedef
31 u32 d = 0; in vn()
224 static LTC_INLINE int tweetnacl_crypto_hash_ctx(u8 *out,const u8 *m,u64 n,const u8 *ctx,u32 cs) in tweetnacl_crypto_hash_ctx()
/optee_os/core/drivers/crypto/ele/
H A Dele.c143 msg->data.u32[msg->header.size - 2] = compute_crc(msg); in update_crc()
216 rsp = get_response_code(msg->data.u32[0]); in imx_ele_call()
/optee_os/core/tee/
H A Dtee_rpmb_fs.c344 static void u32_to_bytes(uint32_t u32, uint8_t *bytes) in u32_to_bytes() argument
346 *bytes = (uint8_t) (u32 >> 24); in u32_to_bytes()
347 *(bytes + 1) = (uint8_t) (u32 >> 16); in u32_to_bytes()
348 *(bytes + 2) = (uint8_t) (u32 >> 8); in u32_to_bytes()
349 *(bytes + 3) = (uint8_t) u32; in u32_to_bytes()
352 static void bytes_to_u32(uint8_t *bytes, uint32_t *u32) in bytes_to_u32() argument
354 *u32 = (uint32_t) ((*(bytes) << 24) + in bytes_to_u32()