Home
last modified time | relevance | path

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

1234

/hal_espressif-3.4.0/components/wpa_supplicant/src/crypto/
Daes_i.h17 extern const u32 Te0[256];
18 extern const u32 Te1[256];
19 extern const u32 Te2[256];
20 extern const u32 Te3[256];
21 extern const u32 Te4[256];
22 extern const u32 Td0[256];
23 extern const u32 Td1[256];
24 extern const u32 Td2[256];
25 extern const u32 Td3[256];
26 extern const u32 Td4[256];
[all …]
Ddes-internal.c49 static const u32 bytebit[8] =
54 static const u32 bigbyte[24] =
88 static const u32 SP1[64] =
108 static const u32 SP2[64] =
128 static const u32 SP3[64] =
148 static const u32 SP4[64] =
168 static const u32 SP5[64] =
188 static const u32 SP6[64] =
208 static const u32 SP7[64] =
228 static const u32 SP8[64] =
[all …]
Daes-internal.c64 const u32 Te0[256] = {
131 const u32 Te1[256] = {
197 const u32 Te2[256] = {
263 const u32 Te3[256] = {
330 const u32 Te4[256] = {
397 const u32 Td0[256] = {
464 const u32 Td1[256] = {
530 const u32 Td2[256] = {
597 const u32 Td3[256] = {
663 const u32 Td4[256] = {
[all …]
Dmd5-internal.c17 static void MD5Transform(u32 buf[4], u32 const in[16]);
73 u32 t; in byteReverse()
75 t = (u32) ((unsigned) buf[3] << 8 | buf[2]) << 16 | in byteReverse()
77 *(u32 *) buf = t; in byteReverse()
104 u32 t; in MD5Update()
109 if ((ctx->bits[0] = t + ((u32) len << 3)) < t) in MD5Update()
127 MD5Transform(ctx->buf, (u32 *) ctx->in); in MD5Update()
136 MD5Transform(ctx->buf, (u32 *) ctx->in); in MD5Update()
171 MD5Transform(ctx->buf, (u32 *) ctx->in); in MD5Final()
182 ((u32 *) aliasing_hide_typecast(ctx->in, u32))[14] = ctx->bits[0]; in MD5Final()
[all …]
Ddes_i.h13 u32 ek[3][32];
14 u32 dk[3][32];
17 void des_key_setup(const u8 *key, u32 *ek, u32 *dk);
18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain);
Dsha1_i.h13 u32 state[5];
14 u32 count[2];
19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
21 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
Dmd4-internal.c18 u32 state[4]; /* state */
70 MD4Transform(u32 state[4], const u8 block[MD4_BLOCK_LENGTH]);
198 MD4Transform(u32 state[4], const u8 block[MD4_BLOCK_LENGTH]) in MD4Transform()
200 u32 a, b, c, d, in[MD4_BLOCK_LENGTH / 4]; in MD4Transform()
206 in[a] = (u32)( in MD4Transform()
207 (u32)(block[a * 4 + 0]) | in MD4Transform()
208 (u32)(block[a * 4 + 1]) << 8 | in MD4Transform()
209 (u32)(block[a * 4 + 2]) << 16 | in MD4Transform()
210 (u32)(block[a * 4 + 3]) << 24); in MD4Transform()
Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) in rijndaelKeySetupDec()
31 u32 temp; in rijndaelKeySetupDec()
61 u32 *rk; in aes_decrypt_init()
75 static void rijndaelDecrypt(const u32 rk[/*44*/], int Nr, const u8 ct[16], in rijndaelDecrypt()
78 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelDecrypt()
153 u32 *rk = ctx; in aes_decrypt()
Daes-internal-enc.c23 static void rijndaelEncrypt(const u32 rk[], int Nr, const u8 pt[16], u8 ct[16]) in rijndaelEncrypt()
25 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt()
100 u32 *rk; in aes_encrypt_init()
121 u32 *rk = ctx; in aes_encrypt()
Daes-gcm.c18 u32 val; in inc32()
27 u32 *d = (u32 *) dst; in xor_block()
28 u32 *s = (u32 *) src; in xor_block()
38 u32 val; in shift_right_block()
Dsha1-internal.c19 void SHA1Transform(u32 state[5], const unsigned char buffer[64]);
176 void SHA1Transform(u32 state[5], const unsigned char buffer[64]) in SHA1Transform()
178 u32 a, b, c, d, e; in SHA1Transform()
181 u32 l[16]; in SHA1Transform()
248 void SHA1Update(SHA1_CTX* context, const void *_data, u32 len) in SHA1Update()
250 u32 i, j; in SHA1Update()
280 u32 i; in SHA1Final()
Dmd5_i.h13 u32 buf[4];
14 u32 bits[2];
Daes-ccm.c20 u32 *d = (u32 *) dst; in xor_aes_block()
21 u32 *s = (u32 *) src; in xor_aes_block()
/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/include/stack/
Dbt_types.h232 … UINT32_TO_STREAM(p, u32) {*(p)++ = (UINT8)(u32); *(p)++ = (UINT8)((u32) >> 8); *(p)++ = (UINT8)(( argument
248 #define STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
249 #define STREAM_TO_UINT32(u32, p) {u32 = (((UINT32)(*(p))) + ((((UINT32)(*((p) + 1)))) << 8) + ((((U… argument
266u32) {*(UINT8 *)(p) = (UINT8)(u32); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 8); *((UINT8 *)(p)+2) = … argument
276 …_TO_BE_STREAM(p, u32) {*(p)++ = (UINT8)((u32) >> 24); *(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UI… argument
285 #define BE_STREAM_TO_UINT24(u32, p) {u32 = (((UINT32)(*((p) + 2))) + ((UINT32)(*((p) + 1)) << 8) + … argument
286 #define BE_STREAM_TO_UINT32(u32, p) {u32 = ((UINT32)(*((p) + 3)) + ((UINT32)(*((p) + 2)) << 8) + ((… argument
294u32) {*(UINT8 *)(p) = (UINT8)((u32) >> 24); *((UINT8 *)(p)+1) = (UINT8)((u32) >> 16); *((UINT8 *)… argument
/hal_espressif-3.4.0/components/wpa_supplicant/src/utils/
Dcommon.h22 typedef uint32_t u32; typedef
89 #define le_to_host32(n) ((__force u32) (le32) (n))
90 #define host_to_le32(n) ((__force le32) (u32) (n))
91 #define be_to_host32(n) __builtin_bswap32((__force u32) (be32) (n))
150 static inline u32 WPA_GET_BE24(const u8 *a) in WPA_GET_BE24()
155 static inline void WPA_PUT_BE24(u8 *a, u32 val) in WPA_PUT_BE24()
162 static inline u32 WPA_GET_BE32(const u8 *a) in WPA_GET_BE32()
164 return ((u32) a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3]; in WPA_GET_BE32()
167 static inline void WPA_PUT_BE32(u8 *a, u32 val) in WPA_PUT_BE32()
175 static inline u32 WPA_GET_LE32(const u8 *a) in WPA_GET_LE32()
[all …]
/hal_espressif-3.4.0/components/bt/host/bluedroid/stack/avrc/include/
Davrc_int.h74 …efine AVRC_CO_ID_TO_BE_STREAM(p, u32) {*(p)++ = (UINT8)((u32) >> 16); *(p)++ = (UINT8)((u32) >> 8)… argument
75 #define AVRC_BE_STREAM_TO_CO_ID(u32, p) {u32 = (((UINT32)(*((p) + 2))) + (((UINT32)(*((p) + 1))) <<… argument
/hal_espressif-3.4.0/components/wpa_supplicant/src/common/
Dwpa_common.h39 ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
40 (u32) (d))
52 ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
53 (u32) (d))
398 u32 wpa_cipher_to_suite(int proto, int cipher);
Dieee802_11_defs.h453 #define TX_BF_CAP_IMPLICIT_TXBF_RX_CAP ((u32) BIT(0))
454 #define TX_BF_CAP_RX_STAGGERED_SOUNDING_CAP ((u32) BIT(1))
455 #define TX_BF_CAP_TX_STAGGERED_SOUNDING_CAP ((u32) BIT(2))
456 #define TX_BF_CAP_RX_NDP_CAP ((u32) BIT(3))
457 #define TX_BF_CAP_TX_NDP_CAP ((u32) BIT(4))
458 #define TX_BF_CAP_IMPLICIT_TX_BF_CAP ((u32) BIT(5))
459 #define TX_BF_CAP_CALIBRATION_MASK ((u32) (BIT(6) | BIT(7))
461 #define TX_BF_CAP_EXPLICIT_CSI_TXBF_CAP ((u32) BIT(8))
462 #define TX_BF_CAP_EXPLICIT_NONCOMPR_STEERING_CAP ((u32) BIT(9))
463 #define TX_BF_CAP_EXPLICIT_COMPR_STEERING_CAP ((u32) BIT(10))
[all …]
/hal_espressif-3.4.0/components/wpa_supplicant/esp_supplicant/src/
Desp_wpa3.c31 u32 len = 0; in wpa3_build_sae_commit()
133 static u8 *wpa3_build_sae_msg(u8 *bssid, u32 sae_msg_type, size_t *sae_msg_len) in wpa3_build_sae_msg()
157 static int wpa3_parse_sae_commit(u8 *buf, u32 len, u16 status) in wpa3_parse_sae_commit()
189 static int wpa3_parse_sae_confirm(u8 *buf, u32 len) in wpa3_parse_sae_confirm()
208 static int wpa3_parse_sae_msg(u8 *buf, size_t len, u32 sae_msg_type, u16 status) in wpa3_parse_sae_msg()
Desp_wifi_driver.h115 int (*wpa_sta_rx_eapol)(u8 *src_addr, u8 *buf, u32 len);
130 …int (*wpa_sta_rx_mgmt)(u8 type, u8 *frame, size_t len, u8 *sender, u32 rssi, u8 channel, u64 curre…
136 int (*wpa2_sm_rx_eapol)(u8 *src_addr, u8 *buf, u32 len, u8 *bssid);
146 int (*wps_sm_rx_eapol)(u8 *src_addr, u8 *buf, u32 len);
/hal_espressif-3.4.0/components/wpa_supplicant/src/rsn_supp/
Dwpa_i.h80 void (*config_assoc_ie) (u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len);
144 typedef void (* WPA_SET_ASSOC_IE)(u8 proto, u8 *assoc_buf, u32 assoc_wpa_ie_len);
166 void wpa_set_profile(u32 wpa_proto, u8 auth_mode);
170 int wpa_sm_rx_eapol(u8 *src_addr, u8 *buf, u32 len);
/hal_espressif-3.4.0/components/wpa_supplicant/src/ap/
Dap_config.h115 u32 method;
228 u32 r0_key_lifetime;
229 u32 reassociation_deadline;
350 u32 vht_capab;
Dhostapd.h61 u32 channel;
62 u32 datarate;
/hal_espressif-3.4.0/components/wpa_supplicant/include/utils/
Dwpabuf.h120 static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data) in wpabuf_put_le32()
132 static inline void wpabuf_put_be24(struct wpabuf *buf, u32 data) in wpabuf_put_be24()
138 static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data) in wpabuf_put_be32()
/hal_espressif-3.4.0/components/bt/host/bluedroid/bta/sdp/
Dbta_sdp_act.c98 uint32_t u32; in shorten_sdp_uuid() local
99 memcpy(&u32, &u->uu.uuid128[0], sizeof(u32)); in shorten_sdp_uuid()
100 su.uu.uuid32 = ntohl(u32); in shorten_sdp_uuid()
119 record->mns.supported_features = p_attr->attr_value.v.u32; in bta_create_mns_sdp_record()
165 record->mas.supported_features = p_attr->attr_value.v.u32; in bta_create_mas_sdp_record()
205 record->pse.supported_features = p_attr->attr_value.v.u32; in bta_create_pse_sdp_record()

1234