| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Update_state.cpp | 26 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 D | Game_of_life.cpp | 38 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 D | Board.hpp | 24 int width; member 31 Board(int width, int height, int squareSize, LabelPtr counter);
|
| H A D | Evolution.hpp | 50 m_size(m_matrix->height * m_matrix->width), in Evolution()
|
| H A D | Evolution.cpp | 84 UpdateState(m_matrix, m_dest, 0, (m_matrix->width * m_matrix->height) - 1); in Step()
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | tgafile.cpp | 57 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 D | main.m | 28 *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 D | OpenGLView.m | 47 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 D | tbbAppDelegate.m | 49 windowSize.size.width = g_sizex;
|
| /oneTBB/doc/_static/ |
| H A D | theme_overrides.css | 1 /* override table width restrictions */ 2 @media screen and (min-width: 767px) {
|
| /oneTBB/doc/main/tbb_userguide/ |
| H A D | Flow_Graph_Reservation.rst | 266 :width: 400px 269 :width: 400px 272 :width: 400px 275 :width: 400px 278 :width: 400px 281 :width: 400px 284 :width: 400px
|
| H A D | Non-Linear_Pipelines.rst | 57 :width: 281px 60 :width: 281px
|
| H A D | Controlling_Chunking_os.rst | 162 :width: 161px 165 :width: 157px 168 :width: 462px
|
| H A D | Bandwidth_and_Cache_Affinity_os.rst | 102 :width: 453px 105 :width: 551px
|
| H A D | Flow_Graph_Message_Passing_Protocol.rst | 45 :width: 442px
|
| H A D | Cancellation_and_Nested_Parallelism.rst | 134 :width: 261px
|
| H A D | Parallelizing_Flow_Graph.rst | 100 :width: 440px
|
| H A D | Dependence_Graph.rst | 143 :width: 440px
|
| H A D | Working_on_the_Assembly_Line_pipeline.rst | 345 :width: 31px 348 :width: 31px
|
| /oneTBB/doc/main/tbb_userguide/design_patterns/ |
| H A D | Lazy_Initialization.rst | 105 :width: 744px 108 :width: 744px
|
| H A D | Agglomeration.rst | 166 :width: 301px 169 :width: 291px
|
| H A D | Wavefront.rst | 194 :width: 122px 197 :width: 122px
|
| H A D | Elementwise.rst | 136 :width: 99px
|
| /oneTBB/examples/parallel_for/seismic/ |
| H A D | universe.cpp | 119 Rectangle(int startX, int startY, int width, int height) in Rectangle() 120 : xRange(startX, width), in Rectangle()
|
| /oneTBB/examples/common/gui/ |
| H A D | xvideo.cpp | 182 sh.width = sh.min_width = sh.max_width = xsize; in init_window()
|