| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | triangle.cpp | 127 #define CROSS(dest, v1, v2) \ argument 128 dest.x = v1.y * v2.z - v1.z * v2.y; \ 129 dest.y = v1.z * v2.x - v1.x * v2.z; \ 130 dest.z = v1.x * v2.y - v1.y * v2.x; 134 #define SUB(dest, v1, v2) \ argument 135 dest.x = v1.x - v2.x; \ 136 dest.y = v1.y - v2.y; \ 137 dest.z = v1.z - v2.z;
|
| /oneTBB/examples/parallel_reduce/convex_hull/ |
| H A D | convex_hull_bench.cpp | 196 void appendVector(const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument 197 std::copy(src, src + srcSize, dest.grow_by(srcSize)); in appendVector() 200 void appendVector(const pointVec_t &src, pointVec_t &dest) { in appendVector() argument 201 std::copy(src.begin(), src.end(), dest.grow_by(src.size())); in appendVector() 213 void appendVector(mutex_t &insertMutex, const pointVec_t &src, pointVec_t &dest) { in appendVector() argument 215 dest.insert(dest.end(), src.begin(), src.end()); in appendVector() 218 void appendVector(mutex_t &insertMutex, const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument 220 dest.insert(dest.end(), src, src + srcSize); in appendVector()
|
| H A D | convex_hull_sample.cpp | 38 void appendVector(const point_t *src, std::size_t srcSize, pointVec_t &dest) { in appendVector() argument 39 std::copy(src, src + srcSize, dest.grow_by(srcSize)); in appendVector() 42 void appendVector(const pointVec_t &src, pointVec_t &dest) { in appendVector() argument 43 std::copy(src.begin(), src.end(), dest.grow_by(src.size())); in appendVector()
|
| /oneTBB/src/tbb/ |
| H A D | task_stream.h | 56 inline void set_one_bit( std::atomic<population_t>& dest, int pos ) { in set_one_bit() argument 59 dest.fetch_or( one<<pos ); in set_one_bit() 62 inline void clear_one_bit( std::atomic<population_t>& dest, int pos ) { in clear_one_bit() argument 65 dest.fetch_and( ~(one<<pos) ); in clear_one_bit()
|
| /oneTBB/examples/common/utility/ |
| H A D | utility.hpp | 170 type& dest, in argument() argument 172 : p_type(new type_impl<type>(a_name, a_description, dest, a_validating_function)), in argument() 217 cli_argument_pack& arg(type& dest, in arg() argument 221 internal::argument a(name, description, dest, validate); in arg() 232 cli_argument_pack& positional_arg(type& dest, in positional_arg() argument 236 internal::argument a(name, description, dest, validate); in positional_arg()
|
| /oneTBB/examples/parallel_for/game_of_life/ |
| H A D | Evolution.cpp | 142 static void set_values(Matrix* source, char* dest) { in set_values() argument 144 m_dest = dest; in set_values()
|
| H A D | Update_state.cpp | 97 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState() argument 204 char* dst = &dest[(row + begin) * width]; in UpdateState() 361 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end) { in UpdateState() argument 363 *(dest + i) = CheckCell(m_matrix, i); in UpdateState()
|
| H A D | Evolution.hpp | 38 void UpdateState(Matrix* m_matrix, char* dest, int begin, int end);
|
| /oneTBB/examples/graph/fgbzip2/ |
| H A D | bzlib.hpp | 196 BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffCompress)(char* dest, 204 BZ_EXTERN int BZ_API(BZ2_bzBuffToBuffDecompress)(char* dest,
|
| H A D | bzlib.cpp | 1393 int BZ_API(BZ2_bzBuffToBuffCompress)(char* dest, in BZ_API() 1403 if (dest == nullptr || destLen == nullptr || source == nullptr || blockSize100k < 1 || in BZ_API() 1417 strm.next_out = dest; in BZ_API() 1442 int BZ_API(BZ2_bzBuffToBuffDecompress)(char* dest, in BZ_API() 1451 if (dest == nullptr || destLen == nullptr || source == nullptr || (small != 0 && small != 1) || in BZ_API() 1463 strm.next_out = dest; in BZ_API()
|
| /oneTBB/test/tbb/ |
| H A D | test_input_node.cpp | 117 test_push_receiver<T> dest(g); in test_single_dest() local 118 tbb::flow::make_edge( src, dest ); in test_single_dest() 122 CHECK_MESSAGE( dest.get_count(i) == 1, "" ); in test_single_dest()
|
| /oneTBB/python/tbb/ |
| H A D | __init__.py | 278 parser.add_argument('-m', action='store_true', dest='module',
|
| /oneTBB/test/conformance/ |
| H A D | conformance_concurrent_queue.cpp | 77 bool try_pop( T& dest ) { in try_pop() argument 78 base_type::try_pop( dest); in try_pop() 79 return dest.get_serial() < my_capacity; in try_pop() 634 …bool try_pop( T& dest ) { return this->oneapi::tbb::concurrent_queue<T, test_allocator<T>>::try_po… in try_pop() argument
|