Lines Matching refs:y_err
283 lv_coord_t y_err = 0; in find_chid() local
287 y_err = get_y_center(child) - y_start; in find_chid()
289 if(LV_ABS(y_err) > h_half) continue; /*Too far*/ in find_chid()
293 y_err = get_y_center(child) - y_start; in find_chid()
295 if(LV_ABS(y_err) > h_half) continue; /*Too far*/ in find_chid()
299 y_err = get_y_center(child) - y_start; in find_chid()
300 if(y_err >= 0) continue; /*It's on the bottom*/ in find_chid()
304 y_err = get_y_center(child) - y_start; in find_chid()
305 if(y_err <= 0) continue; /*It's on the top*/ in find_chid()
308 y_err = get_y_center(child) - y_start; in find_chid()
309 if(y_err <= 0) continue; /*It's on the top*/ in find_chid()
313 y_err = get_y_center(child) - y_start; in find_chid()
314 if(y_err >= 0) continue; /*It's on the bottom*/ in find_chid()
319 y_err = lv_obj_get_y(child); in find_chid()
323 y_err = h_max - lv_obj_get_y(child); in find_chid()
327 … (y_err * y_err + x_err * x_err < y_err_guess * y_err_guess + x_err_guess * x_err_guess)) { in find_chid()
330 y_err_guess = y_err; in find_chid()