Home
last modified time | relevance | path

Searched refs:sys_get_be16 (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_byteorder.h404 static inline uint16_t sys_get_be16(const uint8_t src[2]) in sys_get_be16() function
421 return ((uint32_t)src[0] << 16) | sys_get_be16(&src[1]); in sys_get_be24()
436 return ((uint32_t)sys_get_be16(&src[0]) << 16) | sys_get_be16(&src[2]); in sys_get_be32()
451 return ((uint64_t)sys_get_be32(&src[0]) << 32) | sys_get_be16(&src[4]); in sys_get_be48()
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/
Dprov.c633 algorithms = sys_get_be16(&data[1]); in prov_capabilities()
640 output_action = sys_get_be16(&data[6]); in prov_capabilities()
645 input_action = sys_get_be16(&data[9]); in prov_capabilities()
1231 net_idx = sys_get_be16(&pdu[16]); in prov_data()
1234 addr = sys_get_be16(&pdu[23]); in prov_data()
Dnet.c46 #define SRC(pdu) (sys_get_be16(&(pdu)[5]))
47 #define DST(pdu) (sys_get_be16(&(pdu)[7]))
Dcrypto.c808 *addr = (sys_get_be16(&tmp[14]) & 0x3fff) | 0x8000; in bt_mesh_virtual_addr()
Dprovisioner_prov.c1700 algorithms = sys_get_be16(&data[1]);
1731 output_action = sys_get_be16(&data[6]);
1753 input_action = sys_get_be16(&data[9]);
Dfriend.c494 src = sys_get_be16(&buf->data[5]); in encrypt_friend_pdu()