Home
last modified time | relevance | path

Searched refs:lo (Results 1 – 22 of 22) sorted by relevance

/hal_espressif-3.6.0/components/esp_timer/src/
Desp_timer_impl_lac.c104 uint32_t lo; member
134 uint32_t lo, hi; in esp_timer_impl_get_counter_reg() local
142 lo = REG_READ(COUNT_LO_REG); in esp_timer_impl_get_counter_reg()
143 } while (lo == lo_start && div-- > 0); in esp_timer_impl_get_counter_reg()
151 lo_start = lo; in esp_timer_impl_get_counter_reg()
153 lo = REG_READ(COUNT_LO_REG); in esp_timer_impl_get_counter_reg()
154 } while (lo != lo_start); in esp_timer_impl_get_counter_reg()
157 .lo = lo, in esp_timer_impl_get_counter_reg()
185 REG_WRITE(ALARM_LO_REG, alarm.lo); in esp_timer_impl_set_alarm_id()
230 REG_WRITE(LOAD_LO_REG, dst.lo); in esp_timer_impl_advance()
[all …]
/hal_espressif-3.6.0/components/mbedtls/port/aes/
Desp_aes_gcm.c152 uint64_t hi, lo; in gcm_gen_table() local
160 GET_UINT32_BE( lo, h, 4 ); in gcm_gen_table()
161 vh = (uint64_t) hi << 32 | lo; in gcm_gen_table()
164 GET_UINT32_BE( lo, h, 12 ); in gcm_gen_table()
165 vl = (uint64_t) hi << 32 | lo; in gcm_gen_table()
216 unsigned char lo, hi, rem; in gcm_mult() local
219 lo = x[15] & 0xf; in gcm_mult()
221 zh = ctx->HH[lo]; in gcm_mult()
222 zl = ctx->HL[lo]; in gcm_mult()
225 lo = x[i] & 0xf; in gcm_mult()
[all …]
/hal_espressif-3.6.0/components/hal/
Dsystimer_hal.c32 uint32_t lo, lo_start, hi; in systimer_hal_get_counter_value() local
43 lo = lo_start; in systimer_hal_get_counter_value()
46 } while (lo_start != lo); in systimer_hal_get_counter_value()
49 .lo = lo, in systimer_hal_get_counter_value()
/hal_espressif-3.6.0/components/soc/esp32s3/include/soc/
Dsystimer_struct.h120 } lo; member
146 } lo; member
195 } lo; member
331 } lo; member
Dtimer_group_struct.h520 volatile timg_tnlo_reg_t lo; member
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/scripts/
Dsquare_avr.py22 def lo(i): function
41 emit("ld r%s, x+", lo(i))
49 emit("mul %s, %s", lo(0), hi(0))
56 emit("mul %s, %s", lo(0), hi(0))
66 emit("mul r%s, r%s", lo(i), hi(r - i))
84 emit("mul r%s, r%s", lo(i), hi_r[h - 1 - i])
/hal_espressif-3.6.0/components/hal/esp32h2/include/hal/
Dsystimer_ll.h75 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value()
80 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low()
98 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target()
103 …ev->target_val[alarm_id].hi.timer_target_hi) << 32) | dev->target_val[alarm_id].lo.timer_target_lo; in systimer_ll_get_alarm_target()
Dtimer_ll.h113 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].hi.tx_hi << 32) | (hw->hw_timer[timer_num].lo.tx_… in timer_ll_get_counter_value()
/hal_espressif-3.6.0/components/hal/esp32s3/include/hal/
Dsystimer_ll.h76 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value()
81 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low()
99 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target()
104 …ev->target_val[alarm_id].hi.timer_target_hi) << 32) | dev->target_val[alarm_id].lo.timer_target_lo; in systimer_ll_get_alarm_target()
Dtimer_ll.h113 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].hi.tn_hi << 32) | (hw->hw_timer[timer_num].lo.tn_… in timer_ll_get_counter_value()
/hal_espressif-3.6.0/components/hal/esp32c3/include/hal/
Dsystimer_ll.h75 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value()
80 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low()
98 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target()
103 …ev->target_val[alarm_id].hi.timer_target_hi) << 32) | dev->target_val[alarm_id].lo.timer_target_lo; in systimer_ll_get_alarm_target()
Dtimer_ll.h113 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].hi.tx_hi << 32) | (hw->hw_timer[timer_num].lo.tx_… in timer_ll_get_counter_value()
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/
Dsystimer_struct.h118 } lo; member
143 } lo; member
190 } lo; member
Dtimer_group_struct.h519 volatile timg_txlo_reg_t lo; member
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/
Dsystimer_struct.h118 } lo; member
143 } lo; member
190 } lo; member
Dtimer_group_struct.h519 volatile timg_txlo_reg_t lo; member
/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/
Dsystimer_ll.h106 dev->target_val[alarm_id].lo.timer_target_lo = value; in systimer_ll_set_alarm_target()
111 …ev->target_val[alarm_id].hi.timer_target_hi) << 32) | dev->target_val[alarm_id].lo.timer_target_lo; in systimer_ll_get_alarm_target()
Dtimer_ll.h108 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].hi.tx_hi << 32) | (hw->hw_timer[timer_num].lo.tx_… in timer_ll_get_counter_value()
/hal_espressif-3.6.0/components/hal/include/hal/
Dsystimer_types.h31 uint64_t lo : SOC_SYSTIMER_BIT_WIDTH_LO; /*!< Low part of counter value */ member
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/
Dsystimer_struct.h120 } lo; member
Dtimer_group_struct.h738 volatile timg_txlo_reg_t lo; member
/hal_espressif-3.6.0/components/mbedtls/esp_crt_bundle/
Dcacrt_all.pem2572 BBYEFIHEjMz15DD/pQwIX4wVZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo