Searched refs:_count (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/subsys/net/ip/ |
D | nbr.h | 37 #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/ |
D | socket_service.h | 98 #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/ |
D | ull_internal.h | 114 #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/ |
D | net_buf.h | 1119 #define NET_BUF_POOL_USAGE_INIT(_pool, _count) \ argument 1120 IF_ENABLED(CONFIG_NET_BUF_POOL_USAGE, (.avail_count = ATOMIC_INIT(_count),)) \ 1124 #define NET_BUF_POOL_INITIALIZER(_pool, _alloc, _bufs, _count, _ud_size, _destroy) \ argument 1128 .buf_count = _count, \ 1129 .uninit_count = _count, \ 1131 NET_BUF_POOL_USAGE_INIT(_pool, _count) \ 1137 #define _NET_BUF_ARRAY_DEFINE(_name, _count, _ud_size) \ argument 1148 static struct _net_buf_##_name _net_buf_##_name[_count] __noinit 1180 #define NET_BUF_POOL_HEAP_DEFINE(_name, _count, _ud_size, _destroy) \ argument 1181 _NET_BUF_ARRAY_DEFINE(_name, _count, _ud_size); \ [all …]
|
/Zephyr-latest/drivers/dma/ |
D | dma_xmc4xxx.c | 185 if (block->type##_en && block->type##_count > 0 && !type.enabled) { \ 188 type.count = block->type##_count; \ 191 block->type##_count != type.count) { \
|