/Zephyr-Core-3.7.0/tests/arch/arm64/arm64_gicv3_its/src/ |
D | main.c | 64 unsigned int remain = 0; in ZTEST() local 69 for (event_id = remain; event_id < ITS_TEST_NUM_ITES; event_id += ITS_TEST_NEXT) { in ZTEST() 77 remain = event_id - ITS_TEST_NUM_ITES; in ZTEST() 148 unsigned int remain = 0; in ZTEST() local 155 for (event_id = remain; event_id < ITS_TEST_NUM_ITES; event_id += ITS_TEST_NEXT) { in ZTEST() 171 remain = event_id - ITS_TEST_NUM_ITES; in ZTEST()
|
/Zephyr-Core-3.7.0/drivers/spi/ |
D | spi_max32.c | 168 uint32_t remain, flags, tx_len, rx_len; in spi_max32_transceive_sync() local 176 remain = tx_len - req->txCnt; in spi_max32_transceive_sync() 177 if (remain > 0) { in spi_max32_transceive_sync() 180 MIN(remain, sizeof(data->dummy))); in spi_max32_transceive_sync() 183 MXC_SPI_WriteTXFIFO(spi, &req->txData[req->txCnt], remain); in spi_max32_transceive_sync() 411 uint32_t flags, remain; in spi_max32_isr() local 417 remain = (req->txLen << dfs_shift) - req->txCnt; in spi_max32_isr() 419 if (remain) { in spi_max32_isr() 422 MIN(remain, sizeof(data->dummy))); in spi_max32_isr() 425 MXC_SPI_WriteTXFIFO(spi, &req->txData[req->txCnt], remain); in spi_max32_isr() [all …]
|
/Zephyr-Core-3.7.0/drivers/i2c/ |
D | i2c_ene_kb1200.c | 39 uint32_t remain = data->msg_len - data->index; in i2c_kb1200_isr() local 41 remain > FSMBM_BUFFER_SIZE ? FSMBM_BUFFER_SIZE : remain; in i2c_kb1200_isr() 70 uint32_t remain = data->msg_len - data->index; in i2c_kb1200_isr() local 71 uint32_t receive_bytes = (remain > FSMBM_BUFFER_SIZE) ? FSMBM_BUFFER_SIZE : remain; in i2c_kb1200_isr() 79 remain = data->msg_len - data->index; in i2c_kb1200_isr() 81 (remain > FSMBM_BUFFER_SIZE) ? FSMBM_BUFFER_SIZE : remain; in i2c_kb1200_isr()
|
/Zephyr-Core-3.7.0/drivers/counter/ |
D | counter_ll_stm32_rtc.c | 349 uint32_t remain; in rtc_stm32_set_alarm() 384 remain = ticks + now + 1; in rtc_stm32_set_alarm() 386 remain = ticks; in rtc_stm32_set_alarm() 392 remain--; in rtc_stm32_set_alarm() 414 rtc_alarm.AlarmTime.Hours = remain / 3600; in rtc_stm32_set_alarm() 415 remain -= rtc_alarm.AlarmTime.Hours * 3600; in rtc_stm32_set_alarm() 416 rtc_alarm.AlarmTime.Minutes = remain / 60; in rtc_stm32_set_alarm() 417 remain -= rtc_alarm.AlarmTime.Minutes * 60; in rtc_stm32_set_alarm() 418 rtc_alarm.AlarmTime.Seconds = remain; in rtc_stm32_set_alarm()
|
/Zephyr-Core-3.7.0/drivers/ethernet/ |
D | eth_w5500.c | 111 int remain = 0; in w5500_readbuf() local 120 remain = (offset + len) % mem_size; in w5500_readbuf() 125 if (ret || !remain) { in w5500_readbuf() 129 return w5500_spi_read(dev, mem_start, buf + len, remain); in w5500_readbuf() 137 int remain = 0; in w5500_writebuf() local 145 remain = (offset + len) % mem_size; in w5500_writebuf() 150 if (ret || !remain) { in w5500_writebuf() 154 return w5500_spi_write(dev, mem_start, buf + len, remain); in w5500_writebuf()
|
/Zephyr-Core-3.7.0/drivers/i3c/ |
D | i3c_cdns.c | 738 uint32_t remain, val; in cdns_i3c_write_tx_fifo() local 740 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_tx_fifo() 745 if (remain > 0) { in cdns_i3c_write_tx_fifo() 747 memcpy(&val, ptr, remain); in cdns_i3c_write_tx_fifo() 756 uint32_t remain, val; in cdns_i3c_write_ddr_tx_fifo() local 758 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_ddr_tx_fifo() 763 if (remain > 0) { in cdns_i3c_write_ddr_tx_fifo() 765 memcpy(&val, ptr, remain); in cdns_i3c_write_ddr_tx_fifo() 775 uint32_t remain, val; in cdns_i3c_write_ibi_fifo() local 777 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_ibi_fifo() [all …]
|
/Zephyr-Core-3.7.0/include/zephyr/linker/ |
D | kobject-rom.ld | 14 * so the addresses to kobjects would remain the same
|
D | kobject-priv-stacks.ld | 18 * so the addresses to kobjects would remain the same
|
D | kobject-data.ld | 28 * so the addresses to kobjects would remain the same
|
/Zephyr-Core-3.7.0/scripts/ |
D | checkpatch.pl | 1393 my ($linenr, $remain, $off) = @_; 1417 for (; $remain > 0; $line++) { 1420 $remain--; 1511 $remain--; 1523 $line, $remain + 1, $off - $loff + 1, $level); 1570 my ($linenr, $remain, $off) = @_; 1576 ($statement, $condition, $linenr, $remain, $off, $level) = 1577 ctx_statement_block($linenr, $remain, $off); 1580 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) { 1587 ($statement, $condition, $linenr, $remain, $off, $level) = [all …]
|
/Zephyr-Core-3.7.0/drivers/usb/device/ |
D | usb_dc_sam0.c | 643 int remain; in usb_dc_ep_read_ex() local 670 remain = bytes - data->out_at; in usb_dc_ep_read_ex() 671 take = MIN(max_data_len, remain); in usb_dc_ep_read_ex() 678 if (take == remain) { in usb_dc_ep_read_ex()
|
/Zephyr-Core-3.7.0/doc/connectivity/bluetooth/api/mesh/ |
D | rpr_srv.rst | 30 …etooth_mesh_dfu_firmware_effect>`), it is not possible for the device to remain provisioned. The d…
|
/Zephyr-Core-3.7.0/include/zephyr/net/ |
D | net_ip.h | 724 uint8_t remain = bits % 8; in net_ipv6_is_prefix() local 735 if (!remain) { in net_ipv6_is_prefix() 743 mask = (uint8_t)((0xff << (8 - remain)) ^ 0xff) << remain; in net_ipv6_is_prefix()
|
/Zephyr-Core-3.7.0/drivers/sensor/isl29035/ |
D | Kconfig | 129 need to remain outside the threshold window in order for the interrupt
|
/Zephyr-Core-3.7.0/boards/arm/mps2/ |
D | mps2_an521_cpu1.dts | 110 /* The code memory region defined below is selected to remain
|
/Zephyr-Core-3.7.0/doc/services/portability/posix/implementation/ |
D | index.rst | 33 example where the implementation should remain part of the POSIX implementation is
|
/Zephyr-Core-3.7.0/soc/intel/intel_adsp/ |
D | Kconfig | 82 remain identical.
|
/Zephyr-Core-3.7.0/dts/arm/silabs/ |
D | efr32mg24.dtsi | 44 * EM1 is a basic "CPU WFI idle", all high-freq clocks remain
|
D | efr32bg2x.dtsi | 54 * EM1 is a basic "CPU WFI idle", all high-freq clocks remain
|
/Zephyr-Core-3.7.0/doc/connectivity/networking/api/ |
D | coap_client.rst | 92 /* static, since options must remain valid throughout the whole execution of the request */
|
/Zephyr-Core-3.7.0/subsys/net/lib/http/ |
D | Kconfig | 104 This timeout specifies maximum time the client may remain inactive
|
/Zephyr-Core-3.7.0/subsys/net/ip/ |
D | Kconfig.ipv6 | 206 No temporary address should ever remain valid for longer than this 213 No temporary address should ever remain preferred for longer than this
|
/Zephyr-Core-3.7.0/doc/services/device_mgmt/smp_groups/ |
D | smp_group_8.rst | 38 Note that file handles will remain open for consecutive requests (as long as 167 Note that file handles will remain open for consecutive requests (as long as 170 even be removed. Note that file handles will remain open for consecutive
|
/Zephyr-Core-3.7.0/tests/net/socket/tcp/src/ |
D | main.c | 330 size_t remain = TEST_LARGE_TRANSFER_SIZE - total_received; in tcp_server_block_thread() local 332 if (chunk_size > remain) { in tcp_server_block_thread() 333 chunk_size = remain; in tcp_server_block_thread() 415 size_t remain = TEST_LARGE_TRANSFER_SIZE - total_send; in test_send_recv_large_common() local 417 if (chunk_size > remain) { in test_send_recv_large_common() 418 chunk_size = remain; in test_send_recv_large_common()
|
/Zephyr-Core-3.7.0/doc/develop/west/ |
D | why.rst | 100 emulator support will always remain compatible with direct use of
|