Home
last modified time | relevance | path

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

/Zephyr-4.2.1/include/zephyr/net/
Dnet_ip.h280 #if !defined(NET_ALIGN_D)
281 #define NET_ALIGN_D(x) ROUND_UP(x, __alignof__(z_max_align_t)) macro
305 NET_ALIGN_D(sizeof(struct net_cmsghdr)) > \
320 #define NET_CMSG_DATA(cmsg) ((uint8_t *)(cmsg) + NET_ALIGN_D(sizeof(struct net_cmsghdr)))
328 #define NET_CMSG_SPACE(length) (NET_ALIGN_D(sizeof(struct net_cmsghdr)) + NET_ALIGN_H(length))
337 #define NET_CMSG_LEN(length) (NET_ALIGN_D(sizeof(struct net_cmsghdr)) + length)
Dnet_compat.h116 #define ALIGN_D(x) NET_ALIGN_D(x)