/hal_espressif-3.7.0/components/esp_timer/src/ |
D | esp_timer_impl_lac.c | 89 uint32_t lo; member 121 uint32_t lo, hi; in esp_timer_impl_get_counter_reg() local 129 lo = REG_READ(COUNT_LO_REG); in esp_timer_impl_get_counter_reg() 130 } while (lo == lo_start && div-- > 0); in esp_timer_impl_get_counter_reg() 138 lo_start = lo; in esp_timer_impl_get_counter_reg() 140 lo = REG_READ(COUNT_LO_REG); in esp_timer_impl_get_counter_reg() 141 } while (lo != lo_start); in esp_timer_impl_get_counter_reg() 144 .lo = lo, in esp_timer_impl_get_counter_reg() 169 REG_WRITE(ALARM_LO_REG, alarm.lo); in esp_timer_impl_set_alarm_id() 213 REG_WRITE(LOAD_LO_REG, dst.lo); in esp_timer_impl_set() [all …]
|
/hal_espressif-3.7.0/components/hal/ |
D | lp_timer_hal.c | 31 uint32_t lo = lp_timer_ll_get_counter_value_low(lp_timer_context.dev, 0); in lp_timer_hal_get_cycle_count() local 35 .lo = lo, in lp_timer_hal_get_cycle_count()
|
D | systimer_hal.c | 53 uint32_t lo, lo_start, hi; in systimer_hal_get_counter_value() local 64 lo = lo_start; in systimer_hal_get_counter_value() 67 } while (lo_start != lo); in systimer_hal_get_counter_value() 70 .lo = lo, in systimer_hal_get_counter_value()
|
/hal_espressif-3.7.0/components/soc/esp32c6/include/soc/ |
D | systimer_struct.h | 115 } lo; member 140 } lo; member 181 } lo; member 324 } lo; member
|
D | lp_timer_struct.h | 19 } lo; member 47 } lo; member
|
/hal_espressif-3.7.0/components/soc/esp32h2/include/soc/ |
D | systimer_struct.h | 115 } lo; member 140 } lo; member 181 } lo; member 324 } lo; member
|
D | lp_timer_struct.h | 19 } lo; member 47 } lo; member
|
/hal_espressif-3.7.0/components/mbedtls/port/aes/ |
D | esp_aes_gcm.c | 141 uint64_t hi, lo; in gcm_gen_table() local 149 GET_UINT32_BE( lo, h, 4 ); in gcm_gen_table() 150 vh = (uint64_t) hi << 32 | lo; in gcm_gen_table() 153 GET_UINT32_BE( lo, h, 12 ); in gcm_gen_table() 154 vl = (uint64_t) hi << 32 | lo; in gcm_gen_table() 205 unsigned char lo, hi, rem; in gcm_mult() local 208 lo = x[15] & 0xf; in gcm_mult() 210 zh = ctx->HH[lo]; in gcm_mult() 211 zl = ctx->HL[lo]; in gcm_mult() 214 lo = x[i] & 0xf; in gcm_mult() [all …]
|
/hal_espressif-3.7.0/components/soc/esp32s3/include/soc/ |
D | systimer_struct.h | 120 } lo; member 146 } lo; member 195 } lo; member 331 } lo; member
|
/hal_espressif-3.7.0/components/hal/esp32s3/include/hal/ |
D | systimer_ll.h | 71 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value() 76 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low() 94 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target() 99 …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()
|
/hal_espressif-3.7.0/components/hal/esp32c3/include/hal/ |
D | systimer_ll.h | 71 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value() 76 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low() 94 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target() 99 …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()
|
/hal_espressif-3.7.0/components/hal/esp32c2/include/hal/ |
D | systimer_ll.h | 71 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value() 76 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low() 94 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target() 99 …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()
|
/hal_espressif-3.7.0/components/hal/esp32c6/include/hal/ |
D | systimer_ll.h | 80 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value() 85 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low() 103 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target() 108 …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()
|
D | lp_timer_ll.h | 26 dev->target[timer_id].lo.target_lo = value & 0xFFFFFFFF; in lp_timer_ll_set_alarm_target() 36 return dev->counter[buffer_id].lo.counter_lo; in lp_timer_ll_get_counter_value_low()
|
/hal_espressif-3.7.0/components/hal/esp32h2/include/hal/ |
D | systimer_ll.h | 80 dev->unit_load_val[counter_id].lo.timer_unit_load_lo = value & 0xFFFFFFFF; in systimer_ll_set_counter_value() 85 return dev->unit_val[counter_id].lo.timer_unit_value_lo; in systimer_ll_get_counter_value_low() 103 dev->target_val[alarm_id].lo.timer_target_lo = value & 0xFFFFFFFF; in systimer_ll_set_alarm_target() 108 …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()
|
D | lp_timer_ll.h | 25 dev->target[timer_id].lo.target_lo = value & 0xFFFFFFFF; in lp_timer_ll_set_alarm_target() 35 return dev->counter[timer_id].lo.counter_lo; in lp_timer_ll_get_counter_value_low()
|
/hal_espressif-3.7.0/components/esp_hw_support/ |
D | sleep_wake_stub.c | 98 uint32_t lo = lp_timer_ll_get_counter_value_low(&LP_TIMER, 0); in esp_wake_stub_set_wakeup_time() local 100 uint64_t rtc_curr_count = (uint64_t)hi << 32 | lo; in esp_wake_stub_set_wakeup_time()
|
/hal_espressif-3.7.0/components/soc/esp32c2/include/soc/ |
D | systimer_struct.h | 111 } lo; member 137 } lo; member 185 } lo; member
|
D | timer_group_struct.h | 515 volatile timg_txlo_reg_t lo; member
|
/hal_espressif-3.7.0/components/soc/esp32c3/include/soc/ |
D | systimer_struct.h | 118 } lo; member 143 } lo; member 190 } lo; member
|
/hal_espressif-3.7.0/components/hal/include/hal/ |
D | lp_timer_types.h | 22 uint32_t lo: SOC_LP_TIMER_BIT_WIDTH_LO; /*!< Low part of counter value */ member
|
D | systimer_types.h | 24 uint64_t lo : SOC_SYSTIMER_BIT_WIDTH_LO; /*!< Low part of counter value */ member
|
/hal_espressif-3.7.0/components/hal/esp32s2/include/hal/ |
D | systimer_ll.h | 104 dev->target_val[alarm_id].lo.timer_target_lo = value; in systimer_ll_set_alarm_target() 109 …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()
|
/hal_espressif-3.7.0/components/soc/esp32s2/include/soc/ |
D | systimer_struct.h | 120 } lo; member
|
/hal_espressif-3.7.0/components/hal/esp32/include/hal/ |
D | timer_ll.h | 158 return ((uint64_t) hw->hw_timer[timer_num].hi.tx_hi << 32) | (hw->hw_timer[timer_num].lo.tx_lo); in timer_ll_get_counter_value()
|