Home
last modified time | relevance | path

Searched refs:_size (Results 1 – 25 of 27) sorted by relevance

12

/Zephyr-latest/include/zephyr/shell/
Dshell_history.h33 #define Z_SHELL_HISTORY_DEFINE(_name, _size) \ argument
35 _name##_ring_buf_data[_size]; \
38 .size = _size, \
Dshell_fprintf.h47 #define Z_SHELL_FPRINTF_DEFINE(_name, _user_ctx, _buf, _size, \ argument
56 .buffer_size = _size, \
Dshell_log_backend.h70 #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/
Darm_mpu.h50 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument
54 .size = _size, \
/Zephyr-latest/subsys/net/ip/
Dtcp_private.h38 #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
Dnbr.h75 #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/
Darc_mpu.h96 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument
100 .size = _size, \
/Zephyr-latest/include/zephyr/arch/arm/mmu/
Darm_mmu.h58 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument
63 .size = _size, \
/Zephyr-latest/include/zephyr/
Dnet_buf.h48 #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/
Dull_internal.h114 #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/
Dsize_report579 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/
Dlog_output.h127 #define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \ argument
133 .size = _size, \
/Zephyr-latest/include/zephyr/net/
Dnet_pkt_filter.h300 #define NPF_SIZE_MIN(_name, _size) \ argument
302 .min = (_size), \
313 #define NPF_SIZE_MAX(_name, _size) \ argument
316 .max = (_size), \
Dnet_pkt.h1874 #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/
Darm_mmu.h143 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument
148 .size = _size, \
/Zephyr-latest/drivers/serial/
Duart_ifx_cat1.c277 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/
Dsdp.h345 #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/
Dinference_process.cpp46 DataPtr::DataPtr(void *_data, size_t _size) : data(_data), size(_size) in DataPtr() argument
/Zephyr-latest/arch/arm/core/mpu/
Darm_mpu_v8_internal.h461 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/
Ddevicetree_regions.h152 #define _DT_SECTION_SIZE(node_id) UTIL_CAT(_DT_SECTION_PREFIX(node_id), _size)
/Zephyr-latest/tests/arch/x86/pagetables/src/
Dmain.c39 virt < (LPTR(name, _start) + LSIZE(name, _size)))
/Zephyr-latest/kernel/
Dmmu.c135 #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/
Dscatter_script.cmake95 "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/
Dld_script.cmake114 … 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/
Dbicrgen.py54 self._size = int(self._reg.find("size").text, 0) // 8
64 return self._size

12