Home
last modified time | relevance | path

Searched refs:reserve (Results 1 – 25 of 53) sorted by relevance

123

/Zephyr-latest/tests/drivers/comparator/gpio_loopback/boards/
Dnrf54h20dk_nrf54h20_cpuapp.overlay27 /* Temporary workaround to reserve P1.03 for cpuapp */
32 /* Temporary workaround to reserve P1.02 for cpuapp */
/Zephyr-latest/tests/subsys/fs/fs_api/src/
Dtest_fs.h32 int reserve; member
/Zephyr-latest/drivers/audio/
DKconfig.dmic_mcux16 int "Number of buffers to reserve for DMIC DMA"
21 reserve for the DMA engine. The memory slab used with the DMIC
/Zephyr-latest/subsys/bluetooth/host/
Dconn_internal.h538 size_t reserve,
550 size_t reserve, k_timeout_t timeout);
558 struct net_buf *bt_conn_create_frag_timeout_debug(size_t reserve,
570 struct net_buf *bt_conn_create_frag_timeout(size_t reserve,
Dl2cap_internal.h205 size_t reserve,
/Zephyr-latest/drivers/counter/
DKconfig.mcux_ctimer14 bool "reserve a ctimer channel to set the top value"
/Zephyr-latest/arch/arm/core/cortex_m/
Dvector_table_pad.ld9 * Zephyr image does not attempt to use the area which we reserve to
/Zephyr-latest/include/zephyr/linker/
Dkobject-rom.ld46 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
Dkobject-text.ld4 /* We need to reserve room for the gperf generated hash functions.
Dkobject-priv-stacks.ld45 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
Dkobject-data.ld63 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/reassembly/peer/src/
Dpeer.c448 uint16_t reserve; in alloc_l2cap_pdu() local
453 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
454 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
456 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/tests/bsim/bluetooth/host/misc/disconnect/tester/src/
Dmain.c459 uint16_t reserve; in alloc_l2cap_pdu() local
464 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
465 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
467 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/tests/bsim/bluetooth/host/att/sequential/tester/src/
Dmain.c481 uint16_t reserve; in alloc_l2cap_pdu() local
486 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
487 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
489 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/tests/bsim/bluetooth/host/att/pipeline/tester/src/
Dmain.c505 uint16_t reserve; in alloc_l2cap_pdu() local
510 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
511 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
513 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/arch/x86/
Dgen_mmu.py414 def map_page(self, virt_addr, phys_addr, flags, reserve, level=PT_LEVEL): argument
430 if not reserve:
433 def reserve(self, virt_base, size, to_level=PT_LEVEL): member in PtableSet
459 self.reserve(mem_start, mem_size, to_level)
804 pt.reserve(vm_base, vm_size)
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/split/tester/src/
Dmain.c462 uint16_t reserve; in alloc_l2cap_pdu() local
467 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
468 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
470 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/tests/bsim/bluetooth/host/misc/hfc_multilink/tester/src/
Dtester.c491 uint16_t reserve; in alloc_l2cap_pdu() local
496 reserve = sizeof(struct bt_l2cap_hdr); in alloc_l2cap_pdu()
497 reserve += sizeof(struct bt_hci_acl_hdr) + BT_BUF_RESERVE; in alloc_l2cap_pdu()
499 net_buf_reserve(buf, reserve); in alloc_l2cap_pdu()
/Zephyr-latest/soc/intel/intel_adsp/
DKconfig84 int "Bytes to reserve at start of HP-SRAM"
87 Bytes to reserve at the start of HP-SRAM. Zephyr will not
/Zephyr-latest/subsys/demand_paging/backing_store/
DKconfig48 Number of pages of backing store memory to reserve in RAM. All test
/Zephyr-latest/subsys/bluetooth/host/classic/
Dl2cap_br_internal.h215 size_t reserve,
/Zephyr-latest/doc/services/net_buf/
Dindex.rst40 If there is a need to reserve space in the buffer for protocol headers
41 to be prepended later, it's possible to reserve this headroom with:
/Zephyr-latest/subsys/net/ip/
Dnet_pkt.c1255 size_t reserve, argument
1263 size_t reserve,
1296 alloc_len, size, reserve);
1307 buf = pkt_alloc_buffer(pkt, pool, alloc_len, reserve,
1310 buf = pkt_alloc_buffer(pkt, pool, alloc_len, reserve, timeout);
1316 alloc_len + reserve, caller, line);
1319 alloc_len + reserve);
1329 if (reserve > 0U) {
1330 NET_DBG("Reserving %zu bytes for L2 header", reserve);
1332 net_buf_reserve(pkt->buffer, reserve);
/Zephyr-latest/lib/net_buf/
Dbuf_simple.c41 void net_buf_simple_reserve(struct net_buf_simple *buf, size_t reserve) in net_buf_simple_reserve() argument
45 NET_BUF_SIMPLE_DBG("buf %p reserve %zu", buf, reserve); in net_buf_simple_reserve()
47 buf->data = buf->__buf + reserve; in net_buf_simple_reserve()
/Zephyr-latest/arch/x86/core/
DKconfig.intel6470 Number of bytes from the ISR stack to reserve for each nested IRQ

123