Home
last modified time | relevance | path

Searched refs:width (Results 1 – 25 of 28) sorted by relevance

12

/oneTBB/examples/parallel_for/game_of_life/
H A DUpdate_state.cpp26 dst[0] |= src[width - 1]; in create_record()
30 for (unsigned col = 31u; col < width; ++col) in create_record()
128 unsigned width = m_matrix->width; in UpdateState() local
130 char* src = &mas[(row + begin) * width]; in UpdateState()
132 create_record(src, dst, width); in UpdateState()
140 src = &mas[(begin - 1) * width]; in UpdateState()
143 create_record(src, dst, width); in UpdateState()
150 src = &mas[end * width]; in UpdateState()
153 create_record(src, dst, width); in UpdateState()
202 width = m_matrix->width; in UpdateState()
[all …]
H A DGame_of_life.cpp38 Board::Board(int width, int height, int squareSize, LabelPtr counter) in Board() argument
39 : m_width(width), in Board()
44 m_matrix->width = width; in Board()
46 m_matrix->data = new char[width * height]; in Board()
47 memset(m_matrix->data, 0, width * height); in Board()
H A DBoard.hpp24 int width; member
31 Board(int width, int height, int squareSize, LabelPtr counter);
H A DEvolution.hpp50 m_size(m_matrix->height * m_matrix->width), in Evolution()
H A DEvolution.cpp84 UpdateState(m_matrix, m_dest, 0, (m_matrix->width * m_matrix->height) - 1); in Step()
/oneTBB/examples/parallel_for/tachyon/src/
H A Dtgafile.cpp57 void createtgafile(char *name, unsigned short width, unsigned short height) { in createtgafile() argument
61 filesize = 3 * width * height + 18 - 10; in createtgafile()
87 fputc((width & 0xff), ofp); /* Width, low byte */ in createtgafile()
88 fputc(((width >> 8) & 0xff), ofp); /* Width, high byte */ in createtgafile()
155 int format, width, height, w1, w2, h1, h2, depth, flags; in readtga() local
190 width = ((w2 << 8) | w1); in readtga()
193 imgsize = 3 * width * height; in readtga()
200 int rowsize = 3 * width; in readtga()
221 *xres = width; in readtga()
/oneTBB/examples/common/gui/xcode/tbbExample/
H A Dmain.m28 *x=imageRect.size.width>imageRect.size.height?imageRect.size.width:imageRect.size.height;
29 *y=imageRect.size.width<imageRect.size.height?imageRect.size.width:imageRect.size.height;
H A DOpenGLView.m47 imageRect.size.height=imageRect.size.width/ratio;
72 …on_mouse_func( x*g_sizex/(imageRect.size.width), (y-imageRect.origin.y)*g_sizey/imageRect.size.hei…
98 glPixelZoom( (float)self.visibleRect.size.width /(float)g_sizex,
119 …on_mouse_func(x*g_sizex/(int)rect.size.width,((int)rect.size.height-y)*g_sizey/(int)rect.size.heig…
136 const int x=(int)rect.size.width;
H A DtbbAppDelegate.m49 windowSize.size.width = g_sizex;
/oneTBB/doc/_static/
H A Dtheme_overrides.css1 /* override table width restrictions */
2 @media screen and (min-width: 767px) {
/oneTBB/doc/main/tbb_userguide/
H A DFlow_Graph_Reservation.rst266 :width: 400px
269 :width: 400px
272 :width: 400px
275 :width: 400px
278 :width: 400px
281 :width: 400px
284 :width: 400px
H A DNon-Linear_Pipelines.rst57 :width: 281px
60 :width: 281px
H A DControlling_Chunking_os.rst162 :width: 161px
165 :width: 157px
168 :width: 462px
H A DBandwidth_and_Cache_Affinity_os.rst102 :width: 453px
105 :width: 551px
H A DFlow_Graph_Message_Passing_Protocol.rst45 :width: 442px
H A DCancellation_and_Nested_Parallelism.rst134 :width: 261px
H A DParallelizing_Flow_Graph.rst100 :width: 440px
H A DDependence_Graph.rst143 :width: 440px
H A DWorking_on_the_Assembly_Line_pipeline.rst345 :width: 31px
348 :width: 31px
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DLazy_Initialization.rst105 :width: 744px
108 :width: 744px
H A DAgglomeration.rst166 :width: 301px
169 :width: 291px
H A DWavefront.rst194 :width: 122px
197 :width: 122px
H A DElementwise.rst136 :width: 99px
/oneTBB/examples/parallel_for/seismic/
H A Duniverse.cpp119 Rectangle(int startX, int startY, int width, int height) in Rectangle()
120 : xRange(startX, width), in Rectangle()
/oneTBB/examples/common/gui/
H A Dxvideo.cpp182 sh.width = sh.min_width = sh.max_width = xsize; in init_window()

12