| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | tile_cover_impl.cpp | 313 auto x_min = xps[0].xmin; in nextRow() local 320 tileXSpans.emplace(x_min, x_max); in nextRow() 321 x_min = xp.xmin; in nextRow() 325 x_max = std::max(x_min, xp.xmax); in nextRow() 327 tileXSpans.emplace(x_min, x_max); in nextRow()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/wagyu/0.4.3/include/mapbox/geometry/wagyu/ |
| H A D | ring_util.hpp | 171 T x_min = get_edge_min_x(*(bnd.current_edge), y); in hot_pixel_set_left_to_right() local 172 x_min = std::max(x_min, start_x); in hot_pixel_set_left_to_right() 176 if (itr->x < x_min) { in hot_pixel_set_left_to_right() 208 T x_min = get_edge_min_x(*(bnd.current_edge), y); in hot_pixel_set_right_to_left() local 209 x_min = std::max(x_min, end_x); in hot_pixel_set_right_to_left() 216 if (itr->x < x_min) { in hot_pixel_set_right_to_left()
|
| /OK3568_Linux_fs/kernel/drivers/input/mouse/ |
| H A D | synaptics.c | 409 info->x_min = (resp[0] << 5) | ((resp[1] & 0x0f) << 1); in synaptics_resolution() 413 info->x_min, info->y_min); in synaptics_resolution() 466 u32 x_min, x_max, y_min, y_max; member 545 info->x_min = min_max_pnpid_table[i].x_min; in synaptics_apply_quirks() 551 info->x_min, info->x_max, in synaptics_apply_quirks() 1236 int x_min = info->x_min ?: XMIN_NOMINAL; in set_abs_position_params() local 1243 input_set_abs_params(dev, x_code, x_min, x_max, fuzz, 0); in set_abs_position_params()
|
| H A D | elantech.c | 1169 unsigned int x_min = info->x_min, y_min = info->y_min, in elantech_set_input_params() local 1196 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0); in elantech_set_input_params() 1207 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0); in elantech_set_input_params() 1216 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0); in elantech_set_input_params() 1224 input_set_abs_params(dev, ABS_X, x_min, x_max, 0, 0); in elantech_set_input_params() 1236 input_set_abs_params(dev, ABS_MT_POSITION_X, x_min, x_max, 0, 0); in elantech_set_input_params() 1786 info->x_min = ETP_XMIN_V1; in elantech_query_info() 1796 info->x_min = ETP_XMIN_V2; in elantech_query_info() 1914 info->x_min); in elantech_create_smbus()
|
| H A D | elantech.h | 148 unsigned int x_min; member
|
| H A D | synaptics.h | 177 u32 x_min, y_min; /* Min coordinates (from FW) */ member
|
| /OK3568_Linux_fs/kernel/include/linux/spi/ |
| H A D | ad7877.h | 15 u16 x_min, x_max; member
|
| H A D | ads7846.h | 40 u16 x_min, x_max; member
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | l3g4200d.h | 111 int x_min; member
|
| H A D | sensor-dev.h | 216 int x_min; member
|
| /OK3568_Linux_fs/kernel/drivers/hid/ |
| H A D | hid-alps.c | 109 u32 x_min; member 561 pri_data->x_min = 1; in u1_init() 623 pri_data->x_min = T4_COUNT_PER_ELECTRODE; in T4_init() 706 data->x_min, data->x_max, 0, 0); in alps_input_configured()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/focaltech_touch_ft5436/ |
| H A D | focaltech_core.h | 130 u32 x_min; member
|
| H A D | focaltech_core.c | 769 input_set_abs_params(input_dev, ABS_MT_POSITION_X, pdata->x_min, pdata->x_max, 0, 0); in fts_input_init() 1154 pdata->x_min = FTS_X_MIN_DISPLAY_DEFAULT; in fts_get_dt_coords() 1160 pdata->x_min = coords[0]; in fts_get_dt_coords() 1166 FTS_INFO("display x(%d %d) y(%d %d)", pdata->x_min, pdata->x_max, in fts_get_dt_coords()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/focaltech_touch/ |
| H A D | focaltech_core.h | 122 u32 x_min; member
|
| H A D | focaltech_core.c | 1123 pdata->x_min = FTS_X_MIN_DISPLAY_DEFAULT; in fts_get_dt_coords() 1162 printk("display x(%d %d) y(%d %d)", pdata->x_min, pdata->x_max, pdata->y_min, pdata->y_max); in fts_get_dt_coords()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/ |
| H A D | gsl_point_id.c | 582 int x_min,x_max,y_min,y_max; in PointRepeat() local 608 x_min = point_now[i].other.x - pn; in PointRepeat() 620 if(x>x_min && x<x_max && y>y_min && y<y_max) in PointRepeat() 2789 unsigned int x_max=0,x_min=0xffff,y_max=0,y_min=0xffff; in GestureStretch() local 2799 if (gesture_buf[i].other.x < x_min) in GestureStretch() 2800 x_min = gesture_buf[i].other.x; in GestureStretch() 2806 if(x_max < x_min+64*2 || y_max < y_min+64*3) in GestureStretch() 2810 gesture_buf[i].other.x = (gesture_buf[i].other.x - x_min) * in GestureStretch() 2811 GESTURE_SIZE_REFE / (x_max - x_min); in GestureStretch()
|
| H A D | gslx680_firefly.c | 76 u16 x_min; member 615 …if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) && (gsl_key_data[i].y_min < y) && (…
|
| H A D | gsl3673.c | 140 u16 x_min; member 713 if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) in report_key()
|
| H A D | gslx680a.c | 189 u16 x_min; member 739 …if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) && (gsl_key_data[i].y_min < y) && (… in report_key()
|
| H A D | ads7846.c | 1236 of_property_read_u16(node, "ti,x-min", &pdata->x_min); in ads7846_probe_dt() 1377 pdata->x_min ? : 0, in ads7846_probe()
|
| H A D | gsl3673_800x1280.c | 143 u16 x_min; member 735 if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) in report_key()
|
| /OK3568_Linux_fs/kernel/drivers/input/keyboard/ |
| H A D | applespi.c | 355 int x_min; member 1236 applespi->tp_info.x_min = x; in applespi_register_touchpad_device() 1250 applespi->tp_info.x_min, in applespi_register_touchpad_device() 1252 applespi->tp_info.x_max - applespi->tp_info.x_min, in applespi_register_touchpad_device() 1298 applespi->tp_info.x_min, applespi->tp_info.x_max, in applespi_register_touchpad_device()
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-omap1/ |
| H A D | board-htcherald.c | 425 .x_min = 528,
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/gsl3676/ |
| H A D | gsl3676.c | 143 u16 x_min; member 707 if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) in report_key()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/gslx680_d708/ |
| H A D | rockchip_gslX680.c | 91 u16 x_min; member 679 …if ((gsl_key_data[i].x_min < x) && (x < gsl_key_data[i].x_max) && (gsl_key_data[i].y_min < y) && (… in report_key()
|