Home
last modified time | relevance | path

Searched full:increment (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/Zephyr-latest/drivers/gnss/
Dgnss_parse.c26 int64_t increment; in gnss_parse_dec_to_nano() local
50 increment = GNSS_PARSE_NANO; in gnss_parse_dec_to_nano()
58 sum += (str[pos] - '0') * increment; in gnss_parse_dec_to_nano()
60 /* Update increment */ in gnss_parse_dec_to_nano()
61 increment *= 10; in gnss_parse_dec_to_nano()
78 increment = GNSS_PARSE_NANO / 10LL; in gnss_parse_dec_to_nano()
86 sum += (str[pos] - '0') * increment; in gnss_parse_dec_to_nano()
89 increment /= 10; in gnss_parse_dec_to_nano()
91 /* Increment position */ in gnss_parse_dec_to_nano()
Dgnss_nmea0183.c171 uint64_t increment; in gnss_nmea0183_ddmm_mmmm_to_ndeg() local
200 increment = (GNSS_NMEA0183_PICO_DEGREES_IN_MINUTE / 10); in gnss_nmea0183_ddmm_mmmm_to_ndeg()
207 /* Add increment to pico_degrees */ in gnss_nmea0183_ddmm_mmmm_to_ndeg()
208 pico_degrees += (ddmm_mmmm[pos] - '0') * increment; in gnss_nmea0183_ddmm_mmmm_to_ndeg()
211 increment /= 10; in gnss_nmea0183_ddmm_mmmm_to_ndeg()
213 /* Increment position */ in gnss_nmea0183_ddmm_mmmm_to_ndeg()
219 increment = GNSS_NMEA0183_PICO_DEGREES_IN_MINUTE; in gnss_nmea0183_ddmm_mmmm_to_ndeg()
223 /* Reset increment to degrees */ in gnss_nmea0183_ddmm_mmmm_to_ndeg()
224 increment = GNSS_NMEA0183_PICO_DEGREES_IN_DEGREE; in gnss_nmea0183_ddmm_mmmm_to_ndeg()
232 /* Add increment to pico_degrees */ in gnss_nmea0183_ddmm_mmmm_to_ndeg()
[all …]
/Zephyr-latest/dts/bindings/dma/
Dst,stm32-dmamux.yaml20 -bit 9 : Peripheral Increment Address
21 0x0: no address increment between transfers
22 0x1: increment address between transfers
23 -bit 10 : Memory Increment Address
24 0x0: no address increment between transfers
25 0x1: increment address between transfers
36 -bit 15: Peripheral Increment Offset Size not USED for DMA V2
Dst,stm32u5-dma.yaml30 -bit 9 : Peripheral Increment Address
31 0x0: no address increment between transfers
32 0x1: increment address between transfers
33 -bit 10 : Memory Increment Address
34 0x0: no address increment between transfers
35 0x1: increment address between transfers
Dandestech,atcdmac300.yaml40 -bit 2 : Peripheral Increment Address
41 0x0: no address increment between transfers
42 0x1: increment address between transfers
43 -bit 3 : Memory Increment Address
44 0x0: no address increment between transfers
45 0x1: increment address between transfers
Dst,stm32-bdma.yaml22 -bit 9 : Peripheral Increment Address
23 0x0: no address increment between transfers
24 0x1: increment address between transfers
25 -bit 10 : Memory Increment Address
26 0x0: no address increment between transfers
27 0x1: increment address between transfers
38 -bit 15: Peripheral Increment Offset Size
Dst,stm32-dma-v1.yaml24 -bit 9 : Peripheral Increment Address
25 0x0: STM32_DMA_PERIPH_NO_INC: no address increment between transfers
26 0x1: STM32_DMA_PERIPH_INC: increment address between transfers
27 -bit 10 : Memory Increment Address
28 0x0: STM32_DMA_MEM_NO_INC: no address increment between transfers
29 0x1: STM32_DMA_MEM_INC: increment address between transfers
40 -bit 15: Peripheral Increment Offset Size
Dst,stm32-dma-v2bis.yaml25 -bit 9 : Peripheral Increment Address
26 0x0: STM32_DMA_PERIPH_NO_INC: no address increment between transfers
27 0x1: STM32_DMA_PERIPH_INC: increment address between transfers
28 -bit 10 : Memory Increment Address
29 0x0: STM32_DMA_MEM_NO_INC: no address increment between transfers
30 0x1: STM32_DMA_MEM_INC: increment address between transfers
Dst,stm32-dma-v2.yaml31 -bit 9 : Peripheral Increment Address
32 0x0: STM32_DMA_PERIPH_NO_INC: no address increment between transfers
33 0x1: STM32_DMA_PERIPH_INC: increment address between transfers
34 -bit 10 : Memory Increment Address
35 0x0: STM32_DMA_MEM_NO_INC: no address increment between transfers
36 0x1: STM32_DMA_MEM_INC: increment address between transfers
Dgd,gd32-dma.yaml17 - 0x0: no address increment between transfers
18 - 0x1: increment address between transfers
36 - bit 15: Peripheral Increment Offset Size
Dgd,gd32-dma-v1.yaml19 - 0x0: no address increment between transfers
20 - 0x1: increment address between transfers
38 - bit 15: Peripheral Increment Offset Size
/Zephyr-latest/include/zephyr/net/prometheus/
Dcounter.h76 * @brief Increment the value of a Prometheus counter metric
78 * @param counter Pointer to the counter metric to increment.
79 * @param value Amount to increment the counter by.
85 * @brief Increment the value of a Prometheus counter metric
87 * @param counter Pointer to the counter metric to increment.
101 * @param counter Pointer to the counter metric to increment.
/Zephyr-latest/include/zephyr/drivers/
Dptp_clock.h28 int (*adjust)(const struct device *dev, int increment);
72 * @param increment Increment of the clock in nanoseconds
76 static inline int ptp_clock_adjust(const struct device *dev, int increment) in ptp_clock_adjust() argument
81 return api->adjust(dev, increment); in ptp_clock_adjust()
Demul_sensor.h41 q31_t *increment, int8_t *shift);
151 * well as the increment (value per LSB) which can be used as an epsilon when comparing results.
159 * @param[out] increment The value that the attribute increases by for every LSB
160 * @param[out] shift The shift for \p min, \p max, and \p increment
168 q31_t *increment, int8_t *shift) in emul_sensor_backend_get_attribute_metadata() argument
179 return api->get_attribute_metadata(target, ch, attribute, min, max, increment, shift); in emul_sensor_backend_get_attribute_metadata()
/Zephyr-latest/doc/connectivity/bluetooth/api/mesh/
Dsar_cfg.rst63 …SAR Unicast Retransmissions Interval Step`_ and `SAR Unicast Retransmissions Interval Increment`_).
66 * Acknowledgment delay increment (see the `SAR Acknowledgment Delay Increment`_ state).
75 …unicast~retransmissions~interval~step + unicast~retransmissions~interval~increment \times (TTL - 1)
95 min(SegN + 0.5 , acknowledgment~delay~increment) \times segment~reception~interval
128 * SAR Unicast Retransmissions Interval Increment
138 * SAR Acknowledgment Delay Increment
188 SAR Unicast Retransmissions Interval Increment
191 SAR Unicast Retransmissions Interval Increment holds a value that controls the interval increment
193 address. The increment is measured in milliseconds.
196 default value. The Kconfig option value is used to calculate the increment using the following
[all …]
/Zephyr-latest/lib/libc/minimal/source/stdlib/
Drand.c12 #define INCREMENT (12345U) macro
16 *seed = (MULTIPLIER * *seed + INCREMENT) & OUTPUT_BITS; in rand_r()
/Zephyr-latest/subsys/net/lib/prometheus/
Dhistogram.c23 /* increment count */ in prometheus_histogram_observe()
32 /* increment count for the bucket */ in prometheus_histogram_observe()
/Zephyr-latest/include/zephyr/dt-bindings/dma/
Dstm32_dma.h25 /** DMA Peripheral increment Address config on bit 9 */
30 /** DMA Memory increment Address config on bit 10 */
47 /** DMA Peripheral increment offset config on bit 15 */
/Zephyr-latest/tests/benchmarks/thread_metric/
Dthread_metric_readme.txt23 Each thread will increment its run counter and then relinquish to
36 thread executes. Each thread will increment its run count and then
40 it will increment its run counter and once again resume the next
48 increment a counter and then post to a semaphore. After the
65 increment its run counter.
71 the thread will increment its run counter.
77 will increment its run counter.
/Zephyr-latest/include/zephyr/bluetooth/mesh/
Dsar_cfg.h36 /** SAR Unicast Retransmissions Interval Increment state */
51 /** SAR Acknowledgment Delay Increment state */
/Zephyr-latest/tests/lib/cmsis_dsp/svm/src/
Df16.c70 /* Increment pointers */ in ZTEST()
112 /* Increment pointers */ in ZTEST()
153 /* Increment pointers */ in ZTEST()
194 /* Increment pointers */ in ZTEST()
233 /* Increment pointers */ in ZTEST()
Df32.c70 /* Increment pointers */ in ZTEST()
112 /* Increment pointers */ in ZTEST()
153 /* Increment pointers */ in ZTEST()
194 /* Increment pointers */ in ZTEST()
233 /* Increment pointers */ in ZTEST()
/Zephyr-latest/tests/drivers/mbox/mbox_data/src/
Dmain.c101 /* Increment current channel index to its prepared for next test */ in mbox_data_tests_after()
152 /* Increment for next send */ in mbox_test()
163 * Remote core will increment data by one and transfer it back to Main core.
165 * Main core will again increment test data by one, send it to remote core and repeat 100 times.
/Zephyr-latest/include/zephyr/drivers/dma/
Ddma_stm32.h62 /* periph increment defined on bit 9 as true/false */
64 /* mem increment defined on bit 10 as true/false */
74 /* priority increment offset defined on bit 15 */
/Zephyr-latest/samples/sensor/veaa_x_3/
DKconfig20 int "Sample kPa increment per loop"

12345678910>>...12