/Zephyr-Core-3.5.0/include/zephyr/arch/arc/asm-compat/ |
D | asm-macro-32-bit-mwdt.h | 8 .macro MOVR, d, s 9 mov\&$suffix d, s 13 .macro LDR, d, s, off 15 ld\&$suffix d, [s] 17 ld\&$suffix d, [s, off] 21 .macro STR, d, s, off 23 st\&$suffix d, [s] 25 st\&$suffix d, [s, off] 38 .macro LRR, d, aux 39 lr d, aux [all …]
|
D | asm-macro-64-bit-mwdt.h | 8 .macro MOVR, d, s 9 movl\&$suffix d, s 13 .macro LDR, d, s, off 15 ldl\&$suffix d, [s] 17 ldl\&$suffix d, [s, off] 21 .macro STR, d, s, off 23 stl\&$suffix d, [s] 25 stl\&$suffix d, [s, off] 38 .macro LRR, d, aux 39 lrl d, aux [all …]
|
D | asm-macro-64-bit-gnu.h | 11 .macro MOVR\cc d, s 12 movl\cc \d, \s 17 .macro LDR\aa d, s, off=0 18 ldl\aa \d, [\s, \off] 23 .macro STR\aa d, s, off=0 26 stl\aa \d, [\s] 28 stl\aa \d, [\s, \off] 33 .macro STR d, s, off=0 35 stl \d, [\s] 38 STR.as \d, \s, \off / 8 [all …]
|
D | asm-macro-32-bit-gnu.h | 11 .macro MOVR\cc d, s 12 mov\cc \d, \s 17 .macro LDR\aa d, s, off=0 18 ld\aa \d, [\s, \off] 23 .macro STR\aa d, s, off=0 26 st\aa \d, [\s] 28 st\aa \d, [\s, \off] 41 .macro LRR d, aux 42 lr \d, \aux 45 .macro SRR d, aux [all …]
|
/Zephyr-Core-3.5.0/drivers/ipm/ |
D | ipm_mhu.c | 19 static enum ipm_mhu_cpu_id_t ipm_mhu_get_cpu_id(const struct device *d) in ipm_mhu_get_cpu_id() argument 24 p_mhu_dev_base = (volatile uint32_t *)IPM_MHU_REGS(d); in ipm_mhu_get_cpu_id() 33 static uint32_t ipm_mhu_get_status(const struct device *d, in ipm_mhu_get_status() argument 43 p_mhu_dev = (struct ipm_mhu_reg_map_t *)IPM_MHU_REGS(d); in ipm_mhu_get_status() 58 static int ipm_mhu_send(const struct device *d, int wait, uint32_t cpu_id, in ipm_mhu_send() argument 75 p_mhu_dev = (struct ipm_mhu_reg_map_t *)IPM_MHU_REGS(d); in ipm_mhu_send() 90 static void ipm_mhu_clear_val(const struct device *d, in ipm_mhu_clear_val() argument 96 p_mhu_dev = (struct ipm_mhu_reg_map_t *)IPM_MHU_REGS(d); in ipm_mhu_clear_val() 109 static uint32_t ipm_mhu_max_id_val_get(const struct device *d) in ipm_mhu_max_id_val_get() argument 111 ARG_UNUSED(d); in ipm_mhu_max_id_val_get() [all …]
|
D | ipm_mcux.c | 78 static int mcux_mailbox_ipm_send(const struct device *d, int wait, in mcux_mailbox_ipm_send() argument 82 const struct mcux_mailbox_config *config = d->config; in mcux_mailbox_ipm_send() 114 static int mcux_mailbox_ipm_max_data_size_get(const struct device *d) in mcux_mailbox_ipm_max_data_size_get() argument 116 ARG_UNUSED(d); in mcux_mailbox_ipm_max_data_size_get() 122 static uint32_t mcux_mailbox_ipm_max_id_val_get(const struct device *d) in mcux_mailbox_ipm_max_id_val_get() argument 124 ARG_UNUSED(d); in mcux_mailbox_ipm_max_id_val_get() 129 static void mcux_mailbox_ipm_register_callback(const struct device *d, in mcux_mailbox_ipm_register_callback() argument 133 struct mcux_mailbox_data *driver_data = d->data; in mcux_mailbox_ipm_register_callback() 140 static int mcux_mailbox_ipm_set_enabled(const struct device *d, int enable) in mcux_mailbox_ipm_set_enabled() argument
|
/Zephyr-Core-3.5.0/tests/drivers/ipm/src/ |
D | ipm_dummy.c | 26 const struct device *d = (const struct device *)data; in ipm_dummy_isr() local 27 struct ipm_dummy_driver_data *driver_data = d->data; in ipm_dummy_isr() 37 driver_data->cb(d, in ipm_dummy_isr() 47 static int ipm_dummy_send(const struct device *d, int wait, uint32_t id, in ipm_dummy_send() argument 55 driver_data = d->data; in ipm_dummy_send() 56 if (size > ipm_max_data_size_get(d)) { in ipm_dummy_send() 73 irq_offload(ipm_dummy_isr, (const void *)d); in ipm_dummy_send() 83 static void ipm_dummy_register_callback(const struct device *d, in ipm_dummy_register_callback() argument 89 driver_data = d->data; in ipm_dummy_register_callback() 94 static int ipm_dummy_set_enabled(const struct device *d, int enable) in ipm_dummy_set_enabled() argument [all …]
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | config_parser.py | 171 d = {} 175 extracted_common, d[k] = extract_fields_from_arg_list( 179 d[k] = v 187 if k in d: 189 d[k] = "(%s) and (%s)" % (d[k], v) 192 if isinstance(d[k], str) and isinstance(v, list): 193 d[k] = d[k].split() + v 194 elif isinstance(d[k], list) and isinstance(v, str): 195 d[k] += v.split() 196 elif isinstance(d[k], list) and isinstance(v, list): [all …]
|
D | hardwaremap.py | 98 d = {} 103 d[k] = v[k] 104 return d 169 for d in self.duts: 170 if d.connected and d.platform != 'unknown': 171 self.options.platform.append(d.platform) 194 for d in self.duts: 195 d.fixtures.extend(self.options.fixture) 203 for d in self.duts: 204 if d.connected and d.platform in selected_platforms: [all …]
|
/Zephyr-Core-3.5.0/tests/lib/sprintf/src/ |
D | main.c | 68 double d; member 76 double d; member 123 sprintf(buffer, "%e", var.d); in ZTEST() 127 sprintf(buffer, "%E", var.d); in ZTEST() 131 sprintf(buffer, "%f", var.d); in ZTEST() 135 sprintf(buffer, "%F", var.d); in ZTEST() 139 sprintf(buffer, "%g", var.d); in ZTEST() 143 sprintf(buffer, "%G", var.d); in ZTEST() 149 sprintf(buffer, "%e", var.d); in ZTEST() 153 sprintf(buffer, "%E", var.d); in ZTEST() [all …]
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_links/src/ |
D | main.c | 144 for (uint8_t d = 0; d < log_domains_count(); d++) { in ZTEST() local 145 uint16_t source_cnt = log_src_cnt_get(d); in ZTEST() 147 zassert_equal(source_cnt, exp_source_cnt[d], in ZTEST() 148 "Unexpected source count (%d:%d)", d, source_cnt); in ZTEST() 152 static void test_single_compile_level(uint8_t d, uint16_t s, uint32_t exp_level) in test_single_compile_level() argument 154 uint32_t level = log_filter_get(NULL, d, s, false); in test_single_compile_level() 158 d, s, level, exp_level); in test_single_compile_level() 172 static void test_single_runtime_level(uint8_t d, uint16_t s, uint8_t *link_level) in test_single_runtime_level() argument 177 level1 = log_filter_get(&backend1, d, s, true); in test_single_runtime_level() 178 level2 = log_filter_get(&backend2, d, s, true); in test_single_runtime_level() [all …]
|
/Zephyr-Core-3.5.0/lib/libc/minimal/source/string/ |
D | string.c | 20 char *strcpy(char *ZRESTRICT d, const char *ZRESTRICT s) in strcpy() argument 22 char *dest = d; in strcpy() 25 *d = *s; in strcpy() 26 d++; in strcpy() 30 *d = '\0'; in strcpy() 42 char *strncpy(char *ZRESTRICT d, const char *ZRESTRICT s, size_t n) in strncpy() argument 44 char *dest = d; in strncpy() 47 *d = *s; in strncpy() 49 d++; in strncpy() 54 *d = '\0'; in strncpy() [all …]
|
/Zephyr-Core-3.5.0/samples/subsys/zbus/dyn_channel/ |
D | README.rst | 74 W: 0d 0d 0d 0d 0d 0d 0d 0d |........ 75 W: 0d 0d 0d 0d 0d 0d |......
|
/Zephyr-Core-3.5.0/drivers/watchdog/ |
D | wdt_tco.c | 14 #define BASE(d) ((struct tco_config *)(d)->config)->base argument 16 #define TCO_RLD(d) (BASE(d) + 0x00) /* TCO Timer Reload/Curr. Value */ argument 17 #define TCO_DAT_IN(d) (BASE(d) + 0x02) /* TCO Data In Register */ argument 18 #define TCO_DAT_OUT(d) (BASE(d) + 0x03) /* TCO Data Out Register */ argument 19 #define TCO1_STS(d) (BASE(d) + 0x04) /* TCO1 Status Register */ argument 20 #define TCO2_STS(d) (BASE(d) + 0x06) /* TCO2 Status Register */ argument 21 #define TCO1_CNT(d) (BASE(d) + 0x08) /* TCO1 Control Register */ argument 22 #define TCO2_CNT(d) (BASE(d) + 0x0a) /* TCO2 Control Register */ argument 23 #define TCO_MSG(d) (BASE(d) + 0x0c) /* TCO Message Registers */ argument 24 #define TCO_WDSTATUS(d) (BASE(d) + 0x0e) /* TCO Watchdog Status Register */ argument [all …]
|
/Zephyr-Core-3.5.0/doc/services/zbus/images/ |
D | zbus_publishing_process_example2.svg | 2 <path d="M504 2H0V332.387H504V2Z" fill="white"/> 3 <path d="M503.697 305.975L460.741 332.387V279.563L503.697 305.975Z" fill="#EBEBEB"/> 4 <path d="M469.333 288.653H10.3773V323.295H469.333V288.653Z" fill="#EBEBEB"/> 5 <path d="M27.6973 74.2293L54.0613 117.108H1.33331L27.6973 74.2293Z" fill="#EBEBEB"/> 6 <path d="M10.3773 104.609V323.295H45.0187V104.609H10.3773Z" fill="#EBEBEB"/> 7 <path d="M35.656 241.925H20.616V235.397C20.616 233.748 21.0284 232.475 21.8533 231.579C22.6782 230.… 8 <path d="M219.839 313.933V301.176H214.676V298.893H227.732V301.176H222.569V313.933H219.839ZM229.035 … 9 <path d="M504 246H117.556V271.076H504V246Z" fill="#EEEEEE"/> 10 <path d="M266 246H139V271H266V246Z" fill="#F7B859"/> 11 <path d="M267 246H162V271H267V246Z" fill="#6931D0"/> [all …]
|
D | zbus_publishing_process_example.svg | 2 <path d="M504 2H0V332.387H504V2Z" fill="white"/> 3 <path d="M503.697 305.975L460.741 332.387V279.563L503.697 305.975Z" fill="#EBEBEB"/> 4 <path d="M469.333 288.653H10.3773V323.295H469.333V288.653Z" fill="#EBEBEB"/> 5 <path d="M27.6973 74.2293L54.0613 117.108H1.33331L27.6973 74.2293Z" fill="#EBEBEB"/> 6 <path d="M10.3773 104.609V323.295H45.0187V104.609H10.3773Z" fill="#EBEBEB"/> 7 <path d="M35.656 241.925H20.616V235.397C20.616 233.748 21.0284 232.475 21.8533 231.579C22.6782 230.… 8 <path d="M219.839 313.933V301.176H214.676V298.893H227.732V301.176H222.569V313.933H219.839ZM229.035 … 9 <path d="M504 246H117.556V271.076H504V246Z" fill="#EEEEEE"/> 10 <path d="M305.556 246H138.889V271.076H305.556V246Z" fill="#F7B859"/> 11 <path d="M305.556 246H161.556V271.076H305.556V246Z" fill="#6931D0"/> [all …]
|
/Zephyr-Core-3.5.0/scripts/west_commands/completion/ |
D | west-completion.fish | 210 complete -c west -n "__zephyr_west_exclude -h --help" -o h -l help -d "show help" 211 complete -c west -o v -l verbose -d "enable verbosity" 212 complete -c west -n "__zephyr_west_exclude -V --version" -o V -l version -d "print version" 213 …zephyr-base" -o z -l zephyr-base -xa "(__zephyr_west_complete_directories)" -d "zephyr base folder" 216 complete -c west -n __zephyr_west_use_subcommand -ra init -d "create a west workspace" 218 …nd_from init; and __zephyr_west_exclude -l --local" -l mr -l manifest-rev -r -d "manifest revision" 219 complete -c west -n "__zephyr_west_seen_subcommand_from init" -l mf -l manifest-file -r -d "manifes… 220 …t_exclude -l --local" -o m -l manifest -ra "(__zephyr_west_complete_directories)" -d "manifest URL" 221 …r --manifest-rev" -o l -l local -ra "(__zephyr_west_complete_directories)" -d "use local directory… 224 complete -c west -n __zephyr_west_use_subcommand -ra update -d "update projects described in west m… [all …]
|
/Zephyr-Core-3.5.0/drivers/serial/ |
D | uart_native_ptty.c | 83 struct native_uart_status *d; in np_uart_0_init() local 85 d = (struct native_uart_status *)dev->data; in np_uart_0_init() 90 d->in_fd = tty_fn; in np_uart_0_init() 91 d->out_fd = tty_fn; in np_uart_0_init() 94 d->in_fd = np_uart_ptty_get_stdin_fileno(); in np_uart_0_init() 95 d->out_fd = np_uart_ptty_get_stdout_fileno(); in np_uart_0_init() 109 struct native_uart_status *d; in np_uart_1_init() local 112 d = (struct native_uart_status *)dev->data; in np_uart_1_init() 116 d->in_fd = tty_fn; in np_uart_1_init() 117 d->out_fd = tty_fn; in np_uart_1_init() [all …]
|
/Zephyr-Core-3.5.0/boards/shields/st7735r/ |
D | st7735r_ada_160x128.overlay | 35 frmctr1 = [01 2c 2d]; 36 frmctr2 = [01 2c 2d]; 37 frmctr3 = [01 2c 2d 01 2c 2d]; 38 gamctrp1 = [02 1c 07 12 37 32 29 2d 29 25 2b 39 00 01 03 10]; 39 gamctrn1 = [03 1d 07 06 2e 2c 29 2d 2e 2e 37 3f 00 00 02 10];
|
/Zephyr-Core-3.5.0/lib/hash/ |
D | hash_func32_djb2.c | 38 const uint8_t *d; in sys_hash32_djb2() local 41 for (hash = 5381, d = str; n > 0; --n, ++d) { in sys_hash32_djb2() 44 hash ^= *d; in sys_hash32_djb2()
|
/Zephyr-Core-3.5.0/scripts/build/ |
D | gen_device_deps.py | 100 *[str(d.handle) for d in handles["depends"]], 102 *[str(d.handle) for d in handles["injected"]], 104 *[str(d.handle) for d in handles["supports"]], 155 "depends": sorted(dev.devs_depends_on, key=lambda d: d.handle), 156 "injected": sorted(dev.devs_depends_on_injected, key=lambda d: d.handle), 157 "supports": sorted(dev.devs_supports, key=lambda d: d.handle),
|
/Zephyr-Core-3.5.0/lib/os/ |
D | cbprintf_nano.c | 189 uint_value_type d; in z_cbvprintf_impl() local 195 d = va_arg(ap, size_t); in z_cbvprintf_impl() 197 d = va_arg(ap, ssize_t); in z_cbvprintf_impl() 201 d = va_arg(ap, unsigned long); in z_cbvprintf_impl() 203 d = va_arg(ap, long); in z_cbvprintf_impl() 216 d = (uint_value_type) llu; in z_cbvprintf_impl() 226 d = (int_value_type) lld; in z_cbvprintf_impl() 229 d = va_arg(ap, unsigned int); in z_cbvprintf_impl() 231 d = va_arg(ap, int); in z_cbvprintf_impl() 234 if (*fmt != 'u' && (int_value_type)d < 0) { in z_cbvprintf_impl() [all …]
|
/Zephyr-Core-3.5.0/arch/arm64/core/ |
D | prep_c.c | 30 uint8_t *d = dst; in z_early_memset() local 33 *d++ = c; in z_early_memset() 39 uint8_t *d = dst; in z_early_memcpy() local 43 *d++ = *s++; in z_early_memcpy()
|
/Zephyr-Core-3.5.0/soc/xtensa/intel_adsp/common/include/ |
D | soc_util.h | 14 volatile uint32_t *d = (uint32_t *)dest; in bmemcpy() local 19 d[i] = s[i]; in bmemcpy() 27 volatile uint32_t *d = (uint32_t *)dest; in bbzero() local 30 d[i] = 0; in bbzero()
|
/Zephyr-Core-3.5.0/tests/ztest/ztress/src/ |
D | main.c | 28 int64_t d; in ZTEST() local 36 d = k_uptime_get(); in ZTEST() 42 d = k_uptime_get() - d; in ZTEST() 43 zassert_within(d, 1000, 200); in ZTEST() 53 d = k_uptime_get(); in ZTEST() 56 d = k_uptime_get() - d; in ZTEST() 57 zassert_within(d, timeout + 500, 500); in ZTEST()
|