Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/hal_espressif-latest/components/wpa_supplicant/src/utils/
Dcommon.h128 static inline u16 WPA_GET_BE16(const u8 *a) in WPA_GET_BE16() argument
130 return (a[0] << 8) | a[1]; in WPA_GET_BE16()
133 static inline void WPA_PUT_BE16(u8 *a, u16 val) in WPA_PUT_BE16() argument
135 a[0] = val >> 8; in WPA_PUT_BE16()
136 a[1] = val & 0xff; in WPA_PUT_BE16()
139 static inline u16 WPA_GET_LE16(const u8 *a) in WPA_GET_LE16() argument
141 return (a[1] << 8) | a[0]; in WPA_GET_LE16()
144 static inline void WPA_PUT_LE16(u8 *a, u16 val) in WPA_PUT_LE16() argument
146 a[1] = val >> 8; in WPA_PUT_LE16()
147 a[0] = val & 0xff; in WPA_PUT_LE16()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/
Dp_256_multprecision.c37 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength) in multiprecision_copy() argument
40 c[i] = a[i]; in multiprecision_copy()
44 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_compare() argument
47 if (a[i] > b[i]) { in multiprecision_compare()
50 if (a[i] < b[i]) { in multiprecision_compare()
57 int multiprecision_iszero(DWORD *a, uint32_t keyLength) in multiprecision_iszero() argument
60 if (a[i]) { in multiprecision_iszero()
67 UINT32 multiprecision_dword_bits(DWORD a) in multiprecision_dword_bits() argument
70 for (i = 0; i < DWORD_BITS; i++, a >>= 1) in multiprecision_dword_bits()
71 if (a == 0) { in multiprecision_dword_bits()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dsha1-internal.c178 u32 a, b, c, d, e; in SHA1Transform() local
192 a = state[0]; in SHA1Transform()
198 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); in SHA1Transform()
199 R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); in SHA1Transform()
200 R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform()
201 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); in SHA1Transform()
202 R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); in SHA1Transform()
203 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform()
204 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27); in SHA1Transform()
205 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in SHA1Transform()
[all …]
Dmd4-internal.c200 u32 a, b, c, d, in[MD4_BLOCK_LENGTH / 4]; in MD4Transform() local
205 for (a = 0; a < MD4_BLOCK_LENGTH / 4; a++) { 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()
214 a = state[0]; in MD4Transform()
219 MD4STEP(F1, a, b, c, d, in[ 0], 3); in MD4Transform()
220 MD4STEP(F1, d, a, b, c, in[ 1], 7); in MD4Transform()
[all …]
Dmd5-internal.c210 register u32 a, b, c, d; in MD5Transform() local
212 a = buf[0]; in MD5Transform()
217 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
218 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
219 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
220 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
221 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
222 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
223 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
224 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
Daes-wrap.c28 u8 *a, *r, b[AES_BLOCK_SIZE]; in aes_wrap() local
33 a = cipher; in aes_wrap()
37 os_memset(a, 0xa6, 8); in aes_wrap()
54 os_memcpy(b, a, 8); in aes_wrap()
57 os_memcpy(a, b, 8); in aes_wrap()
59 a[7] ^= t; in aes_wrap()
60 a[6] ^= t >> 8; in aes_wrap()
61 a[5] ^= t >> 16; in aes_wrap()
62 a[4] ^= t >> 24; in aes_wrap()
Daes-ccm.c85 static void aes_ccm_encr_start(size_t L, const u8 *nonce, u8 *a) in aes_ccm_encr_start() argument
88 a[0] = L - 1; /* Flags = L' */ in aes_ccm_encr_start()
89 os_memcpy(&a[1], nonce, 15 - L); in aes_ccm_encr_start()
94 u8 *a) in aes_ccm_encr() argument
101 WPA_PUT_BE16(&a[AES_BLOCK_SIZE - 2], i); in aes_ccm_encr()
103 aes_encrypt(aes, a, out); in aes_ccm_encr()
109 WPA_PUT_BE16(&a[AES_BLOCK_SIZE - 2], i); in aes_ccm_encr()
110 aes_encrypt(aes, a, out); in aes_ccm_encr()
118 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) in aes_ccm_encr_auth() argument
125 WPA_PUT_BE16(&a[AES_BLOCK_SIZE - 2], 0); in aes_ccm_encr_auth()
[all …]
/hal_espressif-latest/components/esp_rom/linux/
Desp_rom_md5.c166 register uint32_t a, b, c, d; in MD5Transform() local
168 a = buf[0]; in MD5Transform()
173 MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7); in MD5Transform()
174 MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12); in MD5Transform()
175 MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17); in MD5Transform()
176 MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22); in MD5Transform()
177 MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7); in MD5Transform()
178 MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12); in MD5Transform()
179 MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17); in MD5Transform()
180 MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22); in MD5Transform()
[all …]
/hal_espressif-latest/components/esp_common/include/
Desp_attr.h146 FORCE_INLINE_ATTR constexpr TYPE operator~ (TYPE a) { return (TYPE)~(INT_TYPE)a; } \
147 FORCE_INLINE_ATTR constexpr TYPE operator| (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a | (INT_TYPE…
148 FORCE_INLINE_ATTR constexpr TYPE operator& (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a & (INT_TYPE…
149 FORCE_INLINE_ATTR constexpr TYPE operator^ (TYPE a, TYPE b) { return (TYPE)((INT_TYPE)a ^ (INT_TYPE…
150 FORCE_INLINE_ATTR constexpr TYPE operator>> (TYPE a, int b) { return (TYPE)((INT_TYPE)a >> b); } \
151 FORCE_INLINE_ATTR constexpr TYPE operator<< (TYPE a, int b) { return (TYPE)((INT_TYPE)a << b); } \
152 FORCE_INLINE_ATTR TYPE& operator|=(TYPE& a, TYPE b) { a = a | b; return a; } \
153 FORCE_INLINE_ATTR TYPE& operator&=(TYPE& a, TYPE b) { a = a & b; return a; } \
154 FORCE_INLINE_ATTR TYPE& operator^=(TYPE& a, TYPE b) { a = a ^ b; return a; } \
155 FORCE_INLINE_ATTR TYPE& operator>>=(TYPE& a, int b) { a = a >> b; return a; } \
[all …]
Desp_check.h67 #define ESP_RETURN_ON_FALSE(a, err_code, log_tag, format, ...) do { \ argument
69 if (unlikely(!(a))) { \
77 #define ESP_RETURN_ON_FALSE_ISR(a, err_code, log_tag, format, ...) do { \ argument
79 if (unlikely(!(a))) { \
88 #define ESP_GOTO_ON_FALSE(a, err_code, goto_tag, log_tag, format, ...) do { \ argument
90 if (unlikely(!(a))) { \
99 #define ESP_GOTO_ON_FALSE_ISR(a, err_code, goto_tag, log_tag, format, ...) do { \ argument
101 if (unlikely(!(a))) { \
169 #define ESP_RETURN_ON_FALSE(a, err_code, log_tag, format, ...) do { …
170 …if (unlikely(!(a))) { …
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/tls/
Dlibtommath.h124 #define mp_iszero(a) (((a)->used == 0) ? MP_YES : MP_NO) argument
125 #define mp_iseven(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 0)) ? MP_YES : MP_NO) argument
126 #define mp_isodd(a) (((a)->used > 0 && (((a)->dp[0] & 1) == 1)) ? MP_YES : MP_NO) argument
130 #define s_mp_mul(a, b, c) s_mp_mul_digs(a, b, c, (a)->used + (b)->used + 1) argument
132 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
133 static int s_mp_sqr(mp_int * a, mp_int * b);
134 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
136 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
144 static int mp_lshd(mp_int * a, int b);
145 static void mp_set(mp_int * a, mp_digit b);
[all …]
Dbignum.c115 int bignum_cmp(const struct bignum *a, const struct bignum *b) in bignum_cmp() argument
117 return mp_cmp((mp_int *) a, (mp_int *) b); in bignum_cmp()
127 int bignum_cmp_d(const struct bignum *a, unsigned long b) in bignum_cmp_d() argument
129 return mp_cmp_d((mp_int *) a, b); in bignum_cmp_d()
140 int bignum_add(const struct bignum *a, const struct bignum *b, in bignum_add() argument
143 if (mp_add((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) { in bignum_add()
158 int bignum_sub(const struct bignum *a, const struct bignum *b, in bignum_sub() argument
161 if (mp_sub((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) { in bignum_sub()
176 int bignum_mul(const struct bignum *a, const struct bignum *b, in bignum_mul() argument
179 if (mp_mul((mp_int *) a, (mp_int *) b, (mp_int *) c) != MP_OKAY) { in bignum_mul()
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/include/
Dp_256_multprecision.h39 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength);
40 int multiprecision_iszero(DWORD *a, uint32_t keyLength);
42 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength);
43 UINT32 multiprecision_dword_bits (DWORD a);
44 UINT32 multiprecision_most_signdwords(DWORD *a, uint32_t keyLength);
45 UINT32 multiprecision_most_signbits(DWORD *a, uint32_t keyLength);
46 void multiprecision_inv_mod(DWORD *aminus, DWORD *a, uint32_t keyLength);
47 DWORD multiprecision_add(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); // c=a+b
48 void multiprecision_add_mod(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength);
49 DWORD multiprecision_sub(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); // c=a-b
[all …]
/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/crypto/
Dcrypto_mbedtls-bignum.c76 int crypto_bignum_to_bin(const struct crypto_bignum *a, in crypto_bignum_to_bin() argument
86 num_bytes = mbedtls_mpi_size((mbedtls_mpi *) a); in crypto_bignum_to_bin()
98 …S_MPI_CHK(mbedtls_mpi_write_binary((mbedtls_mpi *) a, buf + offset, mbedtls_mpi_size((mbedtls_mpi … in crypto_bignum_to_bin()
106 int crypto_bignum_add(const struct crypto_bignum *a, in crypto_bignum_add() argument
110 … return mbedtls_mpi_add_mpi((mbedtls_mpi *) c, (const mbedtls_mpi *) a, (const mbedtls_mpi *) b) ? in crypto_bignum_add()
115 int crypto_bignum_mod(const struct crypto_bignum *a, in crypto_bignum_mod() argument
119 …return mbedtls_mpi_mod_mpi((mbedtls_mpi *) c, (const mbedtls_mpi *) a, (const mbedtls_mpi *) b) ? … in crypto_bignum_mod()
123 int crypto_bignum_exptmod(const struct crypto_bignum *a, in crypto_bignum_exptmod() argument
128 …return mbedtls_mpi_exp_mod((mbedtls_mpi *) d, (const mbedtls_mpi *) a, (const mbedtls_mpi *) b, (… in crypto_bignum_exptmod()
133 int crypto_bignum_inverse(const struct crypto_bignum *a, in crypto_bignum_inverse() argument
[all …]
/hal_espressif-latest/components/wpa_supplicant/port/include/
Dos.h71 #define os_time_before(a, b) \ argument
72 ((a)->sec < (b)->sec || \
73 ((a)->sec == (b)->sec && (a)->usec < (b)->usec))
76 #define os_time_sub(a, b, res) do { \ argument
77 (res)->sec = (a)->sec - (b)->sec; \
78 (res)->usec = (a)->usec - (b)->usec; \
357 #define os_mutex_lock(a) wifi_funcs->_mutex_lock((a)) argument
358 #define os_mutex_unlock(a) wifi_funcs->_mutex_unlock((a)) argument
361 #define os_mutex_delete(a) wifi_funcs->_mutex_delete(a) argument
363 #define os_queue_create(a, b) wifi_funcs->_queue_create((a), (b)) argument
[all …]
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/
Dsha256.c157 static inline unsigned int ROTR(unsigned int a, unsigned int n) in ROTR() argument
159 return (((a) >> n) | ((a) << (32 - n))); in ROTR()
162 #define Sigma0(a)(ROTR((a), 2) ^ ROTR((a), 13) ^ ROTR((a), 22)) argument
163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) argument
164 #define sigma0(a)(ROTR((a), 7) ^ ROTR((a), 18) ^ ((a) >> 3)) argument
165 #define sigma1(a)(ROTR((a), 17) ^ ROTR((a), 19) ^ ((a) >> 10)) argument
167 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument
168 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument
183 unsigned int a, b, c, d, e, f, g, h; in compress() local
190 a = iv[0]; b = iv[1]; c = iv[2]; d = iv[3]; in compress()
[all …]
Daes_decrypt.c67 #define mult8(a)(_double_byte(_double_byte(_double_byte(a)))) argument
68 #define mult9(a)(mult8(a)^(a)) argument
69 #define multb(a)(mult8(a)^_double_byte(a)^(a)) argument
70 #define multd(a)(mult8(a)^_double_byte(_double_byte(a))^(a)) argument
71 #define multe(a)(mult8(a)^_double_byte(_double_byte(a))^_double_byte(a)) argument
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dsha256.c157 static inline unsigned int ROTR(unsigned int a, unsigned int n) in ROTR() argument
159 return (((a) >> n) | ((a) << (32 - n))); in ROTR()
162 #define Sigma0(a)(ROTR((a), 2) ^ ROTR((a), 13) ^ ROTR((a), 22)) argument
163 #define Sigma1(a)(ROTR((a), 6) ^ ROTR((a), 11) ^ ROTR((a), 25)) argument
164 #define sigma0(a)(ROTR((a), 7) ^ ROTR((a), 18) ^ ((a) >> 3)) argument
165 #define sigma1(a)(ROTR((a), 17) ^ ROTR((a), 19) ^ ((a) >> 10)) argument
167 #define Ch(a, b, c)(((a) & (b)) ^ ((~(a)) & (c))) argument
168 #define Maj(a, b, c)(((a) & (b)) ^ ((a) & (c)) ^ ((b) & (c))) argument
183 unsigned int a, b, c, d, e, f, g, h; in compress() local
190 a = iv[0]; b = iv[1]; c = iv[2]; d = iv[3]; in compress()
[all …]
Daes_decrypt.c67 #define mult8(a)(_double_byte(_double_byte(_double_byte(a)))) argument
68 #define mult9(a)(mult8(a)^(a)) argument
69 #define multb(a)(mult8(a)^_double_byte(a)^(a)) argument
70 #define multd(a)(mult8(a)^_double_byte(_double_byte(a))^(a)) argument
71 #define multe(a)(mult8(a)^_double_byte(_double_byte(a))^_double_byte(a)) argument
/hal_espressif-latest/components/xtensa/include/xtensa/
Dxdm-regs.h185 #define _XDM_ERI_TO_NAR(a) ( ((a)&0x3F80)==0x0000 ? (((a)>>2) & 0x1F) \ argument
186 : ((a)&0x3E00)==0x1000 ? (0x20 | (((a)>>2) & 7) | (((a)>>4) & 0x18)) \
187 : ((a)&0x3FC0)==0x2000 ? (0x40 | (((a)>>2) & 0xF)) \
188 : ((a)&0x3FE0)==0x3020 ? (0x50 | (((a)>>2) & 0xF)) \
189 : ((a)&0x3FFC)==0x3F00 ? 0x60 \
190 : ((a)&0x3F80)==0x3F80 ? (0x60 | (((a)>>2) & 0x1F)) \
193 #define XDM_ERI_TO_NAR(a) _XDM_ERI_TO_NAR(a & 0xFFFF) argument
196 #define _XDM_NAR_TO_APB(a) ((a) <= 0x1f ? ((a) << 2) \ argument
197 :(a) >= 0x20 && (a) <= 0x3F ? (0x1000 | (((a)& 7) << 2) | (((a)&0x18)<<4)) \
198 :(a) >= 0x40 && (a) <= 0x4F ? (0x2000 | (((a)&0xF) << 2)) \
[all …]
/hal_espressif-latest/components/hal/
Dlcd_hal.c24 static inline uint32_t _gcd(uint32_t a, uint32_t b) in _gcd() argument
26 uint32_t c = a % b; in _gcd()
28 a = b; in _gcd()
30 c = a % b; in _gcd()
44 uint32_t a = 0; in lcd_hal_cal_pclk_freq() local
51 a = expect_pclk_freq_hz / gcd; in lcd_hal_cal_pclk_freq()
54 uint32_t d = a / LCD_LL_CLK_FRAC_DIV_AB_MAX + 1; in lcd_hal_cal_pclk_freq()
55 a /= d; in lcd_hal_cal_pclk_freq()
59 HAL_EARLY_LOGD("lcd_hal", "n=%d,a=%d,b=%d,mo=%d", n, a, b, mo); in lcd_hal_cal_pclk_freq()
61 lcd_ll_set_group_clock_coeff(hal->dev, n, a, b); in lcd_hal_cal_pclk_freq()
[all …]
/hal_espressif-latest/components/bootloader/subproject/main/ld/esp32s2/
Dbootloader.ld31 *liblog.a:(.literal .text .literal.* .text.*)
32 *libgcc.a:(.literal .text .literal.* .text.*)
33 *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*)
34 *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*)
35 *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*)
36 *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*)
37 …*libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_…
38 *libesp_common.a:fpga_overrides.*(.literal.bootloader_fill_random .text.bootloader_fill_random)
39 *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*)
40 *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*)
[all …]
/hal_espressif-latest/components/bootloader/subproject/main/ld/esp32/
Dbootloader.ld44 *liblog.a:(.literal .text .literal.* .text.*)
45 *libgcc.a:(.literal .text .literal.* .text.*)
46 *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*)
47 *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*)
48 *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*)
49 *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*)
50 …*libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_…
51 *libesp_common.a:fpga_overrides.*(.literal.bootloader_fill_random .text.bootloader_fill_random)
52 *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*)
53 *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*)
[all …]
/hal_espressif-latest/components/bt/host/bluedroid/stack/include/stack/
Dbt_types.h237 #define ARRAY32_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < 32; ijk++) *(p)++… argument
238 #define ARRAY16_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < 16; ijk++) *(p)++… argument
239 #define ARRAY8_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < 8; ijk++) *(p)++… argument
240 #define BDADDR_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < BD_ADDR_LEN; ijk++) *(p)++… argument
241 #define LAP_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < LAP_LEN; ijk++) *(p)++… argument
242 #define DEVCLASS_TO_STREAM(p, a) {register int ijk; for (ijk = 0; ijk < DEV_CLASS_LEN;ijk++) *(p)++… argument
243 #define ARRAY_TO_STREAM(p, a, len) {register int ijk; for (ijk = 0; ijk < len; ijk++) *(p)++… argument
244 #define REVERSE_ARRAY_TO_STREAM(p, a, len) {register int ijk; for (ijk = 0; ijk < len; ijk++) *(p)… argument
250 #define STREAM_TO_BDADDR(a, p) {register int ijk; register UINT8 *pbda = (UINT8 *)a + BD_ADDR_LEN… argument
251 #define STREAM_TO_ARRAY32(a, p) {register int ijk; register UINT8 *_pa = (UINT8 *)a + 31; for (ijk… argument
[all …]
/hal_espressif-latest/components/bootloader/subproject/main/ld/esp32c2/
Dbootloader.ld65 *liblog.a:(.literal .text .literal.* .text.*)
66 *libgcc.a:(.literal .text .literal.* .text.*)
67 *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*)
68 *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*)
69 *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*)
70 *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*)
71 …*libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_…
72 …*libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_enable .text.bootloader_r…
73 *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*)
74 *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*)
[all …]

12345678910>>...15