Searched refs:ind (Results 1 – 5 of 5) sorted by relevance
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Update_state.cpp | 54 X[ind] = in shift_left2D() 55 _mm_or_si128(_mm_srli_epi16(X[ind], 1), _mm_slli_epi16(_mm_srli_si128(X[ind], 2), 15)); in shift_left2D() 58 X[ind + 1] = _mm_or_si128(_mm_srli_epi16(X[ind + 1], 1), in shift_left2D() 63 X[ind + 2] = _mm_or_si128(_mm_srli_epi16(X[ind + 2], 1), in shift_left2D() 78 X[ind] = in shift_right2D() 79 _mm_or_si128(_mm_slli_epi16(X[ind], 1), _mm_srli_epi16(_mm_slli_si128(X[ind], 2), 15)); in shift_right2D() 83 X[ind + 1] = _mm_or_si128(_mm_slli_epi16(X[ind + 1], 1), in shift_right2D() 85 X[ind + 1].m128i_u32[0] |= x0; in shift_right2D() 90 X[ind + 2] = _mm_or_si128(_mm_slli_epi16(X[ind + 2], 1), in shift_right2D() 92 X[ind + 2].m128i_u32[0] |= x1; in shift_right2D() [all …]
|
| /oneTBB/test/conformance/ |
| H A D | conformance_composite_node.cpp | 101 oneapi::tbb::flow::indexer_node<int, float> ind(g); 110 …m_fxn, fxn, bc, oneapi::tbb::flow::input_port<0>(j), lim, q, oneapi::tbb::flow::input_port<0>(ind), 112 …auto output_tuple = std::tie(ct,j, ind, fxn, src, bc, oneapi::tbb::flow::output_port<0>(s), lim, o… 119 a_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq); 120 a_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq); 134 b_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq); 135 b_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq); 148 c_node.add_visible_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq); 150 c_node.add_nodes(src, fxn, m_fxn, bc, lim, ind, s, ct, j, q, bf, pq, wo, ovw, seq);
|
| H A D | conformance_graph.cpp | 201 oneapi::tbb::flow::indexer_node<int> ind(g); 216 oneapi::tbb::flow::make_edge(ind, successor3); 234 oneapi::tbb::flow::input_port<0>(ind).try_put(1);
|
| /oneTBB/src/tbb/ |
| H A D | dynamic_link.cpp | 195 const std::size_t ind = my_size++; in add() local 196 __TBB_ASSERT_EX( ind < MAX_LOADED_MODULES, "Too many modules are loaded" ); in add() 197 my_handles[ind] = handle; in add()
|
| /oneTBB/test/tbbmalloc/ |
| H A D | test_malloc_whitebox.cpp | 1113 size_t ind = rand()%lmbArray.size(); in next() local 1114 if ( ind != lmbArray.size()-1 ) std::swap(lmbArray[ind],lmbArray[lmbArray.size()-1]); in next()
|