Home
last modified time | relevance | path

Searched refs:nr (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-3.6.0/examples/wifi/roaming/main/
Droaming_example.c104 const uint8_t *nr; in get_btm_neighbor_list() local
127 nr = pos; in get_btm_neighbor_list()
165 MAC2STR(nr), WPA_GET_LE32(nr + ETH_ALEN), in get_btm_neighbor_list()
166 nr[ETH_ALEN + 4], nr[ETH_ALEN + 5], in get_btm_neighbor_list()
167 nr[ETH_ALEN + 6], in get_btm_neighbor_list()
174 len += snprintf(buf + len, MAX_NEIGHBOR_LEN - len, MACSTR, MAC2STR(nr)); in get_btm_neighbor_list()
178 len += snprintf(buf + len, MAX_NEIGHBOR_LEN - len, "0x%04x", WPA_GET_LE32(nr + ETH_ALEN)); in get_btm_neighbor_list()
181 len += snprintf(buf + len, MAX_NEIGHBOR_LEN - len, "%u", nr[ETH_ALEN + 4]); in get_btm_neighbor_list()
184 len += snprintf(buf + len, MAX_NEIGHBOR_LEN - len, "%u", nr[ETH_ALEN + 5]); in get_btm_neighbor_list()
187 len += snprintf(buf + len, MAX_NEIGHBOR_LEN - len, "%u", nr[ETH_ALEN + 6]); in get_btm_neighbor_list()
/hal_espressif-3.6.0/components/esp_common/include/
Desp_bit_defs.h87 #define BIT(nr) (1UL << (nr)) argument
94 #define BIT(nr) (1 << (nr)) argument
/hal_espressif-3.6.0/components/ulp/ulp_riscv/include/ulp_riscv/
Dulp_riscv_register_ops.h40 #define BIT(nr) (1UL << (nr)) argument
42 #define BIT(nr) (1 << (nr))
/hal_espressif-3.6.0/components/soc/esp32c3/include/soc/
Dsoc.h88 #define BIT(nr) (1UL << (nr)) argument
90 #define BIT(nr) (1 << (nr)) argument
/hal_espressif-3.6.0/components/soc/esp32h2/include/soc/
Dsoc.h113 #define BIT(nr) (1UL << (nr)) argument
115 #define BIT(nr) (1 << (nr)) argument
/hal_espressif-3.6.0/components/soc/esp32s2/include/soc/
Dsoc.h114 #define BIT(nr) (1UL << (nr)) argument
116 #define BIT(nr) (1 << (nr)) argument
/hal_espressif-3.6.0/components/esptool_py/esptool/flasher_stub/include/
Drom_functions.h181 #define BIT(nr) (1UL << (nr)) argument
/hal_espressif-3.6.0/components/esp_rom/include/esp32s3/rom/
Dcache.h24 #define BIT(nr) (1 << (nr)) argument
/hal_espressif-3.6.0/examples/protocols/websocket/
Dexample_test.py45 for nr, conn in self.server.connections.items():
/hal_espressif-3.6.0/components/
DREADME.md54 - `BIT(nr)` and other bit manipulation utilities in the future
/hal_espressif-3.6.0/components/protocomm/test/
Dtest_protocomm.c560 if (session->ctx_aes.rk != NULL && session->ctx_aes.nr > 0) { in test_req_endpoint()