Home
last modified time | relevance | path

Searched full:remain (Results 1 – 25 of 164) sorted by relevance

1234567

/Zephyr-latest/include/zephyr/portability/
Dcmsis_os.h48 /// \note MUST REMAIN UNCHANGED: \b osCMSIS identifies the CMSIS-RTOS API version.
54 /// \note MUST REMAIN UNCHANGED: \b osKernelSystemId shall be consistent in every CMSIS-RTOS.
57 /// \note MUST REMAIN UNCHANGED: \b osFeature_xxx shall be consistent in every CMSIS-RTOS.
81 /// \note MUST REMAIN UNCHANGED: \b osPriority shall be consistent in every CMSIS-RTOS.
94 /// \note MUST REMAIN UNCHANGED: \b osWaitForever shall be consistent in every CMSIS-RTOS.
98 /// \note MUST REMAIN UNCHANGED: \b osStatus shall be consistent in every CMSIS-RTOS.
119 /// \note MUST REMAIN UNCHANGED: \b os_timer_type shall be consistent in every CMSIS-RTOS.
126 /// \note MUST REMAIN UNCHANGED: \b os_pthread shall be consistent in every CMSIS-RTOS.
130 /// \note MUST REMAIN UNCHANGED: \b os_ptimer shall be consistent in every CMSIS-RTOS.
225 /// \note MUST REMAIN UNCHANGED: \b os_event shall be consistent in every CMSIS-RTOS.
[all …]
/Zephyr-latest/soc/arm/beetle/
Dpower.c77 * @brief Configures the clock that remain active during sleep state.
79 * Configures the clock that remain active during sleep state.
88 * @brief Configures the clock that remain active during deepsleep state.
90 * Configures the clock that remain active during deepsleep state.
/Zephyr-latest/tests/arch/arm64/arm64_gicv3_its/src/
Dmain.c64 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-latest/subsys/bluetooth/host/classic/
Davrcp_internal.h72 * fields remain unchanged in the response frame.
78 * fields remain unchanged in the response frame.
88 * fields remain unchanged in the response frame.
95 * fields remain unchanged in the response frame.
/Zephyr-latest/drivers/i2c/
Di2c_ene_kb1200.c39 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-latest/tests/bsim/bluetooth/host/att/pipeline/test_scripts/
Drun_test_tolerate_pipeline_variant_rx_tx_prio_invert.sh10 # The DUT GATT server must remain available to a well-behaved
23 # - The connection with the well-behaved peer shall remain
/Zephyr-latest/drivers/spi/
Dspi_max32.c204 uint32_t remain, flags, tx_len, rx_len; in spi_max32_transceive_sync() local
212 remain = tx_len - req->txCnt; in spi_max32_transceive_sync()
213 if (remain > 0) { in spi_max32_transceive_sync()
216 MIN(remain, sizeof(data->dummy))); in spi_max32_transceive_sync()
219 MXC_SPI_WriteTXFIFO(spi, &req->txData[req->txCnt], remain); in spi_max32_transceive_sync()
797 uint32_t flags, remain; in spi_max32_isr() local
803 remain = (req->txLen << dfs_shift) - req->txCnt; in spi_max32_isr()
805 if (remain) { in spi_max32_isr()
808 MIN(remain, sizeof(data->dummy))); in spi_max32_isr()
811 MXC_SPI_WriteTXFIFO(spi, &req->txData[req->txCnt], remain); in spi_max32_isr()
[all …]
/Zephyr-latest/drivers/ethernet/
Deth_w5500.c111 size_t 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()
136 size_t 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-latest/soc/nordic/common/
Dnrf_sys_event.h13 * call to nrf_sys_event_request_global_constlat() and will remain
/Zephyr-latest/drivers/counter/
Dcounter_ll_stm32_rtc.c349 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-latest/include/zephyr/arch/common/
Dpm_s2ram.h70 * - the content of the R1 and R4 registers must remain unchanged
86 * - the content of the R1 and R4 registers must remain unchanged
/Zephyr-latest/samples/boards/nordic/nrf_sys_event/src/
Dmain.c26 printf("constant latency mode will remain enabled\n"); in main()
/Zephyr-latest/dts/bindings/mtd/
Djedec,spi-nor-common.yaml61 remain deasserted after issuing DPD before the chip will enter
72 remain deasserted after issuing RDPD before the chip will exit
/Zephyr-latest/dts/bindings/sensor/
Dmicrochip,tcn75a.yaml32 > bit 6, bit 7 or bit 8 will remain clear <0>,
/Zephyr-latest/include/zephyr/linker/
Dkobject-rom.ld14 * so the addresses to kobjects would remain the same
Dkobject-priv-stacks.ld18 * so the addresses to kobjects would remain the same
Dkobject-data.ld28 * so the addresses to kobjects would remain the same
/Zephyr-latest/samples/tfm_integration/psa_crypto/src/
Dutil_app_cfg.h18 * The first 6 bytes of this struct should remain consistent in any future
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Drpr_srv.rst30 …etooth_mesh_dfu_firmware_effect>`), it is not possible for the device to remain provisioned. The d…
/Zephyr-latest/samples/boards/st/power_mgmt/wkup_pins/src/
Dmain.c44 /* Will remain powered off until wake-up or reset button is pressed */ in main()
/Zephyr-latest/include/zephyr/drivers/
Dloopback_disk.h29 * @p All parameters (ctx, file_path and disk_access_name) must point to data that will remain valid
/Zephyr-latest/drivers/i3c/
Di3c_cdns.c755 uint32_t remain, val; in cdns_i3c_write_tx_fifo() local
757 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_tx_fifo()
762 if (remain > 0) { in cdns_i3c_write_tx_fifo()
764 memcpy(&val, ptr, remain); in cdns_i3c_write_tx_fifo()
773 uint32_t remain, val; in cdns_i3c_write_ddr_tx_fifo() local
775 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_ddr_tx_fifo()
780 if (remain > 0) { in cdns_i3c_write_ddr_tx_fifo()
782 memcpy(&val, ptr, remain); in cdns_i3c_write_ddr_tx_fifo()
792 uint32_t remain, val; in cdns_i3c_write_ibi_fifo() local
794 for (remain = len; remain >= 4; remain -= 4) { in cdns_i3c_write_ibi_fifo()
[all …]
/Zephyr-latest/subsys/demand_paging/eviction/
Dlru.c31 * pages will tend to remain towards the end of the queue. And there won't be
32 * any fault overhead while the set of accessed pages remain stable.
/Zephyr-latest/drivers/sensor/renesas/isl29035/
DKconfig131 need to remain outside the threshold window in order for the interrupt
/Zephyr-latest/include/zephyr/drivers/flash/
Dstm32_flash_api_extensions.h19 * remain unchanged. If same sector is set on both masks, protection

1234567