Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/idlelib/
Dsidebar.py215 last_y = last_yview = None
233 nonlocal last_y
236 last_y = None
256 nonlocal last_y
258 last_y = event.y
260 if not 0 <= last_y <= self.sidebar_text.winfo_height():
276 drag_update_selection_and_insert_mark(last_y)
/external/webp/include/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()
/external/webp/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()
/external/webp/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()
394 num_lines_out += ExportRGB(p, p->last_y + num_lines_out); in EmitRescaledRGB()
466 const int y_end = p->last_y + lines_left; in EmitRescaledAlphaRGB()
622 p->last_y += num_lines_out; in CustomPut()
Dwebpi_dec.h39 int last_y; // coordinate of the line that was last output member
Dvp8l_dec.c1729 params->last_y = dec->last_out_row_; in VP8LDecodeImage()
/external/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;
/external/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;
/external/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()
DSkAnalyticEdge.h87 bool update(SkFixed last_y, bool sortY = true);
/external/skqp/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);
/external/speex/libspeexdsp/
Dmdf.c154 spx_word16_t *last_y; member
450 st->last_y = (spx_word16_t*)speex_alloc(C*N*sizeof(spx_word16_t)); in speex_echo_state_init_mc()
556 st->last_y[i] = 0; in speex_echo_state_reset()
597 speex_free(st->last_y); in speex_echo_state_destroy()
1181 st->last_y[i] = st->last_y[st->frame_size+i]; in speex_echo_cancellation()
1186 st->last_y[st->frame_size+i] = in[i]-out[i]; in speex_echo_cancellation()
1206 st->y[i] = MULT16_16_Q15(st->window[i],st->last_y[i]); in speex_echo_get_residual()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConvolution.h634 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1;
635 const int num_y_input = last_y - first_y + GetKernelSize<StaticKernelSizeY>()(kernelSizeY);
636 const int num_y_output = last_y - first_y + 1;
702 const int last_y = (first_y + maxY < numY ? first_y + maxY : numY) - 1;
703 const int num_y_input = last_y - first_y + kernelSizeY;
727 const int num_y_output = last_y - first_y + 1;
/external/freetype/src/sfnt/
Dsfwoff2.c545 FT_Int last_y = 0; in store_points() local
561 FT_Int dy = point.y - last_y; in store_points()
606 last_y = point.y; in store_points()
627 last_y = 0; in store_points()
632 FT_Int dy = points[i].y - last_y; in store_points()
659 last_y += dy; in store_points()
/external/scapy/scapy/
Dpacket.py623 last_shift,last_y=0,0.0
645 dt,target,last_shift,last_y = make_dump(fdump, last_shift, last_y, col, bkcol)
667 last_y += layer_shift
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c168 uint8_t *last_y; in get_sby_perpixel_diff_variance() local
172 last_y = in get_sby_perpixel_diff_variance()
174 var = cpi->fn_ptr[bs].vf(ref->buf, ref->stride, last_y, last->y_stride, &sse); in get_sby_perpixel_diff_variance()
/external/libaom/libaom/av1/encoder/
Dencodeframe.c216 uint8_t *last_y; in get_sby_perpixel_diff_variance() local
221 last_y = in get_sby_perpixel_diff_variance()
223 var = cpi->fn_ptr[bs].vf(ref->buf, ref->stride, last_y, last->y_stride, &sse); in get_sby_perpixel_diff_variance()