Home
last modified time | relevance | path

Searched refs:s0 (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/src/crypto/
Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelEncrypt() local
34 s0 = GETU32(pt ) ^ rk[0]; in rijndaelEncrypt()
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0]; in rijndaelEncrypt()
88 PUTU32(ct , s0); in rijndaelEncrypt()
Daes-internal-dec.c78 u32 s0, s1, s2, s3, t0, t1, t2, t3; in rijndaelDecrypt() local
87 s0 = GETU32(ct ) ^ rk[0]; in rijndaelDecrypt()
140 s0 = TD41(t0) ^ TD42(t3) ^ TD43(t2) ^ TD44(t1) ^ rk[0]; in rijndaelDecrypt()
141 PUTU32(pt , s0); in rijndaelDecrypt()
/hal_espressif-latest/components/bt/porting/ext/tinycrypt/src/
Dsha256.c184 unsigned int s0, s1; in compress() local
203 s0 = work_space[(i+1)&0x0f]; in compress()
204 s0 = sigma0(s0); in compress()
208 t1 = work_space[i&0xf] += s0 + s1 + work_space[(i+9)&0xf]; in compress()
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/tinycrypt/src/
Dsha256.c184 unsigned int s0, s1; in compress() local
203 s0 = work_space[(i + 1) & 0x0f]; in compress()
204 s0 = sigma0(s0); in compress()
208 t1 = work_space[i & 0xf] += s0 + s1 + work_space[(i + 9) & 0xf]; in compress()
/hal_espressif-latest/components/esp_hw_support/
Dsleep_cpu_asm.S54 sw s0, RV_SLP_CTX_S0(t0)
235 lw s0, RV_SLP_CTX_S0(t0)
/hal_espressif-latest/components/riscv/
Dvectors.S30 sw s0, RV_STK_S0(sp)
70 lw s0, RV_STK_S0(sp)
/hal_espressif-latest/components/riscv/include/riscv/
Drvruntime-frames.h54 STRUCT_FIELD (long, 4, RV_STK_S0, s0) /* Saved register/frame pointer */
Drvsleep-frames.h56 STRUCT_FIELD (long, 4, RV_SLP_CTX_S0, s0) /* Saved register/frame pointer */
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dminiz.c1104 mz_uint s0, s1, n0, n1, sym, num_extra_bits; in tdefl_compress_lz_codes() local
1113 s0 = s_tdefl_small_dist_sym[match_dist & 511]; in tdefl_compress_lz_codes()
1117 sym = (match_dist < 512) ? s0 : s1; in tdefl_compress_lz_codes()
1555 mz_uint32 s0, s1; in tdefl_compress_fast() local
1571 s0 = s_tdefl_small_dist_sym[cur_match_dist & 511]; in tdefl_compress_fast()
1573 d->m_huff_count[1][(cur_match_dist < 512) ? s0 : s1]++; in tdefl_compress_fast()
1683 mz_uint32 s0, s1; in tdefl_record_match() local
1703 s0 = s_tdefl_small_dist_sym[match_dist & 511]; in tdefl_record_match()
1705 d->m_huff_count[1][(match_dist < 512) ? s0 : s1]++; in tdefl_record_match()