Searched refs:sqrt (Results 1 – 12 of 12) sorted by relevance
/Zephyr-latest/tests/lib/c_lib/common/src/ |
D | test_sqrt.c | 161 zassert_true(sqrt(0.0) == 0.0, "sqrt(0.0)"); in ZTEST() 162 zassert_true(isnan(sqrt((double)NAN)), "sqrt(nan)"); in ZTEST() 164 zassert_true(issignalling(sqrt((double)NAN)), "ssignaling(sqrt(nan))"); in ZTEST() 167 zassert_true(isnan(sqrt((double)-NAN)), "isnan(sqrt(-nan))"); in ZTEST() 168 zassert_true(isinf(sqrt((double)INFINITY)), "isinf(sqrt(inf))"); in ZTEST() 169 zassert_true(isnan(sqrt((double)-INFINITY)), "isnan(sqrt(-inf))"); in ZTEST() 170 zassert_true(isnan(sqrt(-10.0)), "isnan(sqrt(-10.0))"); in ZTEST() 175 resd = sqrt(square); in ZTEST()
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | math.h | 55 double sqrt(double square);
|
/Zephyr-latest/lib/libc/minimal/source/math/ |
D | sqrt.c | 23 double sqrt(double square) in sqrt() function
|
/Zephyr-latest/samples/shields/lmp90100_evb/rtd/src/ |
D | main.c | 33 temp += sqrt((nom * nom) * (a0 * a0) - 4.0 * nom * b0 * in rtd_temperature()
|
/Zephyr-latest/lib/libc/minimal/ |
D | CMakeLists.txt | 34 source/math/sqrt.c
|
/Zephyr-latest/tests/kernel/timer/timer_behavior/src/ |
D | jitter_drift.c | 212 double stddev_us = sqrt(variance_us); in do_test_using() 213 double stddev_cyc = sqrt(variance_cyc); in do_test_using()
|
/Zephyr-latest/samples/drivers/video/capture/src/ |
D | check_test_pattern.h | 108 return sqrt(pow(lab1.L - lab2.L, 2) + pow(lab1.a - lab2.a, 2) + pow(lab1.b - lab2.b, 2)); in deltaE()
|
/Zephyr-latest/scripts/coccinelle/ |
D | symbols.txt | 182 sqrt
|
/Zephyr-latest/drivers/sensor/maxim/max31865/ |
D | max31865.c | 96 temperature = (-RTD_A + sqrt(delta)) / (2 * RTD_B); in calculate_temperature()
|
/Zephyr-latest/doc/contribute/documentation/ |
D | guidelines.rst | 412 The answer to life, the universe, and everything is :math:`30 + 2^2 + \sqrt{64} = 42`. 416 The answer to life, the universe, and everything is :math:`30 + 2^2 + \sqrt{64} = 42`.
|
/Zephyr-latest/modules/cmsis-dsp/ |
D | CMakeLists.txt | 196 # MVE code is using a table for computing the fast sqrt arm_cmplx_mag_q31
|
/Zephyr-latest/doc/contribute/coding_guidelines/ |
D | index.rst | 1369 sqrt(),ISO/IEC 9899:2011
|