Home
last modified time | relevance | path

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

12

/hal_espressif-3.7.0/components/esp_timer/src/
Desp_timer_impl_lac.c89 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/
Dlp_timer_hal.c31 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()
Dsystimer_hal.c53 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/
Dsystimer_struct.h115 } lo; member
140 } lo; member
181 } lo; member
324 } lo; member
Dlp_timer_struct.h19 } lo; member
47 } lo; member
/hal_espressif-3.7.0/components/soc/esp32h2/include/soc/
Dsystimer_struct.h115 } lo; member
140 } lo; member
181 } lo; member
324 } lo; member
Dlp_timer_struct.h19 } lo; member
47 } lo; member
/hal_espressif-3.7.0/components/mbedtls/port/aes/
Desp_aes_gcm.c141 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/
Dsystimer_struct.h120 } lo; member
146 } lo; member
195 } lo; member
331 } lo; member
/hal_espressif-3.7.0/components/hal/esp32s3/include/hal/
Dsystimer_ll.h71 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/
Dsystimer_ll.h71 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/
Dsystimer_ll.h71 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/
Dsystimer_ll.h80 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()
Dlp_timer_ll.h26 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/
Dsystimer_ll.h80 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()
Dlp_timer_ll.h25 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/
Dsleep_wake_stub.c98 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/
Dsystimer_struct.h111 } lo; member
137 } lo; member
185 } lo; member
Dtimer_group_struct.h515 volatile timg_txlo_reg_t lo; member
/hal_espressif-3.7.0/components/soc/esp32c3/include/soc/
Dsystimer_struct.h118 } lo; member
143 } lo; member
190 } lo; member
/hal_espressif-3.7.0/components/hal/include/hal/
Dlp_timer_types.h22 uint32_t lo: SOC_LP_TIMER_BIT_WIDTH_LO; /*!< Low part of counter value */ member
Dsystimer_types.h24 uint64_t lo : SOC_SYSTIMER_BIT_WIDTH_LO; /*!< Low part of counter value */ member
/hal_espressif-3.7.0/components/hal/esp32s2/include/hal/
Dsystimer_ll.h104 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/
Dsystimer_struct.h120 } lo; member
/hal_espressif-3.7.0/components/hal/esp32/include/hal/
Dtimer_ll.h158 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()

12