Home
last modified time | relevance | path

Searched refs:_count (Results 1 – 4 of 4) sorted by relevance

/Zephyr-latest/subsys/net/ip/
Dnbr.h37 #define NET_NBR_LLADDR_INIT(_name, _count) \ argument
38 struct net_nbr_lladdr _name[_count] = { }
75 #define NET_NBR_POOL_INIT(_name, _count, _size, _remove) \ argument
79 } _name[_count] = { \
80 [0 ... (_count - 1)] = { .nbr = { \
/Zephyr-latest/include/zephyr/net/
Dsocket_service.h98 #define __z_net_socket_service_define(_name, _cb, _count, ...) \ argument
101 __z_net_socket_svc_get_name(_name)[_count] = { \
102 [0 ... ((_count) - 1)] = { \
111 .pev_len = (_count), \
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/
Dull_internal.h114 #define RXFIFO_DEFINE(_name, _size, _count, _extra_links) \ argument
115 MFIFO_DEFINE(_name, sizeof(void *), _count); \
121 } mem_##_name = { .size = MROUND(_size), .count = _count, \
126 uint8_t pool[MROUND(_size) * (_count)]; \
131 uint8_t pool[sizeof(memq_link_t) * (_count + _extra_links)]; \
153 #define RXFIFO_ALLOC(_name, _count) \ argument
157 &mem_link_##_name.free, _count)
/Zephyr-latest/include/zephyr/
Dnet_buf.h1116 #define NET_BUF_POOL_USAGE_INIT(_pool, _count) \ argument
1117 IF_ENABLED(CONFIG_NET_BUF_POOL_USAGE, (.avail_count = ATOMIC_INIT(_count),)) \
1120 #define NET_BUF_POOL_INITIALIZER(_pool, _alloc, _bufs, _count, _ud_size, _destroy) \ argument
1124 .buf_count = _count, \
1125 .uninit_count = _count, \
1127 NET_BUF_POOL_USAGE_INIT(_pool, _count) \
1133 #define _NET_BUF_ARRAY_DEFINE(_name, _count, _ud_size) \ argument
1144 static struct _net_buf_##_name _net_buf_##_name[_count] __noinit
1176 #define NET_BUF_POOL_HEAP_DEFINE(_name, _count, _ud_size, _destroy) \ argument
1177 _NET_BUF_ARRAY_DEFINE(_name, _count, _ud_size); \
[all …]