/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/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/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/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/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/tests/cmake/overlays/soc_folder_overlay/ |
D | Kconfig | 14 default "$(dt_alias_enabled,test-board-suffix)" 26 default "$(dt_alias_enabled,test-soc-suffix)"
|
/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:
|
/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/utils/ |
D | migrate_includes.py | 30 if not p.is_file() or not p.suffix or p.suffix[1:] not in EXTENSIONS:
|
D | migrate_sys_init.py | 24 if not p.is_file() or not p.suffix or p.suffix[1:] not in ("c", "cpp"):
|
/Zephyr-latest/tests/cmake/zephyr_get/ |
D | sysbuild.cmake | 6 foreach(suffix "2nd" "3rd") 7 set(image ${DEFAULT_IMAGE}_${suffix})
|
/Zephyr-latest/tests/arch/x86/pagetables/src/ |
D | main.c | 35 #define LPTR(name, suffix) ((uint8_t *)&_CONCAT(name, suffix)) argument 36 #define LSIZE(name, suffix) ((size_t)&_CONCAT(name, suffix)) argument
|
/Zephyr-latest/scripts/west_commands/runners/ |
D | trace32.py | 90 suffix = '.exe' 93 suffix = '' 116 with TemporaryDirectory(suffix='t32') as tmp_dir:
|
/Zephyr-latest/scripts/west_commands/fetchers/ |
D | __init__.py | 35 if file.suffix == '.py' and file.stem not in name_blocklist:
|
/Zephyr-latest/soc/nxp/imx/imx8ulp/ |
D | Kconfig | 18 # suffix(es) below
|
/Zephyr-latest/tests/cmake/overlays/soc_folder_kconfig/ |
D | Kconfig | 12 bool "Included board Kconfig fragment with suffix"
|
/Zephyr-latest/drivers/serial/ |
D | leuart_gecko.c | 18 #define CLOCK_ID_PRFX2(prefix, suffix) prefix##suffix argument 19 #define CLOCK_ID_PRFX(prefix, suffix) CLOCK_ID_PRFX2(prefix, suffix) argument
|
/Zephyr-latest/soc/intel/intel_adsp/tools/ |
D | cavstool.py | 689 suffix = min(behind, wlen - copy) 690 result = win_read(base, 16 + copy, suffix) 691 if suffix < behind: 692 result += win_read(base, 16, behind - suffix) 731 suffix = min(lenmsg, wlen - end) 732 for c in range(0, suffix): 734 if lenmsg > suffix: 735 for c in range(0, lenmsg - suffix): 736 bar4_mmap[base + 16 + c] = msg[suffix + c]
|
/Zephyr-latest/soc/nordic/nrf54h/bicr/ |
D | bicrgen.py | 665 if args.input.suffix == ".hex" or (args.output and args.output.suffix == ".hex"): 671 if args.input.suffix == ".hex": 675 elif args.input.suffix == ".json": 683 if args.output.suffix == ".hex": 694 elif args.output.suffix == ".json":
|