/Zephyr-latest/include/zephyr/arch/arc/asm-compat/ |
D | asm-macro-32-bit-mwdt.h | 9 mov\&$suffix d, s 15 ld\&$suffix d, [s] 17 ld\&$suffix d, [s, off] 23 st\&$suffix d, [s] 25 st\&$suffix d, [s, off] 48 add\&$suffix d, s, v 52 add2\&$suffix d, s, v 84 br\&$suffix d, s, lbl
|
D | asm-macro-64-bit-mwdt.h | 9 movl\&$suffix d, s 15 ldl\&$suffix d, [s] 17 ldl\&$suffix d, [s, off] 23 stl\&$suffix d, [s] 25 stl\&$suffix d, [s, off] 48 addl\&$suffix d, s, v 52 add2l\&$suffix d, s, v 84 br\&$suffix\l d, s, lbl
|
/Zephyr-latest/subsys/net/lib/ptp/ |
D | msg.c | 103 uint8_t *suffix = NULL; in msg_suffix() local 107 suffix = msg->sync.suffix; in msg_suffix() 110 suffix = msg->delay_req.suffix; in msg_suffix() 113 suffix = msg->pdelay_req.suffix; in msg_suffix() 116 suffix = msg->pdelay_resp.suffix; in msg_suffix() 119 suffix = msg->follow_up.suffix; in msg_suffix() 122 suffix = msg->delay_resp.suffix; in msg_suffix() 125 suffix = msg->pdelay_resp_follow_up.suffix; in msg_suffix() 128 suffix = msg->announce.suffix; in msg_suffix() 131 suffix = msg->signaling.suffix; in msg_suffix() [all …]
|
D | msg.h | 117 uint8_t suffix[]; member 129 uint8_t suffix[]; member 141 uint8_t suffix[]; member 153 uint8_t suffix[]; member 167 uint8_t suffix[]; member 183 uint8_t suffix[]; member 197 uint8_t suffix[]; member 211 uint8_t suffix[]; member 223 uint8_t suffix[]; member 249 uint8_t suffix[]; member
|
/Zephyr-latest/lib/utils/ |
D | winstream.c | 43 uint32_t len0 = len, suffix; in sys_winstream_write() local 74 suffix = MIN(len, ws->len - end); in sys_winstream_write() 75 MEMCPY(&ws->data[end], data, suffix); in sys_winstream_write() 76 if (len > suffix) { in sys_winstream_write() 77 MEMCPY(&ws->data[0], data + suffix, len - suffix); in sys_winstream_write() 88 uint32_t seq0 = *seq, start, end, wseq, len, behind, copy, suffix; in sys_winstream_read() local 113 suffix = MIN(len, ws->len - copy); in sys_winstream_read() 114 MEMCPY(buf, &ws->data[copy], suffix); in sys_winstream_read() 115 if (len > suffix) { in sys_winstream_read() 116 MEMCPY(buf + suffix, &ws->data[0], len - suffix); in sys_winstream_read()
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_kconfig/src/ |
D | main.c | 65 zassert_false(INCLUDED_BOARD_SUFFIX, "Did not expect board suffix config to be present"); in ZTEST() 80 zassert_false(INCLUDED_SOC_SUFFIX, "Did not expect soc suffix config to be present"); in ZTEST() 84 /* File suffix test */ 87 zassert_true(INCLUDED_BOARD_SUFFIX, "Expected board suffix config to be present"); in ZTEST() 95 zassert_true(INCLUDED_SOC_SUFFIX, "Expected soc suffix config to be present"); in ZTEST() 102 zassert_false(INCLUDED_BOARD_SUFFIX, "Did not expect board suffix config to be present"); in ZTEST() 118 zassert_false(INCLUDED_SOC_SUFFIX, "Did not expect soc suffix config to be present"); in ZTEST() 122 /* File suffix and conf file test */ 125 zassert_true(INCLUDED_BOARD_SUFFIX, "Expected board suffix config to be present"); in ZTEST() 132 zassert_true(INCLUDED_SOC_SUFFIX, "Expected soc suffix config to be present"); in ZTEST()
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_overlay/src/ |
D | main.c | 54 zassert_false(INCLUDED_BOARD_SUFFIX, "Did not expect board suffix overlay to be present"); in ZTEST() 66 zassert_false(INCLUDED_SOC_SUFFIX, "Did not expect soc suffix overlay to be present"); in ZTEST() 69 /* File suffix test */ 73 zassert_true(INCLUDED_BOARD_SUFFIX, "Expected board suffix overlay to be present"); in ZTEST() 78 zassert_true(INCLUDED_SOC_SUFFIX, "Expected soc suffix overlay to be present"); in ZTEST() 85 zassert_false(INCLUDED_BOARD_SUFFIX, "Did not expect board suffix overlay to be present"); in ZTEST() 90 zassert_false(INCLUDED_SOC_SUFFIX, "Did not epect soc suffix overlay to be present"); in ZTEST()
|
/Zephyr-latest/drivers/gpio/ |
D | gpio_renesas_ra_ioport.c | 271 #define GPIO_DEVICE_INIT(node, port_number, suffix, addr) \ argument 273 struct gpio_ra_irq_info gpio_ra_irq_info_##suffix[] = { \ 275 static const struct gpio_ra_config gpio_ra_config_##suffix = { \ 282 .vbatt_pins = DT_PROP_OR(DT_NODELABEL(ioport##suffix), vbatts_pins, {0xFF}), \ 283 .irq_info = gpio_ra_irq_info_##suffix, \ 284 .irq_info_size = DT_PROP_LEN_OR(DT_NODELABEL(ioport##suffix), port_irq_names, 0), \ 286 static struct gpio_ra_data gpio_ra_data_##suffix; \ 287 DEVICE_DT_DEFINE(node, NULL, NULL, &gpio_ra_data_##suffix, &gpio_ra_config_##suffix, \ 290 #define GPIO_DEVICE_INIT_RA(suffix) \ argument 291 GPIO_DEVICE_INIT(DT_NODELABEL(ioport##suffix), \ [all …]
|
/Zephyr-latest/include/zephyr/toolchain/ |
D | llvm.h | 39 #define __int_c(v, suffix) v ## suffix argument 40 #define int_c(v, suffix) __int_c(v, suffix) argument 41 #define uint_c(v, suffix) __int_c(v ## U, suffix) argument
|
/Zephyr-latest/cmake/modules/ |
D | configuration_files.cmake | 40 …zephyr_file(CONF_FILES ${APPLICATION_CONFIG_DIR} KCONF CONF_FILE NAMES "prj.conf" SUFFIX ${FILE_SU… 41 …zephyr_file(CONF_FILES ${APPLICATION_CONFIG_DIR}/socs KCONF CONF_FILE QUALIFIERS SUFFIX ${FILE_SUF… 42 zephyr_file(CONF_FILES ${APPLICATION_CONFIG_DIR}/boards KCONF CONF_FILE SUFFIX ${FILE_SUFFIX}) 75 …zephyr_file(CONF_FILES ${APPLICATION_CONFIG_DIR}/socs DTS DTC_OVERLAY_FILE QUALIFIERS SUFFIX ${FIL… 76 …zephyr_file(CONF_FILES ${APPLICATION_CONFIG_DIR}/boards DTS DTC_OVERLAY_FILE SUFFIX ${FILE_SUFFIX}) 85 NAMES "app.overlay" SUFFIX ${FILE_SUFFIX}
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_overlay/ |
D | Kconfig | 14 default "$(dt_alias_enabled,test-board-suffix)" 26 default "$(dt_alias_enabled,test-soc-suffix)"
|
D | testcase.yaml | 14 buildsystem.cmake.overlays.soc_folder_overlay.suffix:
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_kconfig/ |
D | testcase.yaml | 14 buildsystem.cmake.overlays.soc_folder_kconfig.suffix: 22 buildsystem.cmake.overlays.soc_folder_kconfig.suffix.conf:
|
D | Kconfig | 12 bool "Included board Kconfig fragment with suffix"
|
/Zephyr-latest/tests/cmake/zephyr_get/ |
D | sysbuild.cmake | 6 foreach(suffix "2nd" "3rd") 7 set(image ${DEFAULT_IMAGE}_${suffix})
|
/Zephyr-latest/modules/trusted-firmware-m/ |
D | CMakeLists.txt | 52 foreach(SUFFIX IN ITEMS "S" "NS") 53 string(CONFIGURE ${CONFIG_TFM_KEY_FILE_${SUFFIX}} CONFIG_TFM_KEY_FILE_${SUFFIX}) 54 list(APPEND TFM_CMAKE_ARGS -DMCUBOOT_KEY_${SUFFIX}=${CONFIG_TFM_KEY_FILE_${SUFFIX}}) 416 function(tfm_sign OUT_ARG SUFFIX PAD INPUT_FILE OUTPUT_FILE) 422 set(layout_file ${PREPROCESSED_FILE_${SUFFIX}}) 423 if(SUFFIX STREQUAL "S_NS") 424 set(SUFFIX "S") variable 433 -k ${CONFIG_TFM_KEY_FILE_${SUFFIX}} 436 -v ${CONFIG_TFM_IMAGE_VERSION_${SUFFIX}} 438 ${HEX_ADDR_ARGS_${SUFFIX}} [all …]
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_overlay/boards/ |
D | native_sim_native_64_somesuffix.overlay | 3 test-board-suffix = &uart0;
|
D | native_sim_native_somesuffix.overlay | 3 test-board-suffix = &uart0;
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_overlay/socs/ |
D | native_64_somesuffix.overlay | 3 test-soc-suffix = &uart0;
|
D | native_somesuffix.overlay | 3 test-soc-suffix = &uart0;
|
/Zephyr-latest/scripts/checkpatch/ |
D | check_known_checkpatch_issues.sh | 66 suffix=${uid}-${pid}-${ts} 67 checkpatch_results=/tmp/checkpatch.results-${suffix} 69 checkpatch_issues=/tmp/checkpatch_issues-${suffix} 80 diff_file=/tmp/checkpatch.results.diff-${suffix}
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | trace32.py | 90 suffix = '.exe' 93 suffix = '' 97 self.t32_exec = Path(t32_dir) / 'bin' / os_name / f't32m{self.arch}{suffix}' 116 with TemporaryDirectory(suffix='t32') as tmp_dir:
|
/Zephyr-latest/soc/nxp/imx/imx8ulp/ |
D | Kconfig | 18 # suffix(es) below
|
/Zephyr-latest/scripts/utils/ |
D | migrate_includes.py | 30 if not p.is_file() or not p.suffix or p.suffix[1:] not in EXTENSIONS:
|
/Zephyr-latest/scripts/support/ |
D | quartus-flash.py | 76 output_pof = tempfile.NamedTemporaryFile(suffix=".pof") 84 with tempfile.NamedTemporaryFile(suffix=".cof") as temp_xml: 106 with tempfile.NamedTemporaryFile(suffix=".cdf") as temp_cdf:
|