Home
last modified time | relevance | path

Searched refs:y0 (Results 1 – 19 of 19) sorted by relevance

/Zephyr-Core-3.7.0/drivers/sensor/ntc_thermistor/
Dntc_thermistor_calc.c21 static int ntc_fixp_linear_interpolate(int x0, int y0, int x1, int y1, int x) in ntc_fixp_linear_interpolate() argument
23 if (y0 == y1 || x == x0) { in ntc_fixp_linear_interpolate()
24 return y0; in ntc_fixp_linear_interpolate()
30 return y0 + ((y1 - y0) * (x - x0) / (x1 - x0)); in ntc_fixp_linear_interpolate()
/Zephyr-Core-3.7.0/subsys/fb/
Dcfb.c233 static void draw_line(struct char_framebuffer *fb, int16_t x0, int16_t y0, int16_t x1, int16_t y1) in draw_line() argument
236 int16_t sy = (y0 < y1) ? 1 : -1; in draw_line()
238 int16_t dy = (sy > 0) ? (y0 - y1) : (y1 - y0); in draw_line()
243 draw_point(fb, x0, y0); in draw_line()
245 if (x0 == x1 && y0 == y1) { in draw_line()
258 y0 += sy; in draw_line()
/Zephyr-Core-3.7.0/drivers/sensor/st/iis2iclx/
Diis2iclx.h70 int16_t y0; member
Diis2iclx.c404 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in iis2iclx_hum_convert()
Diis2iclx_shub.c172 ht->y0 = buf[0] / 2; in hts221_read_conv_data()
/Zephyr-Core-3.7.0/drivers/sensor/st/lsm6dso/
Dlsm6dso.h83 int16_t y0; member
Dlsm6dso.c575 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso_hum_convert()
Dlsm6dso_shub.c156 ht->y0 = buf[0] / 2; in lsm6dso_hts221_read_conv_data()
/Zephyr-Core-3.7.0/drivers/sensor/st/ism330dhcx/
Dism330dhcx.h75 int16_t y0; member
Dism330dhcx.c580 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in ism330dhcx_hum_convert()
Dism330dhcx_shub.c166 ht->y0 = buf[0] / 2; in ism330dhcx_hts221_read_conv_data()
/Zephyr-Core-3.7.0/drivers/sensor/st/lsm6dsv16x/
Dlsm6dsv16x.h88 int16_t y0; member
Dlsm6dsv16x.c652 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dsv16x_hum_convert()
Dlsm6dsv16x_shub.c157 ht->y0 = buf[0] / 2; in lsm6dsv16x_hts221_read_conv_data()
/Zephyr-Core-3.7.0/drivers/sensor/st/lsm6dso16is/
Dlsm6dso16is.h87 int16_t y0; member
Dlsm6dso16is.c606 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso16is_hum_convert()
Dlsm6dso16is_shub.c157 ht->y0 = buf[0] / 2; in lsm6dso16is_hts221_read_conv_data()
/Zephyr-Core-3.7.0/scripts/coccinelle/
Dsymbols.txt290 y0
/Zephyr-Core-3.7.0/tests/unit/util/
Dmain.c110 COND_CODE_1(1, (uint32_t x0 = 1;), (uint32_t y0;)) in ZTEST()
127 COND_CODE_0(0, (uint32_t x0 = 1;), (uint32_t y0;)) in ZTEST()