Home
last modified time | relevance | path

Searched refs:last_y (Results 1 – 25 of 35) sorted by relevance

12

/third_party/python/Lib/idlelib/
Dsidebar.py183 last_y = None
202 nonlocal last_y
204 last_y = event.y
213 nonlocal last_y
215 last_y = None
220 nonlocal last_y
221 if last_y is None: # i.e. if not currently dragging
223 last_y = event.y
231 y = last_y
251 nonlocal last_y
[all …]
/third_party/skia/third_party/externals/libwebp/src/webp/
Ddecode.h349 const WebPIDecoder* idec, int* last_y,
356 const WebPIDecoder* idec, int* last_y,
363 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument
365 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV()
/third_party/flutter/skia/third_party/externals/sdl/src/events/
DSDL_mouse_c.h38 int last_x, last_y; member
82 int last_x, last_y; /* the last reported x and y coordinates */ member
DSDL_mouse.c215 mouse->last_y = center_y;
225 y = (mouse->last_y + yrel);
228 yrel = y - mouse->last_y;
298 mouse->last_y = mouse->y;
302 mouse->last_y = y;
367 SDL_abs(mouse->y - clickstate->last_y) > SDL_double_click_radius) {
372 clickstate->last_y = mouse->y;
/third_party/flutter/skia/third_party/externals/libwebp/src/webp/
Ddecode.h352 const WebPIDecoder* idec, int* last_y,
359 const WebPIDecoder* idec, int* last_y,
366 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, in WebPIDecGetYUV() argument
368 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV()
/third_party/pulseaudio/src/pulsecore/
Dtime-smoother.c76 pa_usec_t last_y, last_x; member
412 if (y < s->last_y) in pa_smoother_get()
413 y = s->last_y; in pa_smoother_get()
415 s->last_y = y; in pa_smoother_get()
514 s->last_y = s->last_x = 0; in pa_smoother_reset()
/third_party/ffmpeg/libavfilter/
Dvf_cropdetect.c168 int outliers, last_y; in filter_frame() local
186 for (last_y = y = FROM; NOEND; y = y INC) {\ in filter_frame()
189 DST = last_y;\ in filter_frame()
193 last_y = y INC;\ in filter_frame()
Dvf_find_rect.c39 int last_x, last_y; member
197 FFMAX(foc->ymin, foc->last_y - 8), in filter_frame()
198 FFMIN(foc->ymax, foc->last_y + 8), in filter_frame()
214 foc->last_y = best_y; in filter_frame()
/third_party/mindspore/mindspore/lite/src/runtime/kernel/opencl/cl/
Ddepthwise_conv2d.cl100 bool last_y =
171 if (!last_y) {
177 if (!last_y && !last_x) {
201 bool last_y =
240 if (!last_y) {
243 if (!last_y && !last_x) {
264 bool last_y =
306 if (!last_y) {
329 bool last_y =
353 if (!last_y) {
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Didec_dec.c841 if (height != NULL) *height = idec->params_.last_y; in WebPIDecodedArea()
849 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, in WebPIDecGetRGB() argument
857 if (last_y != NULL) *last_y = idec->params_.last_y; in WebPIDecGetRGB()
865 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, in WebPIDecGetYUVA() argument
875 if (last_y != NULL) *last_y = idec->params_.last_y; in WebPIDecGetYUVA()
Dio_dec.c279 uint8_t* const dst_a = buf->a + p->last_y * buf->a_stride; in EmitRescaledAlphaYUV()
281 uint8_t* const dst_y = buf->y + p->last_y * buf->y_stride; in EmitRescaledAlphaYUV()
290 assert(p->last_y + expected_num_lines_out <= io->scaled_height); in EmitRescaledAlphaYUV()
399 num_lines_out += ExportRGB(p, p->last_y + num_lines_out); in EmitRescaledRGB()
471 const int y_end = p->last_y + lines_left; in EmitRescaledAlphaRGB()
627 p->last_y += num_lines_out; in CustomPut()
Dwebpi_dec.h39 int last_y; // coordinate of the line that was last output member
/third_party/skia/third_party/externals/libwebp/src/dec/
Didec_dec.c846 if (height != NULL) *height = idec->params_.last_y; in WebPIDecodedArea()
854 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, in WebPIDecGetRGB() argument
862 if (last_y != NULL) *last_y = idec->params_.last_y; in WebPIDecGetRGB()
870 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, in WebPIDecGetYUVA() argument
880 if (last_y != NULL) *last_y = idec->params_.last_y; in WebPIDecGetYUVA()
Dio_dec.c274 uint8_t* const dst_a = buf->a + (size_t)p->last_y * buf->a_stride; in EmitRescaledAlphaYUV()
276 uint8_t* const dst_y = buf->y + (size_t)p->last_y * buf->y_stride; in EmitRescaledAlphaYUV()
285 assert(p->last_y + expected_num_lines_out <= io->scaled_height); in EmitRescaledAlphaYUV()
405 num_lines_out += ExportRGB(p, p->last_y + num_lines_out); in EmitRescaledRGB()
477 const int y_end = p->last_y + lines_left; in EmitRescaledAlphaRGB()
640 p->last_y += num_lines_out; in CustomPut()
Dwebpi_dec.h39 int last_y; // coordinate of the line that was last output member
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
Dtest.js366 var last_x = 0, last_y = 0;
388 last_y = y;
391 pending = pending + "d " + color + " " + last_x + " " + last_y +
402 last_y = y;
/third_party/libwebsockets/test-apps/
Dtest.js366 var last_x = 0, last_y = 0;
388 last_y = y;
391 pending = pending + "d " + color + " " + last_x + " " + last_y +
402 last_y = y;
/third_party/weston/clients/
Dgears.c61 int last_x, last_y; member
265 offset_y = y - gears->last_y; in motion_handler()
267 gears->last_y = y; in motion_handler()
294 &gears->last_x, &gears->last_y); in button_handler()
442 gears->last_y = 0; in gears_create()
/third_party/flutter/skia/src/core/
DSkScan_Path.cpp194 static bool update_edge(SkEdge* edge, int last_y) { in update_edge() argument
195 SkASSERT(edge->fLastY >= last_y); in update_edge()
196 if (last_y == edge->fLastY) { in update_edge()
199 SkASSERT(edge->fFirstY == last_y + 1); in update_edge()
204 SkASSERT(edge->fFirstY == last_y + 1); in update_edge()
DSkAnalyticEdge.cpp327 bool SkAnalyticEdge::update(SkFixed last_y, bool sortY) { in update() argument
328 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY in update()
DSkAnalyticEdge.h87 bool update(SkFixed last_y, bool sortY = true);
/third_party/skia/src/core/
DSkScan_Path.cpp193 static bool update_edge(SkEdge* edge, int last_y) { in update_edge() argument
194 SkASSERT(edge->fLastY >= last_y); in update_edge()
195 if (last_y == edge->fLastY) { in update_edge()
198 SkASSERT(edge->fFirstY == last_y + 1); in update_edge()
203 SkASSERT(edge->fFirstY == last_y + 1); in update_edge()
DSkAnalyticEdge.cpp327 bool SkAnalyticEdge::update(SkFixed last_y, bool sortY) { in update() argument
328 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY in update()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_events.c134 mouse->y = mouse->last_y = y; in MotionAllMice()
328 static int last_x, last_y; in ProcessInputEvent() local
336 last_y = ievt->axisabs; in ProcessInputEvent()
353 last_y - (y + in ProcessInputEvent()
357 last_y, 0); in ProcessInputEvent()
/third_party/libinput/test/
Dtest-tablet.c529 double x, y, last_x, last_y; in START_TEST() local
539 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST()
562 ck_assert_double_lt(last_y, y); in START_TEST()
580 double x, y, last_x, last_y; in START_TEST() local
597 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST()
618 ck_assert_double_ne(last_y, y); in START_TEST()
637 double x, y, last_x, last_y; in START_TEST() local
660 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST()
690 ck_assert_double_ne(last_y, y); in START_TEST()
1146 double last_x, last_y, in START_TEST() local
[all …]

12