Home
last modified time | relevance | path

Searched refs:size_x (Results 1 – 9 of 9) sorted by relevance

/oneTBB/examples/task_arena/fractal/
H A Dfractal.cpp37 fx0 = (double)x0 - (double)size_x / 2.0; in calc_one_pixel()
74 drawing_area area(off_x, off_y, size_x, size_y, dm); in clear()
79 for (int x = 0; x < size_x; ++x) { in clear()
90 drawing_area area0(off_x - 1, off_y - 1, size_x + 2, 1, dm); in draw_border()
91 for (int i = -1; i < size_x + 1; ++i) in draw_border()
94 drawing_area area1(off_x - 1, off_y + size_y, size_x + 2, 1, dm); in draw_border()
95 for (int i = -1; i < size_x + 1; ++i) in draw_border()
102 drawing_area area3(size_x + off_x, off_y, 1, size_y + 2, dm); in draw_border()
158 return x >= off_x && x <= off_x + size_x && y >= off_y && y <= off_y + size_y; in check_point()
239 f0.size_x = f1.size_x = _dm.sizex / 2 - 4; in fractal_group()
[all …]
H A Dfractal.hpp33 int size_x, size_y; member in fractal
/oneTBB/examples/common/gui/
H A Dgdivideo.cpp147 size_x(sizex), in drawing_area()
161 r.right = start_x + size_x; in update()
H A Dvideo.hpp132 const int start_x, start_y, size_x, size_y; member in drawing_area
201 size_x(sizex), in drawing_area()
H A Dd2dvideo.cpp182 size_x(sizex), in drawing_area()
196 r.right = start_x + size_x; in update()
H A Dxvideo.cpp426 size_x(sizex), in drawing_area()
445 XPutImage(dpy, win, gc, ximage, start_x, start_y, start_x, start_y, size_x, size_y); in update()
460 size_x, in update()
H A Dconvideo.cpp138 size_x(sizex), in drawing_area()
H A Dmacvideo.cpp175 size_x(sizex), in drawing_area()
/oneTBB/examples/parallel_for/polygon_overlay/
H A Drpolygon.hpp114 for (int x = 0; x < ldrawing.size_x; x++) { in drawPoly()