Home
last modified time | relevance | path

Searched refs:space (Results 1 – 25 of 300) sorted by relevance

12345678910>>...12

/Zephyr-latest/drivers/xen/
Dmemory.c14 unsigned int space, xen_pfn_t gpfn) in xendom_add_to_physmap() argument
19 .space = space, in xendom_add_to_physmap()
27 unsigned int space, unsigned int size, in xendom_add_to_physmap_batch() argument
33 .space = space, in xendom_add_to_physmap_batch()
/Zephyr-latest/
D.editorconfig36 indent_style = space
46 indent_style = space
51 indent_style = space
56 indent_style = space
67 indent_style = space
72 indent_style = space
D.clang-format5 # git grep -h '^#define [^[:space:]]*FOR_EACH[^[:space:]]*(' include/ \
6 # | sed "s,^#define \([^[:space:]]*FOR_EACH[^[:space:]]*\)(.*$, - '\1'," \
/Zephyr-latest/boards/01space/
Dindex.rst1 .. _boards-01space:
3 01space
/Zephyr-latest/doc/hardware/arch/
Dx86.rst16 is executing in virtual address space. By default, physical and virtual
18 taking place in physical address space. The physical address space is
20 :kconfig:option:`CONFIG_SRAM_SIZE` while the virtual address space is marked by
30 address space. Code and data are linked in virtual address space,
33 space before ``vm_enter`` inside :file:`arch/x86/core/ia32/crt0.S`.
46 additional space for the page table. However, additional space may
49 There are restrictions on where virtual address space can be:
56 - If :kconfig:option:`CONFIG_X86_PAE` is enabled (``=y``), each address space
69 - If :kconfig:option:`CONFIG_X86_PAE` is disabled (``=n``), each address space
119 space for the pre-allocated page tables (both kernel and per-domain
[all …]
/Zephyr-latest/soc/nxp/rw/
Dsections.ld21 /* Left space is reserved for CPU3/CPU1 operations */
31 /* Reserve space for CPU1 -> CPU3 TXQ (allocated by the CPU2) */
36 /* Left space is reserved for CPU3/CPU2 operations */
/Zephyr-latest/include/zephyr/xen/
Dmemory.h20 int xendom_add_to_physmap(int domid, unsigned long idx, unsigned int space,
38 unsigned int space, unsigned int size,
/Zephyr-latest/boards/phytec/phyboard_pollux/
Dphyboard_pollux_mimx8ml8_m7_defconfig14 # y for TCM memory space
17 # y for DDR memory space
/Zephyr-latest/drivers/serial/
Duart_altera_jtag.c41 char *buffer, int space, int flags);
201 uint32_t space = 0; in uart_altera_jtag_fifo_fill() local
216 space = (ctrl_val & UART_WFIFO_MASK) >> UART_WFIFO_OFST; in uart_altera_jtag_fifo_fill()
221 for (i = 0; (i < size) && (i < space); i++) { in uart_altera_jtag_fifo_fill()
328 uint32_t space = 0; in uart_altera_jtag_irq_tx_ready() local
335 space = (ctrl_val & UART_WFIFO_MASK) >> UART_WFIFO_OFST; in uart_altera_jtag_irq_tx_ready()
336 if (space) { in uart_altera_jtag_irq_tx_ready()
359 uint32_t space = 0; in uart_altera_jtag_irq_tx_complete() local
364 space = (ctrl_val & UART_WFIFO_MASK) >> UART_WFIFO_OFST; in uart_altera_jtag_irq_tx_complete()
365 if (space == config->write_fifo_depth) { in uart_altera_jtag_irq_tx_complete()
/Zephyr-latest/doc/kernel/data_structures/
Dmpsc_pbuf.rst21 * Following policies can be applied when requested space cannot be allocated:
25 * **No overwrite** - When requested amount of space cannot be allocated,
47 | 0 | 0 | space is free |
56 Packet buffer space contains free space, valid user packets and internal skip
62 Using pairs for read and write indexes, available space is determined. If
63 space can be allocated, temporary write index is moved and pointer to a space
66 space cannot be allocated and overwrite is disabled then ``NULL`` pointer is
73 space can be allocated. When packets are dropped ``busy`` flag is checked in the
/Zephyr-latest/include/zephyr/linker/
Dkobject-rom.ld10 * space needs to be reserved for the rodata that will be
46 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
51 * if we have reserved more space than needed.
Dkobject-priv-stacks.ld14 * space needs to be reserved for the rodata that will be
45 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
50 * if we have reserved more space than needed.
Dkobject-data.ld24 * space needs to be reserved for the rodata that will be
63 "scripts/build/gen_kobject_placeholders.py did not reserve enough space \
68 * if we have reserved more space than needed.
/Zephyr-latest/doc/services/storage/fcb/
Dfcb.rst23 request space for the next entry, space is located at the end of the
27 Entries can be appended to the end of the area until storage space is
29 block of data, thereby freeing up some space, or stop writing new data
44 this fails due to lack of space, you can call :c:func:`fcb_rotate` to erase
45 the oldest sector which will make the space. And then call
/Zephyr-latest/include/zephyr/xen/public/
Dmemory.h78 uint16_t space; /* => enum phys_map_space */ member
135 unsigned int space; /* => enum phys_map_space */ member
/Zephyr-latest/doc/kernel/memory_management/
Dvirtual_memory.rst29 * Although the virtual memory space can be larger than physical
30 memory space, without enabling demand paging, all virtually
48 * :kconfig:option:`CONFIG_KERNEL_VM_BASE`: base address of virtual address space.
50 * :kconfig:option:`CONFIG_KERNEL_VM_SIZE`: size of virtual address space.
61 the virtual address space. This is useful for mapping device MMIO regions for
68 This is an overview of the memory map of the virtual memory address space.
101 * ``K_MEM_VIRT_RAM_START`` is the beginning of the virtual memory address space.
105 * ``K_MEM_VIRT_RAM_SIZE`` is the size of the virtual memory address space.
118 * ``K_MEM_VM_FREE_START`` is the beginning of the virtual address space where addresses
123 memory address space, and it is the same as
[all …]
/Zephyr-latest/subsys/tracing/
Dtracing_format_common.c49 uint32_t space = tracing_buffer_space_get(); in tracing_format_raw_data_put() local
51 if (space >= size) { in tracing_format_raw_data_put()
/Zephyr-latest/boards/sc/
Dindex.rst1 .. _boards-space-cubics:
/Zephyr-latest/kernel/
DKconfig.vm17 hex "Virtual address space base address"
20 Define the base of the kernel's address space.
35 the kernel's address space, such as not overlapping physical RAM
41 Zephyr does not implement a split address space and if multiple
46 hex "Kernel offset within address space"
49 Offset that the kernel image begins within its address space,
66 hex "Size of kernel address space in bytes"
69 Size of the kernel's address space. Constraining this helps control
81 RAM size larger than the defined bounds of the virtual address space.
90 If the specific memory region is in the virtual memory space and
[all …]
/Zephyr-latest/doc/build/dts/
Dphandles.rst227 Every phandle-array property has an associated *specifier space*. This sounds
229 follow each phandle in a hardware specific way. Every specifier space has a
235 ``phandle-array-prop``\ 's specifier space is named ``baz``. Then we would need
266 With that, if ``phandle-array-prop-2`` has specifier space ``bob``, we could
281 Example specifier space: gpio
284 From the above example, you're already familiar with how one specifier space
285 works: in the "gpio" space, specifiers almost always have two cells:
305 - each phandle-array property has an associated specifier space
317 specifier space ``foo``. For example:
327 The ``dmas`` property's specifier space is "dma". The ``pwm`` property's
[all …]
/Zephyr-latest/doc/connectivity/bluetooth/img/
Datt_timeout.svg1space="preserve">App</text></g><path fill="none" stroke="none"/><g><path fill="white" stroke="blac…
/Zephyr-latest/subsys/logging/backends/
DKconfig.rtt13 is transferred to up-buffer at once depending on available space and
15 In panic mode backend always blocks and waits until there is space
27 If there is not enough space in up-buffer for a message, drop it.
34 Waits until there is enough space in the up-buffer for a message.
39 If there is not enough space in up-buffer for a message overwrite
/Zephyr-latest/boards/nordic/nrf54l15dk/support/
Dnrf54l_05_10_15_cpuflpr.JLinkScript2 // Base address where DMI registers can be found in the APB address space
/Zephyr-latest/soc/renesas/ra/ra2a1/
Drom_start.ld10 /* Reserving 0x100 bytes of space for ROM registers. */
/Zephyr-latest/soc/renesas/ra/ra4m1/
Drom_start.ld10 /* Reserving 0x100 bytes of space for ROM registers. */

12345678910>>...12