/Zephyr-latest/drivers/xen/ |
D | memory.c | 14 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 | .editorconfig | 36 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-format | 5 # git grep -h '^#define [^[:space:]]*FOR_EACH[^[:space:]]*(' include/ \ 6 # | sed "s,^#define \([^[:space:]]*FOR_EACH[^[:space:]]*\)(.*$, - '\1'," \
|
/Zephyr-latest/boards/01space/ |
D | index.rst | 1 .. _boards-01space: 3 01space
|
/Zephyr-latest/doc/hardware/arch/ |
D | x86.rst | 16 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/ |
D | sections.ld | 21 /* 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/ |
D | memory.h | 20 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/ |
D | phyboard_pollux_mimx8ml8_m7_defconfig | 14 # y for TCM memory space 17 # y for DDR memory space
|
/Zephyr-latest/drivers/serial/ |
D | uart_altera_jtag.c | 41 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/ |
D | mpsc_pbuf.rst | 21 * 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/ |
D | kobject-rom.ld | 10 * 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.
|
D | kobject-priv-stacks.ld | 14 * 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.
|
D | kobject-data.ld | 24 * 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/ |
D | fcb.rst | 23 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/ |
D | memory.h | 78 uint16_t space; /* => enum phys_map_space */ member 135 unsigned int space; /* => enum phys_map_space */ member
|
/Zephyr-latest/doc/kernel/memory_management/ |
D | virtual_memory.rst | 29 * 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/ |
D | tracing_format_common.c | 49 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/ |
D | index.rst | 1 .. _boards-space-cubics:
|
/Zephyr-latest/kernel/ |
D | Kconfig.vm | 17 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/boards/wch/linkw/ |
D | Kconfig.linkw | 1 # Copyright (c) 2024 MASSDRIVER EI (massdriver.space)
|
/Zephyr-latest/boards/others/promicro_nrf52840/ |
D | Kconfig.promicro_nrf52840 | 1 # Copyright (c) 2024 MASSDRIVER EI (massdriver.space)
|
D | promicro_nrf52840_nrf52840.dts | 2 * Copyright (c) 2024 MASSDRIVER EI (massdriver.space)
|
D | promicro_nrf52840_nrf52840_uf2.dts | 2 * Copyright (c) 2024 MASSDRIVER EI (massdriver.space)
|
/Zephyr-latest/dts/riscv/wch/ch32v208/ |
D | ch32v208rbt.dtsi | 2 * Copyright (c) 2025 MASSDRIVER EI (massdriver.space)
|
D | ch32v208wbu.dtsi | 2 * Copyright (c) 2025 MASSDRIVER EI (massdriver.space)
|