Home
last modified time | relevance | path

Searched refs:K (Results 1 – 19 of 19) sorted by relevance

/hal_espressif-latest/components/mbedtls/port/sha/parallel_engine/
Desp_sha256.c138 static const uint32_t K[] = { variable
175 #define P(a,b,c,d,e,f,g,h,x,K) \ argument
177 temp1 = h + S3(e) + F1(e,f,g) + K + x; \
201 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i], K[i] ); in mbedtls_sha256_software_process()
212 P( A[0], A[1], A[2], A[3], A[4], A[5], A[6], A[7], W[i + 0], K[i + 0] ); in mbedtls_sha256_software_process()
213 P( A[7], A[0], A[1], A[2], A[3], A[4], A[5], A[6], W[i + 1], K[i + 1] ); in mbedtls_sha256_software_process()
214 P( A[6], A[7], A[0], A[1], A[2], A[3], A[4], A[5], W[i + 2], K[i + 2] ); in mbedtls_sha256_software_process()
215 P( A[5], A[6], A[7], A[0], A[1], A[2], A[3], A[4], W[i + 3], K[i + 3] ); in mbedtls_sha256_software_process()
216 P( A[4], A[5], A[6], A[7], A[0], A[1], A[2], A[3], W[i + 4], K[i + 4] ); in mbedtls_sha256_software_process()
217 P( A[3], A[4], A[5], A[6], A[7], A[0], A[1], A[2], W[i + 5], K[i + 5] ); in mbedtls_sha256_software_process()
[all …]
Desp_sha512.c166 static const uint64_t K[80] = { variable
228 #define P(a,b,c,d,e,f,g,h,x,K) \ in mbedtls_sha512_software_process() argument
230 temp1 = h + S3(e) + F1(e,f,g) + K + x; \ in mbedtls_sha512_software_process()
255 P( A, B, C, D, E, F, G, H, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
256 P( H, A, B, C, D, E, F, G, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
257 P( G, H, A, B, C, D, E, F, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
258 P( F, G, H, A, B, C, D, E, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
259 P( E, F, G, H, A, B, C, D, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
260 P( D, E, F, G, H, A, B, C, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
261 P( C, D, E, F, G, H, A, B, W[i], K[i] ); i++; in mbedtls_sha512_software_process()
[all …]
Desp_sha1.c156 e += S(a,5) + F(b,c,d) + K + x; b = S(b,30); \ in mbedtls_sha1_software_process()
166 #define K 0x5A827999 in mbedtls_sha1_software_process() macro
189 #undef K in mbedtls_sha1_software_process()
193 #define K 0x6ED9EBA1 in mbedtls_sha1_software_process() macro
216 #undef K in mbedtls_sha1_software_process()
220 #define K 0x8F1BBCDC in mbedtls_sha1_software_process() macro
243 #undef K in mbedtls_sha1_software_process()
247 #define K 0xCA62C1D6 in mbedtls_sha1_software_process() macro
270 #undef K in mbedtls_sha1_software_process()
/hal_espressif-latest/components/esp_system/port/soc/esp32/
DKconfig.tracemem17 … has taken through the program. This is stored in a chunk of 32K (16K for single-processor)
28 … has taken through the program. This is stored in a chunk of 32K (16K for single-processor)
/hal_espressif-latest/components/esp_system/port/soc/esp32s3/
DKconfig.tracemem17 … has taken through the program. This is stored in a chunk of 32K (16K for single-processor)
28 … has taken through the program. This is stored in a chunk of 32K (16K for single-processor)
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/
DKconfig.tracemem17 … has taken through the program. This is stored in a chunk of 32K (16K for single-processor)
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dsynthesis-dct8.c88 #define FLOAT_MULT_DCT(K, sample) (FIX(K,20) * sample) in float_dct2_8() argument
214 #define FIX_MULT_DCT(K, x) (MUL_32S_32S_HI(K,x)<<2) in dct2_8() argument
Dsynthesis-sbc.c236 #define LONG_MULT_DCT(K, sample) (MUL_16S_32S_HI(K, sample)<<2) argument
/hal_espressif-latest/components/wpa_supplicant/src/common/
Dsae.c1379 struct crypto_ec_point *K; in sae_derive_k_ecc() local
1382 K = crypto_ec_point_init(sae->tmp->ec); in sae_derive_k_ecc()
1383 if (K == NULL) in sae_derive_k_ecc()
1394 sae->peer_commit_scalar, K) < 0 || in sae_derive_k_ecc()
1395 crypto_ec_point_add(sae->tmp->ec, K, in sae_derive_k_ecc()
1396 sae->tmp->peer_commit_element_ecc, K) < 0 || in sae_derive_k_ecc()
1397 crypto_ec_point_mul(sae->tmp->ec, K, sae->tmp->sae_rand, K) < 0 || in sae_derive_k_ecc()
1398 crypto_ec_point_is_at_infinity(sae->tmp->ec, K) || in sae_derive_k_ecc()
1399 crypto_ec_point_to_bin(sae->tmp->ec, K, k, NULL) < 0) { in sae_derive_k_ecc()
1408 crypto_ec_point_deinit(K, 1); in sae_derive_k_ecc()
[all …]
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Dsha256-internal.c50 static const unsigned long K[64] = { variable
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \ in sha256_compress()
Dsha512-internal.c48 static const u64 K[80] = { variable
137 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in sha512_compress()
/hal_espressif-latest/components/esp_system/ld/esp32s3/
Dmemory.ld.in24 * D cache use the memory from high address, so when it's configured to 16K/32K, the region
/hal_espressif-latest/components/bt/controller/esp32c2/
DKconfig.in320 int "size of ble controller log partition(Multiples of 4K)"
324 The size of ble controller log partition shall be a multiples of 4K.
/hal_espressif-latest/components/mbedtls/esp_crt_bundle/
Dcacrt_all.pem177 KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K
797 F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K
874 5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs
963 spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K
2255 RR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bXUB+K+wb1whnw0A==
2862 Ulhu2wr7a89o+uOkXjpFc5gH6l8Cct4MpbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K
3049 K/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70paDPvOmbsB4om3xPX
/hal_espressif-latest/components/esp_psram/esp32/
DKconfig.spiram250 int "Amount of 32K pages to reserve for bank switching"
256 malloc/esp_heap_alloc_caps will decrease by 32K for each page reserved here.
/hal_espressif-latest/components/bt/controller/esp32c6/
DKconfig.in354 int "size of ble controller log partition(Multiples of 4K)"
358 The size of ble controller log partition shall be a multiples of 4K.
/hal_espressif-latest/components/bt/controller/esp32h2/
DKconfig.in345 int "size of ble controller log partition(Multiples of 4K)"
349 The size of ble controller log partition shall be a multiples of 4K.
/hal_espressif-latest/components/bt/controller/esp32c3/
DKconfig.in521 … to flash, saving over 20K bytes of memory. However, it will require more flash resources and the
/hal_espressif-latest/components/newlib/
DCOPYING.NEWLIB109 or suggestions about this software to the 29K Technical Support Center at
114 29K Support Products