Lines Matching defs:center
686 * hysteresis center and the margin. If 'in' is within 'margin' of center,
687 * return the center (and thus filter the motion). If 'in' is outside,
701 * first reachable coordinate is the point next to the center (center + 1).
702 * Otherwise, the center has a dead zone of size margin around it and the
706 * @param center Current center of the hysteresis
709 * @return The new center of the hysteresis
713 const struct device_coords *center,
716 int dx = in->x - center->x;
717 int dy = in->y - center->y;
742 return *center;