/third_party/python/Lib/idlelib/ |
H A D | sidebar.py | 179 # last_y is initially set upon <B1-Leave> and is continuously updated 183 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 [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_cropdetect.c | 160 int outliers, last_y; in filter_frame() local 178 for (last_y = y = FROM; NOEND; y = y INC) {\ in filter_frame() 181 DST = last_y;\ in filter_frame() 185 last_y = y INC;\ in filter_frame()
|
H A D | vf_find_rect.c | 39 int last_x, last_y; member 189 FFMAX(foc->ymin, foc->last_y - 8), in filter_frame() 190 FFMIN(foc->ymax, foc->last_y + 8), in filter_frame() 213 foc->last_y = best_y; in filter_frame()
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
H A D | decode.h | 344 // *last_y is the index of last decoded row in raster scan order. Some pointers 345 // (*last_y, *width etc.) can be NULL if corresponding information is not 349 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() 365 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV() 362 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) WebPIDecGetYUV() argument
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | time-smoother.c | 76 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/skia/third_party/externals/libwebp/src/dec/ |
H A D | idec_dec.c | 846 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()
|
H A D | io_dec.c | 274 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()
|
H A D | webpi_dec.h | 39 int last_y; // coordinate of the line that was last output member
|
H A D | vp8l_dec.c | 1737 params->last_y = dec->last_out_row_; in VP8LDecodeImage()
|
/third_party/libwebsockets/test-apps/ |
H A D | test.js | 366 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/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
H A D | test.js | 366 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/pulseaudio/speex/tmv/ |
H A D | mdf_tm.h | 289 register float * restrict last_y; in speex_echo_get_residual() local 295 last_y = st->last_y; in speex_echo_get_residual() 305 { y[i] = window[i] * last_y[i]; in speex_echo_get_residual() 1119 memcpy(st->last_y, st->x, N * sizeof(spx_word16_t)); in speex_echo_cancellation() 1183 { register spx_word16_t * restrict last_yy = st->last_y + framesize; in speex_echo_cancellation() 1185 memcpy(st->last_y, last_yy, framesize * sizeof(spx_word16_t)); in speex_echo_cancellation()
|
/third_party/skia/src/core/ |
H A D | SkScan_Path.cpp | 193 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()
|
H A D | SkAnalyticEdge.h | 87 bool update(SkFixed last_y, bool sortY = true);
|
H A D | SkAnalyticEdge.cpp | 327 bool SkAnalyticEdge::update(SkFixed last_y, bool sortY) { 328 SkASSERT(last_y >= fLowerY); // we shouldn't update edge if last_y < fLowerY
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | mdf.c | 148 spx_word16_t *last_y; member 444 st->last_y = (spx_word16_t*)speex_alloc(C*N*sizeof(spx_word16_t)); in speex_echo_state_init_mc() 550 st->last_y[i] = 0; in speex_echo_state_reset() 591 speex_free(st->last_y); in speex_echo_state_destroy() 1175 st->last_y[i] = st->last_y[st->frame_size+i]; in speex_echo_cancellation() 1180 st->last_y[st->frame_size+i] = in[i]-out[i]; in speex_echo_cancellation() 1184 st->last_y[i] = st->x[i];*/ in speex_echo_cancellation() 1200 st->y[i] = MULT16_16_Q15(st->window[i],st->last_y[i]); in speex_echo_get_residual()
|
/third_party/libinput/test/ |
H A D | test-tablet.c | 564 double x, y, last_x, last_y; in START_TEST() local 574 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST() 593 ck_assert_double_lt(last_y, y); in START_TEST() 611 double x, y, last_x, last_y; in START_TEST() local 624 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST() 642 ck_assert_double_ne(last_y, y); in START_TEST() 661 double x, y, last_x, last_y; in START_TEST() local 703 last_y = libinput_event_tablet_tool_get_y(tablet_event); in START_TEST() 731 ck_assert_double_eq(last_y, y); in START_TEST() 737 ck_assert_double_ne(last_y, in START_TEST() 1175 double last_x, last_y, START_TEST() local 1824 double last_x = -1.0, last_y = -1.0; START_TEST() local 2150 double last_x, last_y; START_TEST() local 5378 double last_x = x, last_y = y; verify_left_handed_tablet_motion() local [all...] |
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | sfwoff2.c | 534 FT_Int last_y = 0; in store_points() local 550 FT_Int dy = point.y - last_y; in store_points() 595 last_y = point.y; in store_points() 616 last_y = 0; in store_points() 621 FT_Int dy = points[i].y - last_y; in store_points() 648 last_y += dy; in store_points()
|