Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-latest/components/esp_hw_support/
Dsleep_cpu_asm.S44 csrw mscratch, t0 /* use mscratch as temp storage */
45 la t0, rv_core_critical_regs_frame
46 lw t0, 0(t0) /* t0 pointer to RvCoreCriticalSleepFrame object */
48 sw ra, RV_SLP_CTX_RA(t0)
49 sw sp, RV_SLP_CTX_SP(t0)
50 sw gp, RV_SLP_CTX_GP(t0)
51 sw tp, RV_SLP_CTX_TP(t0)
52 sw t1, RV_SLP_CTX_T1(t0)
53 sw t2, RV_SLP_CTX_T2(t0)
54 sw s0, RV_SLP_CTX_S0(t0)
[all …]
/hal_espressif-latest/components/newlib/port/riscv/
Dport_stdatomic.S21 ALIGNED_PTR_2 t0, t1
22 lr.w t2, (t0) // t2 - load atomic
33 ALIGNED_PTR_2 t0, t1
39 lr.w t2, (t0) // t2 - load atomic
42 sc.w t3, t4, (t0) // t3 - atomic write result (0 - success)
51 ALIGNED_PTR_2 t0, t1
57 lr.w t2, (t0) // t2 - load atomic
60 sc.w t3, t4, (t0) // t3 - atomic write result (0 - success)
72 ALIGNED_PTR_2 t0, t1
80 lr.w t2, (t0) // t2 - load atomic
[all …]
/hal_espressif-latest/components/riscv/
Dvectors.S27 sw t0, RV_STK_T0(sp)
57 csrr t0, mepc
58 sw t0, RV_STK_MEPC(sp)
67 lw t0, RV_STK_T0(sp)
98 lw t0, RV_STK_MEPC(sp)
99 csrw mepc, t0
151 addi t0, sp, RV_STK_FRMSZ /* restore sp with the value when trap happened */
154 sw t0, RV_STK_SP(sp)
155 csrr t0, mepc
156 sw t0, RV_STK_MEPC(sp)
[all …]
/hal_espressif-latest/components/esp_system/port/arch/riscv/
Dexpression_with_stack_asm.S21 mv t0, sp
30 sw t0, 0(sp)
37 lw t0, 0(sp)
43 mv sp, t0
/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Daes-internal-enc.c25 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()
Daes-internal-dec.c78 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()
Dsha256-internal.c86 u32 S[8], W[64], t0, t1; in sha256_compress() local
107 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \ in sha256_compress()
109 d += t0; \ in sha256_compress()
110 h = t0 + t1; in sha256_compress()
Dsha512-internal.c112 u64 S[8], t0, t1; in sha512_compress() local
137 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i]; in sha512_compress()
142 S[4] = S[3] + t0; in sha512_compress()
146 S[0] = t0 + t1; in sha512_compress()
/hal_espressif-latest/components/mbedtls/port/sha/dma/
Dsha.c148 uint8_t t0, t1, t2, t_len; in esp_sha_512_t_init_hash() local
159 t0 = t % 10; in esp_sha_512_t_init_hash()
161 t_string = (uint32_t)((1 << 15) | ((0x30 + t0) << 16) | in esp_sha_512_t_init_hash()
165 t0 = t % 10; in esp_sha_512_t_init_hash()
168 t_string = (uint32_t)((1 << 7) | ((0x30 + t0) << 8) | in esp_sha_512_t_init_hash()
/hal_espressif-latest/components/riscv/include/riscv/
Drvruntime-frames.h51 STRUCT_FIELD (long, 4, RV_STK_T0, t0) /* Temporary/alternate link register */
Drvsleep-frames.h53 STRUCT_FIELD (long, 4, RV_SLP_CTX_T0, t0) /* Temporary/alternate link register */
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/
Daes.c538 uint_8t tt, t0, t1, t2, t3; local
540 t0 = ctx->ksch[cc - 4];
545 tt = t0;
546 t0 = s_box(t1) ^ rc;
552 t0 = s_box(t0);
558 ctx->ksch[cc + 0] = ctx->ksch[tt + 0] ^ t0;
/hal_espressif-latest/components/soc/esp32h2/include/soc/
Daes_struct.h474 volatile uint32_t t0[4]; member
/hal_espressif-latest/components/soc/esp32c6/include/soc/
Daes_struct.h474 volatile uint32_t t0[4]; member