/external/python/cpython3/Lib/idlelib/ |
D | sidebar.py | 215 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/ |
D | decode.h | 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() argument 365 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV()
|
/external/webp/src/webp/ |
D | decode.h | 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() argument 365 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height, in WebPIDecGetYUV()
|
/external/webp/src/dec/ |
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()
|
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() 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()
|
D | webpi_dec.h | 39 int last_y; // coordinate of the line that was last output member
|
D | vp8l_dec.c | 1729 params->last_y = dec->last_out_row_; in VP8LDecodeImage()
|
/external/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/ |
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;
|
/external/libwebsockets/test-apps/ |
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;
|
/external/skqp/src/core/ |
D | SkScan_Path.cpp | 194 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()
|
D | SkAnalyticEdge.cpp | 327 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()
|
D | SkAnalyticEdge.h | 87 bool update(SkFixed last_y, bool sortY = true);
|
/external/skia/src/core/ |
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()
|
D | SkAnalyticEdge.cpp | 327 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()
|
D | SkAnalyticEdge.h | 87 bool update(SkFixed last_y, bool sortY = true);
|
/external/speex/libspeexdsp/ |
D | mdf.c | 154 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/ |
D | TensorConvolution.h | 634 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/ |
D | sfwoff2.c | 545 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/ |
D | packet.py | 623 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/ |
D | vp9_encodeframe.c | 168 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/ |
D | encodeframe.c | 216 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()
|