Home
last modified time | relevance | path

Searched refs:hi (Results 1 – 19 of 19) sorted by relevance

/hal_espressif-2.7.6/components/fatfs/src/
Dffunicode.c15286 UINT i = 0, n, li, hi; in ff_uni2oem() local
15296 hi = sizeof CVTBL(uni2oem, FF_CODE_PAGE) / 4 - 1; in ff_uni2oem()
15299 i = li + (hi - li) / 2; in ff_uni2oem()
15304 hi = i; in ff_uni2oem()
15322 UINT i = 0, n, li, hi; in ff_oem2uni() local
15331 hi = sizeof CVTBL(oem2uni, FF_CODE_PAGE) / 4 - 1; in ff_oem2uni()
15334 i = li + (hi - li) / 2; in ff_oem2uni()
15339 hi = i; in ff_oem2uni()
15369 UINT i, n, li, hi; in ff_uni2oem() local
15388 case 932 : p = uni2oem932; hi = sizeof uni2oem932 / 4 - 1; break; in ff_uni2oem()
[all …]
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/jv/
Dbta_jv_api.c920 UINT32 hi = ((handle & BTA_JV_RFC_HDL_MASK) & ~BTA_JV_RFCOMM_MASK) - 1; in BTA_JvRfcommClose() local
924 if (hi < BTA_JV_MAX_RFC_CONN && bta_jv_cb.rfc_cb[hi].p_cback && in BTA_JvRfcommClose()
925 si < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si] && in BTA_JvRfcommClose()
929 p_msg->p_cb = &bta_jv_cb.rfc_cb[hi]; in BTA_JvRfcommClose()
1028 UINT32 hi = ((handle & BTA_JV_RFC_HDL_MASK) & ~BTA_JV_RFCOMM_MASK) - 1; in BTA_JvRfcommRead() local
1032 if (hi < BTA_JV_MAX_RFC_CONN && bta_jv_cb.rfc_cb[hi].p_cback && in BTA_JvRfcommRead()
1033 si < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si] && in BTA_JvRfcommRead()
1040 p_msg->p_cb = &bta_jv_cb.rfc_cb[hi]; in BTA_JvRfcommRead()
1061 UINT32 hi = ((handle & BTA_JV_RFC_HDL_MASK) & ~BTA_JV_RFCOMM_MASK) - 1; in BTA_JvRfcommGetPortHdl() local
1064 if (hi < BTA_JV_MAX_RFC_CONN && in BTA_JvRfcommGetPortHdl()
[all …]
Dbta_jv_act.c533 UINT32 hi = ((jv_handle & BTA_JV_RFC_HDL_MASK) & ~BTA_JV_RFCOMM_MASK) - 1; in bta_jv_free_set_pm_profile_cb() local
535 if (hi < BTA_JV_MAX_RFC_CONN && bta_jv_cb.rfc_cb[hi].p_cback && si in bta_jv_free_set_pm_profile_cb()
536 < BTA_JV_MAX_RFC_SR_SESSION && bta_jv_cb.rfc_cb[hi].rfc_hdl[si]) { in bta_jv_free_set_pm_profile_cb()
537 tBTA_JV_PCB *p_pcb = bta_jv_rfc_port_to_pcb(bta_jv_cb.rfc_cb[hi].rfc_hdl[si]); in bta_jv_free_set_pm_profile_cb()
/hal_espressif-2.7.6/components/esp_timer/src/
Desp_timer_impl_lac.c104 uint32_t hi; member
136 uint32_t lo, hi; in esp_timer_impl_get_counter_reg() local
154 hi = REG_READ(COUNT_HI_REG); in esp_timer_impl_get_counter_reg()
160 .hi = hi in esp_timer_impl_get_counter_reg()
184 REG_WRITE(ALARM_HI_REG, alarm.hi); in esp_timer_impl_set_alarm()
223 REG_WRITE(LOAD_HI_REG, dst.hi); in esp_timer_impl_advance()
298 .hi = REG_READ(ALARM_HI_REG) in esp_timer_impl_get_alarm_reg()
/hal_espressif-2.7.6/components/hal/esp32s3/
Dsystimer_hal.c26 uint32_t lo, lo_start, hi; in systimer_hal_get_counter_value() local
38 hi = systimer_ll_get_counter_value_high(counter_id); in systimer_hal_get_counter_value()
44 .hi = hi in systimer_hal_get_counter_value()
/hal_espressif-2.7.6/components/hal/esp32c3/
Dsystimer_hal.c29 uint32_t lo, lo_start, hi; in systimer_hal_get_counter_value() local
41 hi = systimer_ll_get_counter_value_high(counter_id); in systimer_hal_get_counter_value()
47 .hi = hi in systimer_hal_get_counter_value()
/hal_espressif-2.7.6/components/hal/esp32s2/
Dsystimer_hal.c27 uint32_t lo, lo_start, hi; in systimer_hal_get_counter_value() local
39 hi = systimer_ll_get_counter_value_high(); in systimer_hal_get_counter_value()
45 .hi = hi in systimer_hal_get_counter_value()
/hal_espressif-2.7.6/components/mbedtls/port/aes/
Desp_aes_gcm.c155 uint64_t hi, lo; in gcm_gen_table() local
162 GET_UINT32_BE( hi, h, 0 ); in gcm_gen_table()
164 vh = (uint64_t) hi << 32 | lo; in gcm_gen_table()
166 GET_UINT32_BE( hi, h, 8 ); in gcm_gen_table()
168 vl = (uint64_t) hi << 32 | lo; in gcm_gen_table()
219 unsigned char lo, hi, rem; in gcm_mult() local
229 hi = x[i] >> 4; in gcm_mult()
245 zh ^= ctx->HH[hi]; in gcm_mult()
246 zl ^= ctx->HL[hi]; in gcm_mult()
/hal_espressif-2.7.6/components/hal/include/hal/
Dsystimer_types.h32 uint64_t hi : SOC_SYSTIMER_BIT_WIDTH_HI; /*!< High part of counter value */ member
/hal_espressif-2.7.6/examples/bluetooth/esp_ble_mesh/common_components/light_driver/
Dlight_driver.c163 uint16_t hi = (hue / 60) % 6; in light_driver_hsv2rgb() local
164 uint16_t F = 100 * hue / 60 - 100 * hi; in light_driver_hsv2rgb()
169 switch (hi) { in light_driver_hsv2rgb()
257 uint16_t hi = (hue / 60) % 6; in light_driver_hsl2rgb() local
262 switch (hi) { in light_driver_hsl2rgb()
/hal_espressif-2.7.6/components/soc/esp32s3/include/soc/
Dtimer_group_struct.h41 uint32_t hi: 22; member
/hal_espressif-2.7.6/components/soc/esp32c3/include/soc/
Dtimer_group_struct.h39 uint32_t hi: 22; member
/hal_espressif-2.7.6/components/hal/esp32c3/include/hal/
Dtimer_ll.h103 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].cnt_high.hi << 32) | (hw->hw_timer[timer_num].cnt… in timer_ll_get_counter_value()
/hal_espressif-2.7.6/components/hal/esp32s3/include/hal/
Dtimer_ll.h104 …*timer_val = ((uint64_t) hw->hw_timer[timer_num].cnt_high.hi << 32) | (hw->hw_timer[timer_num].cnt… in timer_ll_get_counter_value()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/smp/
Daes.c515 uint_8t cc, rc, hi; local
535 hi = (keylen + 28) << 2;
536 ctx->rnd = (hi >> 4) - 1;
537 for ( cc = keylen, rc = 1; cc < hi; cc += 4 ) {
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/include/stack/
Dbtm_ble_api.h406 UINT16 hi; member
/hal_espressif-2.7.6/components/bt/host/bluedroid/bta/include/bta/
Dbta_api.h359 UINT16 hi; member
/hal_espressif-2.7.6/components/bt/host/bluedroid/btc/profile/std/gap/
Dbtc_gap_ble.c162 bta_adv_data->int_range.hi = p_adv_data->max_interval; in btc_to_bta_adv_data()
/hal_espressif-2.7.6/components/bt/host/bluedroid/stack/btm/
Dbtm_ble_gap.c2376 UINT16_TO_STREAM(p, p_data->int_range.hi); in btm_ble_build_adv_data()