Searched defs:last_y (Results 1 - 9 of 9) sorted by relevance

/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_drop_info.h28 // is_control_down, last_y and updates the autoscroll timer as necessary.
42 int last_y() { return last_y_; } function in class:BookmarkDropInfo
/external/chromium/chrome/browser/ui/gtk/
H A Dmenu_bar_helper.cc124 gint last_y = y; local
126 last_button, button, last_x, last_y, &x, &y)) {
/external/webp/src/dec/
H A Dwebpi.h48 int last_y; // coordinate of the line that was last output member in struct:WebPDecParams
H A Didec.c598 if (height) *height = idec->params_.last_y;
606 uint8_t* WebPIDecGetRGB(const WebPIDecoder* const idec, int* last_y, argument
614 if (last_y) *last_y = idec->params_.last_y;
622 uint8_t* WebPIDecGetYUV(const WebPIDecoder* const idec, int* last_y, argument
631 if (last_y) *last_y = idec->params_.last_y;
/external/chromium/chrome/browser/notifications/
H A Ddesktop_notifications_unittest.cc391 int last_y = -1; local
400 if (last_y > 0) {
402 EXPECT_GT(current_y, last_y);
404 EXPECT_LT(current_y, last_y);
409 last_y = current_y;
417 last_y = -1;
426 if (last_y > 0) {
428 EXPECT_LT(current_y, last_y);
430 EXPECT_GT(current_y, last_y);
435 last_y
[all...]
/external/qemu/distrib/sdl-1.2.12/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/qemu/distrib/sdl-1.2.12/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/qemu/
H A Dvnc.h128 int last_y; member in struct:VncState
/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]);

Completed in 210 milliseconds