Searched full:place (Results 1 – 25 of 389) sorted by relevance
12345678910>>...16
/Zephyr-Core-3.4.0/lib/posix/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() 389 if (state->optreset || !*(state->place)) {/* update scanning pointer */ 392 state->place = EMSG; 410 state->place = nargv[state->optind]; 411 if (*(state->place) != '-' || 413 state->place[1] == '\0') { 415 (state->place[1] == '\0' && strchr(options, '-') == NULL)) { 417 state->place = EMSG; /* found non-option */ 456 if (state->place[1] != '\0' && *++(state->place) == '-' && 457 state->place[1] == '\0') { [all …]
|
/Zephyr-Core-3.4.0/subsys/tracing/sysview/ |
D | Kconfig | 33 bool "Place SystemView data in the default linker section" 36 bool "Place SystemView data in the DTCM linker section"
|
/Zephyr-Core-3.4.0/doc/kernel/iterable_sections/ |
D | index.rst | 35 Then the linker has to be setup to place the place the structure in a 61 The linker is going to place the entries sorted by name, so the example
|
/Zephyr-Core-3.4.0/soc/riscv/riscv-ite/it8xxx2/ |
D | Kconfig.soc | 127 bool "Place exception handling code in RAM" 131 Place exception handling (ISR entry/exit and related) code in ILM, which 140 We place SHA256 message, hash and key data (total 512bytes) in RAM. 141 If we enable this config, because HW limits, the sha256 data must place in
|
/Zephyr-Core-3.4.0/doc/kernel/ |
D | code-relocation.rst | 9 required files and place them in the required memory region. The memory region 74 * if the memory is SRAM1, SRAM2, CCD, or AON, then place the full object in the 92 This will place data and bss inside SRAM2. 111 This example will place the .text section of the ``xip_external_flash.c`` file 140 This test will place .text, .data, .bss from 3 files to various parts in the SRAM
|
/Zephyr-Core-3.4.0/modules/segger/ |
D | Kconfig | 75 bool "Place RTT data in the default linker section" 78 bool "Place RTT data in the DTCM linker section"
|
/Zephyr-Core-3.4.0/tests/kernel/mp/ |
D | prj.conf | 5 # Must have this on where available, otherwise the linker will place
|
/Zephyr-Core-3.4.0/modules/hal_nxp/ |
D | Kconfig | 7 # file is empty and kept as a place holder if/when Kconfig is needed
|
/Zephyr-Core-3.4.0/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-Core-3.4.0/boards/riscv/rv32m1_vega/ |
D | Kconfig | 12 place after the GPIO driver is initialized.
|
/Zephyr-Core-3.4.0/samples/application_development/out_of_tree_board/ |
D | README.rst | 8 A simple example that demonstrates how to place a custom board
|
/Zephyr-Core-3.4.0/samples/subsys/fs/fat_fs/boards/ |
D | nrf52840dk_nrf52840.conf | 11 # find in the first place.
|
D | nrf52840dk_nrf52840_qspi.conf | 14 # find in the first place.
|
/Zephyr-Core-3.4.0/drivers/pinctrl/ |
D | Kconfig.imx | 10 # TODO: Find better place for this option
|
/Zephyr-Core-3.4.0/boards/arm/arty/ |
D | Kconfig | 13 place after the GPIO driver is initialized.
|
/Zephyr-Core-3.4.0/drivers/ethernet/ |
D | Kconfig.mcux | 24 Place the hardware DMA buffers into DTCM for better networking 30 Place the Ethernet receiver in promiscuous mode. This may be useful
|
/Zephyr-Core-3.4.0/tests/drivers/dma/chan_blen_transfer/ |
D | Kconfig | 17 string "the section to place the memory buffers."
|
/Zephyr-Core-3.4.0/tests/bsim/bluetooth/ll/edtt/gatt_test_app/src/gatt/ |
D | service_f_1.c | 94 * @param buf Buffer to place the read result in 116 * @param buf Buffer to place the read result in 167 * @param buf Buffer to place the read result in 222 * @param buf Buffer to place the read result in 277 * @param buf Buffer to place the read result in 304 * @param buf Buffer to place the read result in 331 * @param buf Buffer to place the read result in
|
/Zephyr-Core-3.4.0/tests/drivers/dma/loop_transfer/ |
D | Kconfig | 13 string "the section to place the memory buffers."
|
/Zephyr-Core-3.4.0/samples/drivers/ipm/ipm_mcux/ |
D | sysbuild.cmake | 16 # Place remote image first in the image list
|
/Zephyr-Core-3.4.0/samples/subsys/ipc/openamp/ |
D | sysbuild.cmake | 16 # Place remote image first in the image list
|
/Zephyr-Core-3.4.0/boards/arm/lpcxpresso54114/ |
D | Kconfig.defconfig | 12 # Place size restrictions on first image if dual core is enabled
|
/Zephyr-Core-3.4.0/include/zephyr/app_memory/ |
D | app_memdomain.h | 36 * @brief Place data in a partition's data section 47 * @brief Place data in a partition's bss section 113 * place globals automatically in this partition.
|
/Zephyr-Core-3.4.0/drivers/watchdog/ |
D | wdt_intel_adsp.h | 49 * When set, it allow the DSP Core reset to take place upon second time out of the 122 * When set, it allow the DSP Core reset to take place upon second time out of the watchdog timer. 136 * When set, it allow the DSP Core reset to take place upon second time out of the
|
12345678910>>...16