Home
last modified time | relevance | path

Searched refs:UNALIGNED_GET (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_common/
Dmesh_buf.c264 val = UNALIGNED_GET((uint16_t *)buf->data); in net_buf_simple_pull_le16()
274 val = UNALIGNED_GET((uint16_t *)buf->data); in net_buf_simple_pull_be16()
286 val = UNALIGNED_GET((struct uint24 *)buf->data); in net_buf_simple_pull_le24()
298 val = UNALIGNED_GET((struct uint24 *)buf->data); in net_buf_simple_pull_be24()
308 val = UNALIGNED_GET((uint32_t *)buf->data); in net_buf_simple_pull_le32()
318 val = UNALIGNED_GET((uint32_t *)buf->data); in net_buf_simple_pull_be32()
330 val = UNALIGNED_GET((struct uint48 *)buf->data); in net_buf_simple_pull_le48()
342 val = UNALIGNED_GET((struct uint48 *)buf->data); in net_buf_simple_pull_be48()
352 val = UNALIGNED_GET((uint64_t *)buf->data); in net_buf_simple_pull_le64()
362 val = UNALIGNED_GET((uint64_t *)buf->data); in net_buf_simple_pull_be64()
/hal_espressif-2.7.6/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_buf.h24 #define UNALIGNED_GET(p) \ macro