Searched refs:y0 (Results 1 – 19 of 19) sorted by relevance
/Zephyr-latest/drivers/sensor/ntc_thermistor/ |
D | ntc_thermistor_calc.c | 19 static int ntc_fixp_linear_interpolate(int x0, int y0, int x1, int y1, int x) in ntc_fixp_linear_interpolate() argument 21 if (y0 == y1 || x == x0) { in ntc_fixp_linear_interpolate() 22 return y0; in ntc_fixp_linear_interpolate() 28 return y0 + ((y1 - y0) * (x - x0) / (x1 - x0)); in ntc_fixp_linear_interpolate()
|
/Zephyr-latest/subsys/fb/ |
D | cfb.c | 233 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-latest/drivers/sensor/st/iis2iclx/ |
D | iis2iclx.h | 70 int16_t y0; member
|
D | iis2iclx.c | 403 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in iis2iclx_hum_convert()
|
D | iis2iclx_shub.c | 171 ht->y0 = buf[0] / 2; in hts221_read_conv_data()
|
/Zephyr-latest/drivers/sensor/st/ism330dhcx/ |
D | ism330dhcx.h | 75 int16_t y0; member
|
D | ism330dhcx.c | 579 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in ism330dhcx_hum_convert()
|
D | ism330dhcx_shub.c | 165 ht->y0 = buf[0] / 2; in ism330dhcx_hts221_read_conv_data()
|
/Zephyr-latest/drivers/sensor/st/lsm6dso/ |
D | lsm6dso.h | 87 int16_t y0; member
|
D | lsm6dso.c | 572 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso_hum_convert()
|
D | lsm6dso_shub.c | 155 ht->y0 = buf[0] / 2; in lsm6dso_hts221_read_conv_data()
|
/Zephyr-latest/drivers/sensor/st/lsm6dso16is/ |
D | lsm6dso16is.h | 87 int16_t y0; member
|
D | lsm6dso16is.c | 605 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dso16is_hum_convert()
|
D | lsm6dso16is_shub.c | 156 ht->y0 = buf[0] / 2; in lsm6dso16is_hts221_read_conv_data()
|
/Zephyr-latest/scripts/coccinelle/ |
D | symbols.txt | 291 y0
|
/Zephyr-latest/drivers/sensor/st/lsm6dsv16x/ |
D | lsm6dsv16x.h | 138 int16_t y0; member
|
D | lsm6dsv16x.c | 809 rh = (ht->y1 - ht->y0) * raw_val + ht->x1 * ht->y0 - ht->x0 * ht->y1; in lsm6dsv16x_hum_convert()
|
D | lsm6dsv16x_shub.c | 156 ht->y0 = buf[0] / 2; in lsm6dsv16x_hts221_read_conv_data()
|
/Zephyr-latest/tests/unit/util/ |
D | main.c | 110 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()
|