Searched full:place (Results 1 – 25 of 500) sorted by relevance
12345678910>>...20
/Zephyr-latest/tests/drivers/display/display_read_write/ |
D | Kconfig | 9 bool "Place the display buffer in a specific memory section" 11 Place the display buffer in a specific memory section. 22 string "Memory section to place Display Buffer" 24 Specific memory section to place the display buffer.
|
/Zephyr-latest/lib/posix/options/getopt/ |
D | getopt.c | 60 state->place = ""; /* EMSG */ in getopt_init() 86 if (state->optreset || *state->place == 0) { /* update scanning pointer */ in getopt() 88 state->place = nargv[state->optind]; in getopt() 89 if (state->optind >= nargc || *state->place++ != '-') { in getopt() 91 state->place = EMSG; in getopt() 95 state->optopt = *state->place++; in getopt() 96 if (state->optopt == '-' && *state->place == 0) { in getopt() 99 state->place = EMSG; in getopt() 107 state->place = EMSG; in getopt() 115 state->optopt = *state->place++; in getopt() [all …]
|
D | getopt_long.c | 180 current_argv = state->place; in parse_long_options() 390 if (state->optreset || !*(state->place)) {/* update scanning pointer */ 393 state->place = EMSG; 411 state->place = nargv[state->optind]; 412 if (*(state->place) != '-' || 414 state->place[1] == '\0') { 416 (state->place[1] == '\0' && strchr(options, '-') == NULL)) { 418 state->place = EMSG; /* found non-option */ 457 if (state->place[1] != '\0' && *++(state->place) == '-' && 458 state->place[1] == '\0') { [all …]
|
/Zephyr-latest/soc/ite/ec/it8xxx2/ |
D | Kconfig | 190 bool "Place exception handling code in RAM" 194 Place exception handling (ISR entry/exit and related) code in ILM, which 206 bool "Place serial handling code in RAM" 210 Place serial handling (Include uart_ns16550.c and uart_ite_it8xxx2.c) code 214 bool "Place kernel handling code in RAM" 218 Place kernel handling code in ILM. This can significantly improve performance. 221 bool "Place zephyr handling code in RAM" 225 Place zephyr handling code in ILM. This can significantly improve performance. 231 We place SHA256 message, hash and key data (total 512bytes) in RAM. 232 If we enable this config, because HW limits, the sha256 data must place in
|
/Zephyr-latest/modules/segger/ |
D | Kconfig | 85 bool "Place RTT data in the default linker section" 88 bool "Place RTT data in the DTCM linker section" 91 bool "Place RTT data in the CCM linker section" 96 bool "Place RTT data in custom linker section at RAM start" 99 bool "Place RTT data in custom linker section defined by a memory region in DTS"
|
/Zephyr-latest/subsys/tracing/sysview/ |
D | Kconfig | 28 bool "Place SystemView data in the default linker section" 31 bool "Place SystemView data in the DTCM linker section"
|
/Zephyr-latest/doc/kernel/ |
D | code-relocation.rst | 9 required files and place them in the required memory region. The memory region 79 * if the memory is SRAM1, SRAM2, CCD, or AON, then place the full object in the 97 This will place data and bss inside SRAM2. 150 This example will place the .text section of the ``xip_external_flash.c`` file 174 code that executes before code relocation takes place. 187 This test will place .text, .data, .bss from 3 files to various parts in the SRAM
|
/Zephyr-latest/drivers/usb/udc/ |
D | Kconfig | 29 bool "Place the buffer pools in the nocache memory region" 32 Place the buffer pools in the nocache memory region if the driver
|
/Zephyr-latest/modules/hal_wch/ |
D | Kconfig | 7 # file is empty and kept as a place holder if/when Kconfig is needed
|
/Zephyr-latest/modules/hal_silabs/simplicity_sdk/linker/ |
D | code_classification_ramfunc.ld | 6 * Place data annotated as ramfunc into the Zephyr .ramfunc section.
|
D | code_classification_text.ld | 6 * Place text sections tagged with Silicon Labs code classification annotations into flash.
|
/Zephyr-latest/modules/hal_silabs/wiseconnect/linker/ |
D | code_classification_ramfunc.ld | 6 * Place data annotated as ramfunc into the Zephyr .ramfunc section.
|
D | code_classification_text.ld | 6 * Place text sections tagged with Silicon Labs code classification annotations into flash.
|
/Zephyr-latest/soc/nordic/common/ |
D | platform_init.ld | 7 /* Let SystemInit() be called in place of soc_reset_hook() by default. */
|
/Zephyr-latest/tests/kernel/mp/ |
D | Kconfig | 5 # Must have this on where available, otherwise the linker will place
|
/Zephyr-latest/samples/boards/intel/adsp/code_relocation/ |
D | linker_xtensa_intel_adsp_cavs.ld | 25 * script would also place some BSS section on SRAM0, which would break 31 * but `fix_elf_addrs.py` will place it as above for rimage. 52 /* Place all of BSS content in SRAM4. If not done this way, platform default
|
/Zephyr-latest/samples/subsys/fs/fs_sample/boards/ |
D | nrf52840dk_nrf52840.conf | 11 # find in the first place.
|
D | nrf52840dk_nrf52840_ram_disk.conf | 12 # find in the first place.
|
D | nrf54l15dk_nrf54l15_cpuapp.conf | 11 # find in the first place.
|
D | nrf52840dk_nrf52840_qspi.conf | 14 # find in the first place.
|
/Zephyr-latest/boards/digilent/arty_a7/ |
D | Kconfig | 13 place after the GPIO driver is initialized.
|
/Zephyr-latest/doc/kernel/iterable_sections/ |
D | index.rst | 35 Then the linker has to be setup to place the structure in a 62 The linker is going to place the entries sorted by name, so the example
|
/Zephyr-latest/dts/bindings/base/ |
D | mutable.yaml | 12 Inherit this binding for devices that are runtime-modifiable, in-place.
|
/Zephyr-latest/boards/nxp/lpcxpresso54114/ |
D | Kconfig.defconfig | 6 # Place size restrictions on first image if dual core is enabled
|
/Zephyr-latest/tests/drivers/dma/loop_transfer/ |
D | Kconfig | 13 string "the section to place the memory buffers."
|
12345678910>>...20