Home
last modified time | relevance | path

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

12

/Zephyr-Core-3.4.0/include/zephyr/shell/
Dshell_history.h33 #define Z_SHELL_HISTORY_DEFINE(_name, _size) \ argument
35 _name##_ring_buf_data[_size]; \
38 .size = _size, \
Dshell_uart.h34 #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) \ argument
35 RING_BUF_DECLARE(_name##_tx_ringbuf, _size)
46 #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) /* Empty */ argument
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
Dshell_fprintf.h47 #define Z_SHELL_FPRINTF_DEFINE(_name, _user_ctx, _buf, _size, \ argument
56 .buffer_size = _size, \
/Zephyr-Core-3.4.0/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.h78 #define NET_NBR_POOL_INIT(_name, _count, _size, _remove, _extra_size) \ argument
81 uint8_t data[ROUND_UP(_size, 4)] __net_nbr_align; \
87 .size = ROUND_UP(_size, 4), \
/Zephyr-Core-3.4.0/include/zephyr/arch/arm/aarch32/mpu/
Darm_mpu.h49 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument
53 .size = _size, \
/Zephyr-Core-3.4.0/include/zephyr/arch/arm/aarch32/mmu/
Darm_mmu.h58 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument
63 .size = _size, \
/Zephyr-Core-3.4.0/include/zephyr/arch/arc/v2/mpu/
Darc_mpu.h96 #define MPU_REGION_ENTRY(_name, _base, _size, _attr) \ argument
100 .size = _size, \
/Zephyr-Core-3.4.0/include/zephyr/net/
Dbuf.h42 #define NET_BUF_SIMPLE_DEFINE(_name, _size) \ argument
43 uint8_t net_buf_data_##_name[_size]; \
47 .size = _size, \
61 #define NET_BUF_SIMPLE_DEFINE_STATIC(_name, _size) \ argument
62 static __noinit uint8_t net_buf_data_##_name[_size]; \
66 .size = _size, \
119 #define NET_BUF_SIMPLE(_size) \ argument
122 uint8_t data[_size]; \
124 .buf.size = _size, \
1201 #define NET_BUF_POOL_DEFINE(_name, _count, _size, _ud_size, _destroy) \ argument
[all …]
Dnet_pkt_filter.h265 #define NPF_SIZE_MIN(_name, _size) \ argument
267 .min = (_size), \
278 #define NPF_SIZE_MAX(_name, _size) \ argument
281 .max = (_size), \
Dnet_pkt.h1633 #define net_pkt_alloc_buffer(_pkt, _size, _proto, _timeout) \ argument
1634 net_pkt_alloc_buffer_debug(_pkt, _size, _proto, _timeout, \
1644 #define net_pkt_alloc_with_buffer(_iface, _size, _family, \ argument
1646 net_pkt_alloc_with_buffer_debug(_iface, _size, _family, \
1657 #define net_pkt_rx_alloc_with_buffer(_iface, _size, _family, \ argument
1659 net_pkt_rx_alloc_with_buffer_debug(_iface, _size, _family, \
/Zephyr-Core-3.4.0/include/zephyr/logging/
Dlog_output.h120 #define LOG_OUTPUT_DEFINE(_name, _func, _buf, _size) \ argument
126 .size = _size, \
/Zephyr-Core-3.4.0/subsys/bluetooth/controller/ll_sw/
Dull_internal.h107 #define RXFIFO_DEFINE(_name, _size, _count, _extra_links) \ argument
115 uint8_t pool[MROUND(_size) * (_count)]; \
116 } mem_##_name = { .size = MROUND(_size), .count = _count, \
/Zephyr-Core-3.4.0/drivers/serial/
Duart_ifx_cat1.c273 size_t _size = (size_t) size; in ifx_cat1_uart_fifo_fill() local
275 (void)cyhal_uart_write(&data->obj, (uint8_t *) tx_data, &_size); in ifx_cat1_uart_fifo_fill()
276 return (int) _size; in ifx_cat1_uart_fifo_fill()
284 size_t _size = (size_t) size; in ifx_cat1_uart_fifo_read() local
286 (void)cyhal_uart_read(&data->obj, rx_data, &_size); in ifx_cat1_uart_fifo_read()
287 return (int) _size; in ifx_cat1_uart_fifo_read()
/Zephyr-Core-3.4.0/include/zephyr/arch/arm64/cortex_r/
Darm_mpu.h230 #define MPU_REGION_ENTRY_FROM_DTS(_name, _base, _size, _attr) \ argument
234 .limit = _base + _size, \
/Zephyr-Core-3.4.0/include/zephyr/bluetooth/
Dsdp.h331 #define BT_SDP_TYPE_SIZE_VAR(_type, _size) .type = _type, \ argument
332 .data_size = _size, \
334 BT_SDP_SIZE_INDEX_OFFSET) + _size + 1
/Zephyr-Core-3.4.0/include/zephyr/arch/arm64/
Darm_mmu.h198 #define MMU_REGION_ENTRY(_name, _base_pa, _base_va, _size, _attrs) \ argument
203 .size = _size, \
/Zephyr-Core-3.4.0/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-Core-3.4.0/arch/arm/core/aarch32/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-Core-3.4.0/include/zephyr/linker/
Ddevicetree_regions.h92 #define _DT_SECTION_SIZE(node_id) UTIL_CAT(_DT_SECTION_PREFIX(node_id), _size)
/Zephyr-Core-3.4.0/tests/arch/x86/pagetables/src/
Dmain.c39 virt < (LPTR(name, _start) + LSIZE(name, _size)))
/Zephyr-Core-3.4.0/kernel/
Dmmu.c126 #define VIRT_FOREACH(_base, _size, _pos) \ argument
128 _pos < ((uint8_t *)_base + _size); _pos += CONFIG_MMU_PAGE_SIZE)
130 #define PHYS_FOREACH(_base, _size, _pos) \ argument
132 _pos < ((uintptr_t)_base + _size); _pos += CONFIG_MMU_PAGE_SIZE)
/Zephyr-Core-3.4.0/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-Core-3.4.0/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;")

12