Searched refs:last_y (Results 1 - 25 of 26) sorted by relevance

12

/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosevents.c251 static Sint16 last_x = -1, last_y = -1; variable
272 if (new_x != last_x || new_y != last_y || last_buttons != regs.r[2])
303 if (last_x != new_x || last_y != new_y)
314 last_y = topLeftY - (centre_y << this->hidden->yeig);
326 block[3] = last_y & 0xFF;
327 block[4] = (last_y >> 8) & 0xFF;
337 last_y = new_y;
/external/chromium_org/third_party/libwebp/dec/
H A Dwebpi.h36 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
H A Didec.c788 if (height != NULL) *height = idec->params_.last_y;
796 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, argument
804 if (last_y != NULL) *last_y = idec->params_.last_y;
812 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, argument
822 if (last_y != NULL) *last_y = idec->params_.last_y;
H A Dio.c302 uint8_t* dst_y = buf->y + p->last_y * buf->y_stride;
303 const uint8_t* src_a = buf->a + p->last_y * buf->a_stride;
370 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride;
376 assert(p->last_y + y_pos + num_lines_out < p->output->height);
415 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
427 assert(p->last_y + y_pos + num_lines_out < p->output->height);
446 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
460 assert(p->last_y + y_pos + num_lines_out < p->output->height);
626 p->last_y += num_lines_out;
H A Dvp8l.c1387 params->last_y = dec->last_out_row_;
/external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
H A DSDL_fbelo.c84 static int last_y = 0; local
95 if((SDL_abs(x - last_x) > ELO_SNAP_SIZE) || (SDL_abs(y - last_y) > ELO_SNAP_SIZE)) {
101 *dy = last_y;
105 last_y = *dy;
/external/webp/src/dec/
H A Dwebpi.h36 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
H A Didec.c788 if (height != NULL) *height = idec->params_.last_y;
796 uint8_t* WebPIDecGetRGB(const WebPIDecoder* idec, int* last_y, argument
804 if (last_y != NULL) *last_y = idec->params_.last_y;
812 uint8_t* WebPIDecGetYUVA(const WebPIDecoder* idec, int* last_y, argument
822 if (last_y != NULL) *last_y = idec->params_.last_y;
H A Dio.c302 uint8_t* dst_y = buf->y + p->last_y * buf->y_stride;
303 const uint8_t* src_a = buf->a + p->last_y * buf->a_stride;
370 uint8_t* dst = buf->rgba + (p->last_y + y_pos) * buf->stride;
376 assert(p->last_y + y_pos + num_lines_out < p->output->height);
415 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
427 assert(p->last_y + y_pos + num_lines_out < p->output->height);
446 uint8_t* const base_rgba = buf->rgba + (p->last_y + y_pos) * buf->stride;
460 assert(p->last_y + y_pos + num_lines_out < p->output->height);
626 p->last_y += num_lines_out;
H A Dvp8l.c1387 params->last_y = dec->last_out_row_;
/external/chromium_org/third_party/brotli/src/woff2/
H A Dglyph.cc251 int last_y = 0; local
260 int dy = point.y - last_y;
294 last_y = point.y;
313 last_y = 0;
317 int dy = point.y - last_y;
333 last_y += dy;
H A Dwoff2_dec.cc209 int last_y = 0; local
217 int dy = point.y - last_y;
252 last_y = point.y;
272 last_y = 0;
284 int dy = points[i].y - last_y;
292 last_y += dy;
/external/chromium_org/third_party/libwebp/webp/
H A Ddecode.h335 // *last_y is the index of last decoded row in raster scan order. Some pointers
336 // (*last_y, *width etc.) can be NULL if corresponding information is not
339 const WebPIDecoder* idec, int* last_y,
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
355 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
352 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
/external/webp/include/webp/
H A Ddecode.h335 // *last_y is the index of last decoded row in raster scan order. Some pointers
336 // (*last_y, *width etc.) can be NULL if corresponding information is not
339 const WebPIDecoder* idec, int* last_y,
346 const WebPIDecoder* idec, int* last_y,
353 const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v,
355 return WebPIDecGetYUVA(idec, last_y, u, v, NULL, width, height,
352 WebPIDecGetYUV( const WebPIDecoder* idec, int* last_y, uint8_t** u, uint8_t** v, int* width, int* height, int* stride, int* uv_stride) argument
/external/qemu/distrib/sdl-1.2.15/src/video/directfb/
H A DSDL_DirectFB_events.c84 static int last_x, last_y; local
88 last_y = evt.axisabs;
89 posted += SDL_PrivateMouseMotion(0, 0, last_x, last_y);
/external/chromium_org/third_party/skia/src/core/
H A DSkScan_Path.cpp200 static bool update_edge(SkEdge* edge, int last_y) { argument
201 SkASSERT(edge->fLastY >= last_y);
202 if (last_y == edge->fLastY) {
205 SkASSERT(edge->fFirstY == last_y + 1);
210 SkASSERT(edge->fFirstY == last_y + 1);
/external/skia/src/core/
H A DSkScan_Path.cpp200 static bool update_edge(SkEdge* edge, int last_y) { argument
201 SkASSERT(edge->fLastY >= last_y);
202 if (last_y == edge->fLastY) {
205 SkASSERT(edge->fFirstY == last_y + 1);
210 SkASSERT(edge->fFirstY == last_y + 1);
/external/chromium_org/third_party/ots/src/
H A Dwoff2.cc313 int last_y = 0; local
321 int dy = point.y - last_y;
356 last_y = point.y;
376 last_y = 0;
388 int dy = points.at(i).y - last_y;
396 last_y += dy;
/external/chromium_org/skia/ext/
H A Dimage_operations_unittest.cc407 int last_y = std::min(src_h - 1, y * 2 + 1); local
411 first_y, last_y);
421 PrintPixel(src, first_x, last_x, first_y, last_y);
/external/speex/libspeex/
H A Dmdf.c154 spx_word16_t *last_y; member in struct:SpeexEchoState_
450 st->last_y = (spx_word16_t*)speex_alloc(C*N*sizeof(spx_word16_t));
556 st->last_y[i] = 0;
597 speex_free(st->last_y);
1181 st->last_y[i] = st->last_y[st->frame_size+i];
1186 st->last_y[st->frame_size+i] = in[i]-out[i];
1190 st->last_y[i] = st->x[i];*/
1206 st->y[i] = MULT16_16_Q15(st->window[i],st->last_y[i]);
/external/qemu/ui/
H A Dvnc.h128 int last_y; member in struct:VncState
H A Dvnc-android.c1285 y - vs->last_y,
1288 vs->last_y = y;
2079 vs->last_y = -1;
H A Dvnc.c1278 y - vs->last_y,
1281 vs->last_y = y;
2072 vs->last_y = -1;
/external/chromium_org/ash/wm/workspace/
H A Dworkspace_window_resizer.cc501 int last_y = details().initial_bounds_in_parent.bottom(); local
504 bounds.set_y(last_y);
507 last_y = attached_windows_[i]->bounds().bottom();
/external/fio/
H A Dgraph.c952 int last_y = g->yoffset + g->ydim; local
954 return (x >= first_x && x <= last_x) && (y >= first_y && y <= last_y);

Completed in 959 milliseconds

12