/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | environment.py | 1059 diff = {} 1061 return diff 1066 diff[k] = dict_options[k] 1067 return diff
|
/Zephyr-latest/drivers/counter/ |
D | counter_ll_stm32_timer.c | 206 uint32_t diff; in counter_stm32_set_cc() local 245 diff = counter_stm32_ticks_sub(val - 1U, counter_stm32_read(dev), top); in counter_stm32_set_cc() 246 if (diff > max_rel_val) { in counter_stm32_set_cc()
|
D | counter_renesas_ra_agt.c | 179 int32_t diff = 0; in counter_ra_agt_set_alarm() local 228 diff = r_agt_ticks_sub(now, val - 1, top); in counter_ra_agt_set_alarm() 230 if (diff > max_rel_val) { in counter_ra_agt_set_alarm()
|
D | counter_ifx_cat1.c | 395 uint32_t diff = ifx_cat1_counter_ticks_sub((val - 1), curr, top_val); in ifx_cat1_counter_set_alarm() local 397 if ((absolute && (val < curr)) || (diff > max_rel_val)) { in ifx_cat1_counter_set_alarm()
|
/Zephyr-latest/subsys/usb/device/class/hid/ |
D | core.c | 329 int32_t diff = abs((int32_t) ((uint32_t) dev_data->idle_rate[i] * 4U - in hid_sof_handler() local 332 if (diff < 2 && reported == false) { in hid_sof_handler() 341 } else if (diff == 0 && reported == true) { in hid_sof_handler()
|
/Zephyr-latest/doc/contribute/ |
D | contributor_expectations.rst | 158 - As GitHub does not implement |git range-diff|_, try to minimize rebases in the 163 .. |git range-diff| replace:: ``git range-diff`` 164 .. _`git range-diff`: https://git-scm.com/docs/git-range-diff
|
/Zephyr-latest/tests/drivers/timer/nrf_rtc_timer/src/ |
D | main.c | 75 uint64_t diff = (now - expire_time); in timeout_handler() local 77 zassert_true(diff <= data->delay, in timeout_handler()
|
/Zephyr-latest/tests/drivers/counter/counter_basic_api/src/ |
D | test_counter.c | 364 uint32_t diff; in alarm_handler() local 372 diff = (now < counter) ? in alarm_handler() 375 diff = (now > counter) ? in alarm_handler() 379 zassert_true(diff <= counter_us_to_ticks(dev, processing_limit_us), in alarm_handler()
|
/Zephyr-latest/scripts/ci/ |
D | check_compliance.py | 215 diff = subprocess.Popen(('git', 'diff', '--no-ext-diff', COMMIT_RANGE), 221 stdin=diff.stdout, 302 diff = subprocess.Popen(('git', 'diff', '-U0', '--no-color', COMMIT_RANGE, '--', file), 308 stdin=diff.stdout, 1204 diff = git("diff", f"{shaidx}^!", "--check", ignore_non_zero=True) 1206 lines = p.findall(diff)
|
D | test_plan.py | 462 commit = repo_to_scan.git.diff("--name-only", args.commits)
|
/Zephyr-latest/scripts/west_commands/completion/ |
D | west-completion.fish | 164 "diff" '"git diff" for one or more projects' \ 380 # diff 381 complete -c west -n __zephyr_west_use_subcommand -ra diff -d '"git diff" for one or more projects' 382 complete -c west -n "__zephyr_west_seen_subcommand_from diff" -ra "(__zephyr_west_complete_projects… 383 complete -c west -n "__zephyr_west_seen_subcommand_from diff" -o a -l all -d "include inactive proj…
|
D | west-completion.bash | 1210 diff
|
D | west-completion.zsh | 17 'diff["git diff" for one or more projects]'
|
/Zephyr-latest/drivers/sensor/ti/tmag5273/ |
D | tmag5273.c | 653 const uint8_t diff = TMAG5273_CRC_DATA_BYTES - (nb_bytes % TMAG5273_CRC_DATA_BYTES); in tmag5273_sample_fetch() local 655 if ((start_address - diff) >= TMAG5273_REG_RESULT_BEGIN) { in tmag5273_sample_fetch() 656 start_address -= diff; in tmag5273_sample_fetch()
|
/Zephyr-latest/drivers/adc/ |
D | adc_gecko.c | 61 initSingle.diff = false; in adc_gecko_set_config()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | codec.c | 144 const int16_t diff = data_len - value_len; in ltv_set_val() local 159 if (diff < 0) { in ltv_set_val() 173 if ((buf->len + diff) > buf->size) { in ltv_set_val() 187 buf->len += diff; in ltv_set_val() 188 *len += diff; in ltv_set_val()
|
/Zephyr-latest/doc/develop/west/ |
D | built-in.rst | 10 on the entire workspace. For example, ``west diff`` shows local changes in 249 - ``west diff``: run ``git diff`` in local project repositories
|
D | troubleshooting.rst | 187 (choose from 'init', 'update', 'list', 'manifest', 'diff',
|
D | release-notes.rst | 504 ``west diff``, ``west status``, ``west forall``. 510 - Running ``west list``, ``west diff``, ``west status``, or ``west forall`` 702 - Better and more consistent error-handling in the ``west diff``, ``west
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/ |
D | ull_scan_aux.c | 633 uint32_t diff; in ull_scan_aux_setup() local 646 diff = ticker_ticks_diff_get(ticks_now, ticks_at_expire); in ull_scan_aux_setup() 647 if ((diff & BIT(HAL_TICKER_CNTR_MSBIT)) == 0U) { in ull_scan_aux_setup() 1963 uint32_t diff; in ull_scan_aux_setup() local 1976 diff = ticker_ticks_diff_get(ticks_now, ticks_at_expire); in ull_scan_aux_setup() 1977 if ((diff & BIT(HAL_TICKER_CNTR_MSBIT)) == 0U) { in ull_scan_aux_setup()
|
/Zephyr-latest/drivers/flash/ |
D | flash_cadence_qspi_nor_ll.c | 567 int diff = first_pass - last_pass; in cad_qspi_calibration() local 569 data_cap_delay = first_pass + diff / 2; in cad_qspi_calibration()
|
/Zephyr-latest/tests/net/6lo/src/ |
D | main.c | 1077 int diff; in test_6lo() local 1098 diff = net_6lo_uncompress_hdr_diff(pkt); in test_6lo() 1099 zassert_true(diff == data->hdr_diff, "unexpected HDR diff"); in test_6lo()
|
/Zephyr-latest/subsys/shell/ |
D | shell.c | 132 uint16_t diff; in tab_item_print() local 145 diff = longest_option - z_shell_strlen(option); in tab_item_print() 153 z_shell_op_cursor_horiz_move(sh, diff); in tab_item_print()
|
/Zephyr-latest/subsys/net/lib/ptp/ |
D | port.c | 1351 int diff = 0; in ptp_port_add_foreign_tt() local 1392 diff = ptp_msg_announce_cmp(&msg->announce, &last->announce); in ptp_port_add_foreign_tt() 1395 return (foreign->messages_count == FOREIGN_TIME_TRANSMITTER_THRESHOLD ? 1 : 0) || diff; in ptp_port_add_foreign_tt()
|
/Zephyr-latest/boards/nxp/imx8mp_evk/doc/ |
D | index.rst | 270 …diff --git a/boards/nxp/imx8mp_evk/imx8mp_evk_mimx8ml8_m7_ddr_defconfig b/boards/nxp/imx8mp_evk/im…
|