Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 29) sorted by relevance

12

/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()
89 fputc((height & 0xff), ofp); /* Height, low byte */ in createtgafile()
90 fputc(((height >> 8) & 0xff), ofp); /* Height, high byte */ in createtgafile()
155 int format, width, height, w1, w2, h1, h2, depth, flags; in readtga() local
191 height = ((h2 << 8) | h1); in readtga()
193 imgsize = 3 * width * height; in readtga()
205 for (i = 0; i < height / 2; i++) { in readtga()
207 memcpy(&(*imgdata)[rowsize * i], &(*imgdata)[rowsize * (height - 1 - i)], rowsize); in readtga()
208 memcpy(&(*imgdata)[rowsize * (height - 1 - i)], copytmp, rowsize); in readtga()
[all …]
H A Dcoordsys.cpp64 void xyztocyl(vector pnt, flt height, flt* u, flt* v) { in xyztocyl() argument
69 *v = pnt.z / height; in xyztocyl()
/oneTBB/examples/parallel_for/game_of_life/
H A DUpdate_state.cpp50 for (unsigned row = 0; row < height; ++row) { in shift_left2D()
73 for (unsigned row = 0; row < height; ++row) { in shift_right2D()
127 unsigned height = end - begin; in UpdateState() local
146 if (end == m_matrix->height) { in UpdateState()
165 height = end - begin + 2; in UpdateState()
166 shift_left2D(X, height, size_sse_row); in UpdateState()
175 height = end - begin + 2; in UpdateState()
176 shift_left2D(X, height, size_sse_row); in UpdateState()
188 height = end - begin + 2; in UpdateState()
189 shift_right2D(X, height, size_sse_row); in UpdateState()
[all …]
H A DGame_of_life.cpp38 Board::Board(int width, int height, int squareSize, LabelPtr counter) in Board() argument
40 m_height(height), in Board()
45 m_matrix->height = height; 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.hpp25 int height; member
31 Board(int width, int height, int squareSize, LabelPtr counter);
H A DEvolution.cpp82 UpdateState(m_matrix, m_matrix->data, 0, m_matrix->height); in Step()
84 UpdateState(m_matrix, m_dest, 0, (m_matrix->width * m_matrix->height) - 1); in Step()
168 std::size_t end = m_matrix->height; //! ending cell position in Step()
H A DEvolution.hpp50 m_size(m_matrix->height * m_matrix->width), in Evolution()
/oneTBB/examples/common/gui/xcode/tbbExample/
H A DOpenGLView.m45 CGFloat full_height = imageRect.size.height;
47 imageRect.size.height=imageRect.size.width/ratio;
48 imageRect.origin.y=(full_height-imageRect.size.height)/2;
71 if ( (y-imageRect.origin.y) > 0 && y < (imageRect.origin.y + imageRect.size.height ))
72 …se_func( x*g_sizex/(imageRect.size.width), (y-imageRect.origin.y)*g_sizey/imageRect.size.height,1);
97 glWindowPos2i(0, (int)self.visibleRect.size.height);
99 -(float)self.visibleRect.size.height/(float)g_sizey);
119 …ouse_func(x*g_sizex/(int)rect.size.width,((int)rect.size.height-y)*g_sizey/(int)rect.size.height,1…
137 const int y=(int)rect.size.height;
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 DtbbAppDelegate.m48 windowSize.size.height = g_sizey;
/oneTBB/include/oneapi/tbb/detail/
H A D_concurrent_skip_list.h92 size_type sz = calc_node_size(height); in create()
97 allocator_traits::construct(alloc, node, height); in create()
100 for (size_type l = 0; l < height; ++l) { in create()
109 for (size_type l = 0; l < node->height(); ++l) { in destroy()
112 size_type sz = calc_node_size(node->height()); in destroy()
149 size_type height() const { in height() function
842 if (h < curr->height()) { in internal_equal_range()
843 h = curr->height(); in internal_equal_range()
895 size_type node_height = node->height(); in fill_prev_curr_arrays()
954 size_type new_height = new_node->height(); in internal_insert_node()
[all …]
/oneTBB/doc/main/tbb_userguide/
H A DFlow_Graph_Reservation.rst267 :height: 222px
270 :height: 222px
273 :height: 222px
276 :height: 222px
279 :height: 222px
282 :height: 222px
285 :height: 222px
H A DNon-Linear_Pipelines.rst58 :height: 107px
61 :height: 107px
H A DControlling_Chunking_os.rst163 :height: 163px
166 :height: 144px
169 :height: 193px
H A DBandwidth_and_Cache_Affinity_os.rst103 :height: 178px
106 :height: 192px
H A DFlow_Graph_Message_Passing_Protocol.rst46 :height: 196px
H A DCancellation_and_Nested_Parallelism.rst135 :height: 131px
H A DParallelizing_Flow_Graph.rst101 :height: 337px
H A DDependence_Graph.rst144 :height: 337px
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DLazy_Initialization.rst106 :height: 367px
109 :height: 367px
H A DAgglomeration.rst167 :height: 293px
170 :height: 150px
H A DWavefront.rst195 :height: 122px
198 :height: 122px
H A DElementwise.rst137 :height: 29px
/oneTBB/examples/parallel_for/seismic/
H A Duniverse.cpp119 Rectangle(int startX, int startY, int width, int height) in Rectangle()
121 yRange(startY, height) {} in Rectangle()
/oneTBB/examples/common/gui/
H A Dxvideo.cpp183 sh.height = sh.min_height = sh.max_height = ysize; in init_window()

12