/third_party/flutter/skia/third_party/externals/sdl/src/events/ |
D | SDL_mouse_c.h | 38 int last_x, last_y; member 82 int last_x, last_y; /* the last reported x and y coordinates */ member
|
D | SDL_mouse.c | 214 mouse->last_x = center_x; 224 x = (mouse->last_x + xrel); 227 xrel = x - mouse->last_x; 297 mouse->last_x = mouse->x; 301 mouse->last_x = x; 366 SDL_abs(mouse->x - clickstate->last_x) > SDL_double_click_radius || 371 clickstate->last_x = mouse->x;
|
/third_party/pulseaudio/src/pulsecore/ |
D | time-smoother.c | 76 pa_usec_t last_y, last_x; member 402 if (x <= s->last_x) in pa_smoother_get() 403 x = s->last_x; in pa_smoother_get() 410 s->last_x = x; in pa_smoother_get() 514 s->last_y = s->last_x = 0; in pa_smoother_reset()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/ |
D | depthwise_conv2d.cl | 99 bool last_x = (get_global_id(1) == (dst_size.x >> 1)) && ((dst_size.x & 0x1) == 1); 165 if (!last_x) { 177 if (!last_y && !last_x) { 200 bool last_x = (get_global_id(1) == (dst_size.x >> 1)) && ((dst_size.x & 0x1) == 1); 237 if (!last_x) { 243 if (!last_y && !last_x) { 263 bool last_x = (get_global_id(1) == (dst_size.x >> 1)) && ((dst_size.x & 0x1) == 1); 328 bool last_x = (get_global_id(1) == (dst_size.x >> 1)) && ((dst_size.x & 0x1) == 1); 372 bool last_x = (get_global_id(1) == (dst_size.x >> 1)) && ((dst_size.x & 0x1) == 1); 396 if (!last_x) { [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_find_rect.c | 39 int last_x, last_y; member 195 FFMAX(foc->xmin, foc->last_x - 8), in filter_frame() 196 FFMIN(foc->xmax, foc->last_x + 8), in filter_frame() 213 foc->last_x = best_x; in filter_frame()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
D | test.js | 366 var last_x = 0, last_y = 0; 387 last_x = x; 391 pending = pending + "d " + color + " " + last_x + " " + last_y + 401 last_x = x;
|
/third_party/libwebsockets/test-apps/ |
D | test.js | 366 var last_x = 0, last_y = 0; 387 last_x = x; 391 pending = pending + "d " + color + " " + last_x + " " + last_y + 401 last_x = x;
|
/third_party/weston/clients/ |
D | gears.c | 61 int last_x, last_y; member 264 offset_x = x - gears->last_x; in motion_handler() 266 gears->last_x = x; in motion_handler() 294 &gears->last_x, &gears->last_y); in button_handler() 441 gears->last_x = 0; in gears_create()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/ |
D | SDL_DirectFB_events.c | 133 mouse->x = mouse->last_x = x; in MotionAllMice() 328 static int last_x, last_y; in ProcessInputEvent() local 334 last_x = ievt->axisabs; in ProcessInputEvent() 351 last_x - (x + in ProcessInputEvent() 356 SDL_SendMouseMotion_ex(window, ievt->device_id, 0, last_x, in ProcessInputEvent()
|
/third_party/libinput/test/ |
D | test-tablet.c | 529 double x, y, last_x, last_y; in START_TEST() local 538 last_x = libinput_event_tablet_tool_get_x(tablet_event); in START_TEST() 561 ck_assert_double_lt(last_x, x); in START_TEST() 580 double x, y, last_x, last_y; in START_TEST() local 596 last_x = libinput_event_tablet_tool_get_x(tablet_event); in START_TEST() 617 ck_assert_double_ne(last_x, x); in START_TEST() 637 double x, y, last_x, last_y; in START_TEST() local 659 last_x = libinput_event_tablet_tool_get_x(tablet_event); in START_TEST() 689 ck_assert_double_ne(last_x, x); in START_TEST() 1146 double last_x, last_y, in START_TEST() local [all …]
|
/third_party/freetype/src/sfnt/ |
D | sfwoff2.c | 544 FT_Int last_x = 0; in store_points() local 560 FT_Int dx = point.x - last_x; in store_points() 605 last_x = point.x; in store_points() 626 last_x = 0; in store_points() 631 FT_Int dx = points[i].x - last_x; in store_points() 646 last_x += dx; in store_points()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | sfwoff2.c | 533 FT_Int last_x = 0; in store_points() local 549 FT_Int dx = point.x - last_x; in store_points() 594 last_x = point.x; in store_points() 615 last_x = 0; in store_points() 620 FT_Int dx = points[i].x - last_x; in store_points() 635 last_x += dx; in store_points()
|
/third_party/boost/libs/math/tools/ |
D | lanczos_generator.cpp | 4562 static T last_x(-10000); in get_test_data_near_x() local 4563 if(last_x != x) in get_test_data_near_x() 4567 last_x = x; in get_test_data_near_x()
|
/third_party/boost/boost/intrusive/ |
D | slist.hpp | 1270 const_iterator last_x(x.previous(x.end())); //constant time if cache_last is active in splice_after() local 1272 node_ptr last_x_n(last_x.pointed_node()); in splice_after() 1282 if(l) *l = last_x; in splice_after()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/ |
D | SDL_x11events.c | 655 mouse->last_x = xevent.xcrossing.x; in X11_DispatchEvent()
|