/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/smp/ |
D | p_256_ecc_pp.c | 52 DWORD t1[KEY_LENGTH_DWORDS_P256]; in ECC_Double() local 70 multiprecision_mersenns_squa_mod(t1, z1, keyLength); // t1=z1^2 in ECC_Double() 71 multiprecision_sub_mod(t2, x1, t1, keyLength); // t2=x1-t1 in ECC_Double() 72 multiprecision_add_mod(t1, x1, t1, keyLength); // t1=x1+t1 in ECC_Double() 73 multiprecision_mersenns_mult_mod(t2, t1, t2, keyLength); // t2=t2*t1 in ECC_Double() 88 multiprecision_lshift_mod(t1, t3, keyLength); // t1=2t3 in ECC_Double() 89 multiprecision_sub_mod(x3, x3, t1, keyLength); // x3=x3-t1 in ECC_Double() 90 multiprecision_sub_mod(t1, t3, x3, keyLength); // t1=t3-x3 in ECC_Double() 91 multiprecision_mersenns_mult_mod(t1, t1, t2, keyLength); // t1=t1*t2 in ECC_Double() 92 multiprecision_sub_mod(y3, t1, y3, keyLength); // y3=t1-y3 in ECC_Double() [all …]
|
D | aes.c | 538 uint_8t tt, t0, t1, t2, t3; local 541 t1 = ctx->ksch[cc - 3]; 546 t0 = s_box(t1) ^ rc; 547 t1 = s_box(t2); 553 t1 = s_box(t1); 559 ctx->ksch[cc + 1] = ctx->ksch[tt + 1] ^ t1;
|
/hal_espressif-3.5.0/components/openssl/include/internal/ |
D | ssl_stack.h | 12 #define SKM_DEFINE_STACK_OF(t1, t2, t3) \ argument 13 STACK_OF(t1); \ 14 static ossl_inline STACK_OF(t1) *sk_##t1##_new_null(void) \ 16 return (STACK_OF(t1) *)OPENSSL_sk_new_null(); \
|
/hal_espressif-3.5.0/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/ |
D | sha256.c | 185 unsigned int t1, t2; in compress() local 195 t1 = work_space[i] = n; in compress() 196 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 198 h = g; g = f; f = e; e = d + t1; in compress() 199 d = c; c = b; b = a; a = t1 + t2; in compress() 208 t1 = work_space[i & 0xf] += s0 + s1 + work_space[(i + 9) & 0xf]; in compress() 209 t1 += h + Sigma1(e) + Ch(e, f, g) + k256[i]; in compress() 211 h = g; g = f; f = e; e = d + t1; in compress() 212 d = c; c = b; b = a; a = t1 + t2; in compress()
|
D | ecc.c | 629 uECC_word_t t1[NUM_ECC_WORDS]; in apply_z() local 631 uECC_vli_modSquare_fast(t1, Z, curve); /* z^2 */ in apply_z() 632 uECC_vli_modMult_fast(X1, X1, t1, curve); /* x1 * z^2 */ in apply_z() 633 uECC_vli_modMult_fast(t1, t1, Z, curve); /* z^3 */ in apply_z() 634 uECC_vli_modMult_fast(Y1, Y1, t1, curve); /* y1 * z^3 */ in apply_z()
|
/hal_espressif-3.5.0/components/esp_system/port/arch/riscv/ |
D | expression_with_stack_asm.S | 22 mv t1, ra 31 sw t1, 4(sp) 38 lw t1, 4(sp) 42 mv ra, t1
|
/hal_espressif-3.5.0/components/pthread/test/ |
D | test_pthread_cxx.cpp | 73 std::thread t1(thread_do_nothing); 74 t1.join(); 127 std::thread t1(task_test_sandbox); 132 if (t1.joinable()) { 133 std::cout << "Join thread " << std::hex << t1.get_id() << std::endl; 134 t1.join();
|
D | test_cxx_cond_var.cpp | 42 std::thread t1(waits, 1, 100), t2(waits, 2, 800), t3(signals, 200); variable 44 t1.join();
|
/hal_espressif-3.5.0/components/riscv/ |
D | vectors.S | 31 sw t1, RV_STK_T1(sp) 68 lw t1, RV_STK_T1(sp) 150 sw t1, RV_STK_T1(sp) 241 and t1, s1, t2 /* t1 = mcause & mask */ 242 slli t1, t1, 2 /* t1 = mcause * 4 */ 244 add t1, t2, t1 /* t1 = INTC_INT_PRIO_REG + 4 * mcause */ 245 lw t2, 0(t1) /* t2 = INTC_INT_PRIO_REG[mcause] */
|
/hal_espressif-3.5.0/components/wpa_supplicant/src/crypto/ |
D | aes-internal-enc.c | 25 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local 87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0]; in rijndaelEncrypt() 89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1]; in rijndaelEncrypt() 91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2]; in rijndaelEncrypt() 93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3]; in rijndaelEncrypt()
|
D | aes-internal-dec.c | 78 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelDecrypt() local 140 s0 = TD41(t0) ^ TD42(t3) ^ TD43(t2) ^ TD44(t1) ^ rk[0]; in rijndaelDecrypt() 142 s1 = TD41(t1) ^ TD42(t0) ^ TD43(t3) ^ TD44(t2) ^ rk[1]; in rijndaelDecrypt() 144 s2 = TD41(t2) ^ TD42(t1) ^ TD43(t0) ^ TD44(t3) ^ rk[2]; in rijndaelDecrypt() 146 s3 = TD41(t3) ^ TD42(t2) ^ TD43(t1) ^ TD44(t0) ^ rk[3]; in rijndaelDecrypt()
|
D | sha256-internal.c | 86 u32 S[8], W[64], t0, t1; in sha256_compress() local 108 t1 = Sigma0(a) + Maj(a, b, c); \ in sha256_compress() 110 h = t0 + t1; in sha256_compress()
|
D | sha512-internal.c | 112 u64 S[8], t0, t1; in sha512_compress() local 138 t1 = Sigma0(S[0]) + Maj(S[0], S[1], S[2]); in sha512_compress() 146 S[0] = t0 + t1; in sha512_compress()
|
D | libtommath.h | 1721 mp_int q, x, y, t1, t2; in mp_div() local 1747 if ((res = mp_init (&t1)) != MP_OKAY) { in mp_div() 1830 mp_zero (&t1); in mp_div() 1831 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1]; in mp_div() 1832 t1.dp[1] = y.dp[t]; in mp_div() 1833 t1.used = 2; in mp_div() 1834 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 1843 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div() 1846 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 1850 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) { in mp_div() [all …]
|
/hal_espressif-3.5.0/components/esp_system/test/ |
D | test_system_time.c | 21 int64_t t1 = esp_system_get_time(); 30 TEST_ASSERT_GREATER_THAN(t1, t2); 37 TEST_ASSERT_GREATER_THAN(t1, t2);
|
/hal_espressif-3.5.0/components/mbedtls/port/sha/dma/ |
D | sha.c | 146 uint8_t t0, t1, t2, t_len; in esp_sha_512_t_init_hash() local 158 t1 = (t / 10) % 10; in esp_sha_512_t_init_hash() 160 (((0x30 + t1) << 24))); in esp_sha_512_t_init_hash() 164 t1 = (t / 10) % 10; in esp_sha_512_t_init_hash() 167 (((0x30 + t1) << 16) + ((0x30 + t2) << 24))); in esp_sha_512_t_init_hash()
|
/hal_espressif-3.5.0/components/soc/esp32/include/soc/ |
D | timer_group_struct.h | 128 uint32_t t1: 1; /*interrupt when timer1 alarm*/ member 138 uint32_t t1: 1; /*interrupt when timer1 alarm*/ member 148 uint32_t t1: 1; /*interrupt when timer1 alarm*/ member 158 uint32_t t1: 1; /*interrupt when timer1 alarm*/ member
|
/hal_espressif-3.5.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/ |
D | curve-specific.inc | 54 /* t1 = X, t2 = Y, t3 = Z */ 69 uECC_vli_modAdd(X1, X1, Z1, curve->p, num_words); /* t1 = x1 + z1^2 */ 72 uECC_vli_modMult_fast(X1, X1, Z1, curve); /* t1 = x1^2 - z1^4 */ 75 uECC_vli_modAdd(X1, X1, Z1, curve->p, num_words); /* t1 = 3*(x1^2 - z1^4) */ 83 /* t1 = 3/2*(x1^2 - z1^4) = B */ 89 uECC_vli_modMult_fast(X1, X1, t5, curve); /* t1 = B * (A - x3) */ 498 uECC_word_t t1[num_words_secp224r1]; 501 uECC_vli_modMult_fast(t1, e0, e1, &curve_secp224r1); /* t1 <-- e0 * e1 */ 502 uECC_vli_modMult_fast(t1, t1, c, &curve_secp224r1); /* t1 <-- t1 * c */ 503 /* t1 <-- p - t1 */ [all …]
|
D | asm_arm.inc | 477 uint32_t t0, t1; 493 "ldr %[t1], [%[right], %[t0]] \n\t" /* t1 = right[k - i] */ 496 "umull %[t0], %[t1], %[t0], %[t1] \n\t" /* (t0, t1) = left[i] * right[k - i] */ 499 "adcs %[c1], %[c1], %[t1] \n\t" /* add high word to c1, including carry */ 524 [k] "+r" (k), [i] "=&r" (i), [t0] "=&r" (t0), [t1] "=&r" (t1) 645 uint32_t t0, t1; 661 "ldr %[t1], [%[left], %[tt]] \n\t" /* t1 = left[k - i] */ 664 "umull %[t0], %[t1], %[t0], %[t1] \n\t" /* (t0, t1) = left[i] * right[k - i] */ 669 "adcs %[c1], %[c1], %[t1] \n\t" /* add high word to c1, including carry */ 674 "adcs %[c1], %[c1], %[t1] \n\t" /* add high word to c1, including carry */ [all …]
|
/hal_espressif-3.5.0/components/freertos/port/riscv/ |
D | portasm.S | 35 mv t1, ra 57 mv ra, t1
|
/hal_espressif-3.5.0/components/esp_hw_support/test/ |
D | test_rtc_clk.c | 331 int64_t t1 = esp_rtc_get_time_us(); 343 TEST_ASSERT_GREATER_THAN(t1, t2); 353 TEST_ASSERT_GREATER_THAN(t1, t2);
|
/hal_espressif-3.5.0/components/wpa_supplicant/src/tls/ |
D | libtommath.h | 1717 mp_int q, x, y, t1, t2; in mp_div() local 1743 if ((res = mp_init (&t1)) != MP_OKAY) { in mp_div() 1826 mp_zero (&t1); in mp_div() 1827 t1.dp[0] = (t - 1 < 0) ? 0 : y.dp[t - 1]; in mp_div() 1828 t1.dp[1] = y.dp[t]; in mp_div() 1829 t1.used = 2; in mp_div() 1830 if ((res = mp_mul_d (&t1, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 1839 } while (mp_cmp_mag(&t1, &t2) == MP_GT); in mp_div() 1842 if ((res = mp_mul_d (&y, q.dp[i - t - 1], &t1)) != MP_OKAY) { in mp_div() 1846 if ((res = mp_lshd (&t1, i - t - 1)) != MP_OKAY) { in mp_div() [all …]
|
/hal_espressif-3.5.0/components/esp_timer/test/ |
D | test_esp_timer.c | 627 int64_t t1 = esp_timer_get_time(); 628 int64_t t_delta = t1 - t0; 629 printf("diff_us=%lld t0=%lld t1=%lld t1-t0=%lld\n", diff_us, t0, t1, t_delta); 725 int64_t t1 = 0, t2 = 0; in task_check_time() local 728 t1 = t2; in task_check_time() 730 if (t1 > t2) { in task_check_time() 731 int64_t shift_us = t2 - t1; in task_check_time()
|
/hal_espressif-3.5.0/tools/test_apps/system/memprot/main/esp32c3/ |
D | return_from_panic.S | 68 lw t1, RV_STK_T1(t0)
|
/hal_espressif-3.5.0/components/riscv/include/riscv/ |
D | rvruntime-frames.h | 52 STRUCT_FIELD (long, 4, RV_STK_T1, t1) /* t1-2: Temporaries */
|