Searched defs:cur_x (Results 1 - 12 of 12) sorted by relevance

/external/toybox/kconfig/lxdialog/
H A Dmenubox.c114 int cur_y, cur_x; local
116 getyx(win, cur_y, cur_x);
148 wmove(win, cur_y, cur_x);
H A Dtextbox.c39 int cur_y, int cur_x)
43 wmove(dialog, cur_y, cur_x); /* Restore cursor position */
54 int i, x, y, cur_x, cur_y, key = 0; local
119 getyx(dialog, cur_y, cur_x); /* Save cursor position */
123 refresh_text_box(dialog, box, boxh, boxw, cur_y, cur_x);
141 cur_y, cur_x);
152 cur_y, cur_x);
187 wmove(dialog, cur_y, cur_x); /* Restore cursor position */
198 cur_y, cur_x);
211 wmove(dialog, cur_y, cur_x); /* Restor
38 refresh_text_box(WINDOW *dialog, WINDOW *box, int boxh, int boxw, int cur_y, int cur_x) argument
[all...]
H A Dutil.c316 int newl, cur_x, cur_y; local
336 cur_x = x;
348 room = width - cur_x;
356 cur_x = x;
358 wmove(win, cur_y, cur_x);
360 getyx(win, cur_y, cur_x);
361 cur_x++;
363 cur_x++; /* double space */
/external/skia/gm/
H A Dblurrect.cpp184 int cur_x = 0; local
212 if (cur_x + bm.width() >= fGMWidth - fMargin) {
213 cur_x = 0;
219 canvas->translate((SkScalar)cur_x, (SkScalar)cur_y);
224 cur_x += bm.width() + fPadding;
/external/skqp/gm/
H A Dblurrect.cpp184 int cur_x = 0; local
212 if (cur_x + bm.width() >= fGMWidth - fMargin) {
213 cur_x = 0;
219 canvas->translate((SkScalar)cur_x, (SkScalar)cur_y);
224 cur_x += bm.width() + fPadding;
/external/libdrm/tests/exynos/
H A Dexynos_fimg2d_test.c324 int cur_x, cur_y; local
383 cur_x = (screen_width - img_w) / 2;
392 g2d_copy(ctx, &tmp_img, &img, 0, 0, cur_x, cur_y, img_w, img_h);
410 if (cur_x + s->x < 0 || cur_y + s->y < 0 ||
411 cur_x + img_w + s->x >= screen_width ||
418 ret = g2d_move(ctx, &img, cur_x, cur_y, cur_x + s->x, cur_y + s->y,
426 cur_x += s->x;
/external/vboot_reference/firmware/lib/
H A Dvboot_display.c104 uint32_t cur_x = x, cur_y = y; local
118 cur_x = x;
127 cur_x -= image_info->width;
129 if (VBERROR_SUCCESS != VbExDisplayImage(cur_x, cur_y, buffer,
136 cur_x += image_info->width;
/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_image.c850 int cur_x, cur_y, max_x, max_y; local
855 cur_x = 0;
864 layout->lods[lv].x = cur_x;
876 cur_x += lod_w;
885 cur_x += lod_w;
892 cur_x = align(cur_x, 64);
/external/freetype/src/pshinter/
H A Dpshalgo.h171 FT_Pos cur_x; member in struct:PSH_PointRec_
/external/libhevc/decoder/
H A Dihevcd_iquant_itrans_recon_ctb.c358 WORD32 cur_x, cur_y; local
363 cur_x = ps_tu->b4_pos_x;
367 >> (31 - (1 + cur_x - 1))) & 1;
368 u1_left_avail = (pu4_intra_nbr_avail[1 + cur_y] >> (31 - (1 + cur_x - 1)))
370 u1_top_avail = (pu4_intra_nbr_avail[1 + cur_y - 1] >> (31 - (1 + cur_x)))
373 >> (31 - (1 + cur_x + trans_size / MIN_TU_SIZE))) & 1;
375 >> (31 - (1 + cur_x - 1))) & 1;
377 x_cur = ps_proc->i4_ctb_x * ctb_size + cur_x * MIN_TU_SIZE;
/external/opencv/cv/src/
H A Dcvemd.cpp754 CvNode2D head, *cur_x, *next_x, *leave_x = 0; local
802 cur_x = &head;
803 while( (next_x = cur_x->next[0]) != leave_x )
805 cur_x = next_x;
806 assert( cur_x );
808 cur_x->next[0] = next_x->next[0];
812 cur_x = &head;
813 while( (next_x = cur_x->next[1]) != leave_x )
815 cur_x = next_x;
816 assert( cur_x );
[all...]
/external/deqp/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderRendering.cpp3498 int cur_x = start_x + n_pixel * dx; local
3502 const unsigned char* read_data = data + cur_y * row_width + cur_x * 4 /* components */;
3516 m_testCtx.getLog() << tcu::TestLog::Message << "Rendered data at (" << cur_x << ", " << cur_y
3622 int cur_x = start_x + n_point * dx; local
3633 const unsigned char* read_data = data + cur_y * row_width + cur_x * 4 /* components */;
3650 m_testCtx.getLog() << tcu::TestLog::Message << "Rendered data at (" << cur_x << ", " << cur_y

Completed in 614 milliseconds