/Zephyr-latest/include/zephyr/shell/ |
D | shell_history.h | 33 #define Z_SHELL_HISTORY_DEFINE(_name, _size) \ argument 35 _name##_ring_buf_data[_size]; \ 38 .size = _size, \
|
D | shell_fprintf.h | 47 #define Z_SHELL_FPRINTF_DEFINE(_name, _user_ctx, _buf, _size, \ argument 56 .buffer_size = _size, \
|
D | shell_log_backend.h | 70 #define Z_SHELL_LOG_BACKEND_DEFINE(_name, _buf, _size, _queue_size, _timeout) \ argument 73 _buf, _size); \ 96 #define Z_SHELL_LOG_BACKEND_DEFINE(_name, _buf, _size, _queue_size, _timeout) argument
|
/Zephyr-latest/include/zephyr/arch/arm/mpu/ |
D | arm_mpu.h | 50 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument 54 .size = _size, \
|
/Zephyr-latest/subsys/net/ip/ |
D | tcp_private.h | 38 #define tcp_malloc(_size) \ argument 39 tp_malloc(_size, tp_basename(__FILE__), __LINE__, __func__) 40 #define tcp_calloc(_nmemb, _size) \ argument 41 tp_calloc(_nmemb, _size, tp_basename(__FILE__), __LINE__, __func__) 44 #define tcp_malloc(_size) k_malloc(_size) argument 45 #define tcp_calloc(_nmemb, _size) k_calloc(_nmemb, _size) argument
|
D | nbr.h | 75 #define NET_NBR_POOL_INIT(_name, _count, _size, _remove) \ argument 78 uint8_t data[ROUND_UP(_size, 4)] __net_nbr_align; \ 83 .size = ROUND_UP(_size, 4) } }, \
|
/Zephyr-latest/include/zephyr/arch/arc/v2/mpu/ |
D | arc_mpu.h | 96 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument 100 .size = _size, \
|
/Zephyr-latest/include/zephyr/arch/arm/mmu/ |
D | arm_mmu.h | 58 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument 63 .size = _size, \
|
/Zephyr-latest/include/zephyr/ |
D | net_buf.h | 48 #define NET_BUF_SIMPLE_DEFINE(_name, _size) \ argument 49 uint8_t net_buf_data_##_name[_size]; \ 53 .size = _size, \ 67 #define NET_BUF_SIMPLE_DEFINE_STATIC(_name, _size) \ argument 68 static __noinit uint8_t net_buf_data_##_name[_size]; \ 72 .size = _size, \ 125 #define NET_BUF_SIMPLE(_size) \ argument 128 uint8_t data[_size]; \ 130 .buf.size = _size, \ 1299 #define NET_BUF_POOL_DEFINE(_name, _count, _size, _ud_size, _destroy) \ argument [all …]
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_internal.h | 114 #define RXFIFO_DEFINE(_name, _size, _count, _extra_links) \ argument 121 } mem_##_name = { .size = MROUND(_size), .count = _count, \ 126 uint8_t pool[MROUND(_size) * (_count)]; \
|
/Zephyr-latest/scripts/footprint/ |
D | size_report | 579 self._size = size 600 size += child._size 647 parent._size += size 706 node_zephyr_base._size = sum_node_children_size(node_zephyr_base) 707 node_output_dir._size = sum_node_children_size(node_output_dir) 720 node_workspace._size = sum_node_children_size(node_workspace) 726 root._size = total_size 731 node_hidden_syms._size = root._size - sum_node_children_size(root) 752 s = str(row.node._size).rjust(100-f) 753 percent = 100 * float(row.node._size) / float(total_size)
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_output.h | 127 #define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \ argument 133 .size = _size, \
|
/Zephyr-latest/include/zephyr/net/ |
D | net_pkt_filter.h | 300 #define NPF_SIZE_MIN(_name, _size) \ argument 302 .min = (_size), \ 313 #define NPF_SIZE_MAX(_name, _size) \ argument 316 .max = (_size), \
|
D | net_pkt.h | 1874 #define net_pkt_alloc_buffer(_pkt, _size, _proto, _timeout) \ argument 1875 net_pkt_alloc_buffer_debug(_pkt, _size, _proto, _timeout, \ 1881 #define net_pkt_alloc_buffer_raw(_pkt, _size, _timeout) \ argument 1882 net_pkt_alloc_buffer_raw_debug(_pkt, _size, _timeout, \ 1892 #define net_pkt_alloc_with_buffer(_iface, _size, _family, \ argument 1894 net_pkt_alloc_with_buffer_debug(_iface, _size, _family, \ 1905 #define net_pkt_rx_alloc_with_buffer(_iface, _size, _family, \ argument 1907 net_pkt_rx_alloc_with_buffer_debug(_iface, _size, _family, \ 1918 #define net_pkt_alloc_buffer_with_reserve(_pkt, _size, _reserve, _proto, _timeout) \ argument 1919 net_pkt_alloc_buffer_with_reserve_debug(_pkt, _size, _reserve, _proto, \
|
/Zephyr-latest/include/zephyr/arch/arm64/ |
D | arm_mmu.h | 143 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument 148 .size = _size, \
|
/Zephyr-latest/drivers/serial/ |
D | uart_ifx_cat1.c | 277 size_t _size = (size_t) size; in ifx_cat1_uart_fifo_fill() local 279 (void)cyhal_uart_write(&data->obj, (uint8_t *) tx_data, &_size); in ifx_cat1_uart_fifo_fill() 280 return (int) _size; in ifx_cat1_uart_fifo_fill() 288 size_t _size = (size_t) size; in ifx_cat1_uart_fifo_read() local 290 (void)cyhal_uart_read(&data->obj, rx_data, &_size); in ifx_cat1_uart_fifo_read() 291 return (int) _size; in ifx_cat1_uart_fifo_read()
|
/Zephyr-latest/include/zephyr/bluetooth/classic/ |
D | sdp.h | 345 #define BT_SDP_TYPE_SIZE_VAR(_type, _size) .type = _type, \ argument 346 .data_size = _size, \ 348 BT_SDP_SIZE_INDEX_OFFSET) + _size + 1
|
/Zephyr-latest/samples/modules/tflite-micro/tflm_ethosu/src/ |
D | inference_process.cpp | 46 DataPtr::DataPtr(void *_data, size_t _size) : data(_data), size(_size) in DataPtr() argument
|
/Zephyr-latest/arch/arm/core/mpu/ |
D | arm_mpu_v8_internal.h | 461 uint32_t _size = (uint32_t)size; in mpu_buffer_validate() local 464 if (arm_cmse_addr_range_readwrite_ok(_addr, _size, 1)) { in mpu_buffer_validate() 468 if (arm_cmse_addr_range_read_ok(_addr, _size, 1)) { in mpu_buffer_validate() 479 int32_t r_index_last = arm_cmse_mpu_region_get(_addr + _size - 1); in mpu_buffer_validate()
|
/Zephyr-latest/include/zephyr/linker/ |
D | devicetree_regions.h | 152 #define _DT_SECTION_SIZE(node_id) UTIL_CAT(_DT_SECTION_PREFIX(node_id), _size)
|
/Zephyr-latest/tests/arch/x86/pagetables/src/ |
D | main.c | 39 virt < (LPTR(name, _start) + LSIZE(name, _size)))
|
/Zephyr-latest/kernel/ |
D | mmu.c | 135 #define VIRT_FOREACH(_base, _size, _pos) \ argument 137 (_pos) < ((uint8_t *)(_base) + (_size)); (_pos) += CONFIG_MMU_PAGE_SIZE) 139 #define PHYS_FOREACH(_base, _size, _pos) \ argument 141 (_pos) < ((uintptr_t)(_base) + (_size)); (_pos) += CONFIG_MMU_PAGE_SIZE)
|
/Zephyr-latest/cmake/linker/armlink/ |
D | scatter_script.cmake | 95 "RESOLVE __${name_clean}_size AS Image$$${name_clean}${ZI}$$Length\n" 98 create_symbol(OBJECT ${REGION_OBJECT} SYMBOL __${name_clean}_size 133 create_symbol(OBJECT ${REGION_OBJECT} SYMBOL __${name}_size
|
/Zephyr-latest/cmake/linker/ld/ |
D | ld_script.cmake | 114 … set(${STRING_STRING} "${${STRING_STRING}}\n __${name}_size = __${name}_end - __${name}_start;\n") 313 set(TEMP "${TEMP}\n__${name_clean}_size = __${name_clean}_end - __${name_clean}_start;")
|
/Zephyr-latest/soc/nordic/nrf54h/bicr/ |
D | bicrgen.py | 54 self._size = int(self._reg.find("size").text, 0) // 8 64 return self._size
|