| /oneTBB/src/tbb/ |
| H A D | concurrent_monitor.h | 324 base_list temp; in notify_all_relaxed() local 330 my_waitset.flush_to(temp); in notify_all_relaxed() 331 end = temp.end(); in notify_all_relaxed() 343 temp.clear(); in notify_all_relaxed() 362 base_list temp; in notify_relaxed() local 374 temp.add(n); in notify_relaxed() 379 end = temp.end(); in notify_relaxed() 385 temp.clear(); in notify_relaxed() 432 base_list temp; in abort_all_relaxed() local 438 end = temp.end(); in abort_all_relaxed() [all …]
|
| /oneTBB/test/conformance/ |
| H A D | conformance_parallel_scan.cpp | 46 T temp = sum; in operator ()() local 48 temp = Op()(temp, z[i]); in operator ()() 50 y[i] = temp; in operator ()() 52 sum = temp; in operator ()() 123 std::size_t temp = sum; in __anonb56fb5590102() local 125 temp = temp + input[i]; in __anonb56fb5590102() 127 output[i] = temp; in __anonb56fb5590102() 129 return temp; in __anonb56fb5590102()
|
| H A D | conformance_enumerable_thread_specific.cpp | 197 ThrowingConstructor operator()() { ThrowingConstructor temp; temp.m_cnt = Value; return temp; } in operator ()() local
|
| /oneTBB/examples/parallel_for/tachyon/src/ |
| H A D | vector.cpp | 98 vector temp; in Raypnt() local 100 temp.x = a->o.x + (a->d.x * t); in Raypnt() 101 temp.y = a->o.y + (a->d.y * t); in Raypnt() 102 temp.z = a->o.z + (a->d.z * t); in Raypnt() 104 return temp; in Raypnt()
|
| H A D | light.cpp | 84 flt b, disc, t1, t2, temp; in light_intersect() local 93 VDOT(temp, V, V); in light_intersect() 95 disc = b * b + l->rad * l->rad - temp; in light_intersect()
|
| H A D | sphere.cpp | 93 flt b, disc, t1, t2, temp; in sphere_intersect() local 98 VDOT(temp, V, V); in sphere_intersect() 100 disc = b * b + spr->rad * spr->rad - temp; in sphere_intersect()
|
| H A D | intersect.cpp | 101 object temp; in intersect_objects() local 103 temp.nextobj = rootobj; /* setup the initial object pointers.. */ in intersect_objects() 104 cur = &temp; /* ready, set */ in intersect_objects()
|
| H A D | parse.cpp | 582 vector *temp; in GetPolyCylinder() local 591 temp = (vector *)malloc(numpts * sizeof(vector)); in GetPolyCylinder() 594 rc |= GetVector(dfile, &temp[i]); in GetPolyCylinder() 602 rt_polycylinder(tex, temp, numpts, rad); in GetPolyCylinder() 604 free(temp); in GetPolyCylinder()
|
| /oneTBB/test/tbb/ |
| H A D | test_join_node.h | 563 return temp; 581 return temp; 597 return temp; 616 return temp; 634 return temp; 657 return temp; 677 return temp; 701 return temp; 723 return temp; 748 return temp; [all …]
|
| H A D | test_semaphore.cpp | 217 unsigned temp = ++otherTokens; in Produce() local 218 if (temp == 1) { in Produce() 239 unsigned temp = ++otherTokens; in Consume() local 240 if (temp == 1) { in Consume()
|
| H A D | test_parallel_pipeline.cpp | 626 unsigned temp = numeral; in run_function() local 628 for( unsigned i=0; i<number_of_filters; ++i, temp/=number_of_filter_types ) in run_function() 629 filter_type[i] = filter_table[temp%number_of_filter_types]; in run_function()
|
| H A D | test_split_node.cpp | 128 SType *temp = new SType(g); in create() local 129 return temp; in create()
|
| H A D | test_indexer_node.cpp | 140 IType *temp = new IType(); in create() local 141 return temp; in create()
|
| /oneTBB/src/tbbmalloc/ |
| H A D | frontend.cpp | 1180 for (Block* temp = activeBlk->next; temp; temp=temp->next) { in verifyTLSBin() local 1184 MALLOC_ASSERT( temp->previous->next == temp, ASSERT_TEXT ); in verifyTLSBin() 1185 if (temp->next) { in verifyTLSBin() 1186 MALLOC_ASSERT( temp->next->previous == temp, ASSERT_TEXT ); in verifyTLSBin() 1189 for (Block* temp = activeBlk->previous; temp; temp=temp->previous) { in verifyTLSBin() local 1193 MALLOC_ASSERT( temp->next->previous == temp, ASSERT_TEXT ); in verifyTLSBin() 1195 MALLOC_ASSERT( temp->previous->next == temp, ASSERT_TEXT ); in verifyTLSBin() 1480 temp = temp->next; in privatizePublicFreeList() 1740 if( temp ) { in setPreviousBlockActive() 1742 activeBlk = temp; in setPreviousBlockActive() [all …]
|
| /oneTBB/include/oneapi/tbb/detail/ |
| H A D | _flow_graph_item_buffer_impl.h | 115 item_type temp = get_my_item(i); in swap_items() local 117 set_my_item(j, temp); in swap_items()
|
| /oneTBB/test/common/ |
| H A D | doctest.h | 3727 char* temp = new char[total_size + 1]; 3734 data.ptr = temp; 3749 char* temp = new char[data.capacity]; 3756 data.ptr = temp; 6507 auto temp = std::strstr(argv[index], pattern); 6508 … if(temp && (value || strlen(temp) == strlen(pattern))) { //!OCLINT prefer early exits and continue 6512 while(curr != temp) { 6521 temp += strlen(pattern); 6524 *value = temp; 6948 const auto temp = first[i]; [all …]
|
| /oneTBB/include/oneapi/tbb/ |
| H A D | concurrent_hash_map.h | 322 auto temp = my_embedded_segment[i].node_list.load(std::memory_order_relaxed); in internal_swap_content() local 325 table.my_embedded_segment[i].node_list.store(temp, std::memory_order_relaxed); in internal_swap_content() 328 auto temp = my_table[i].load(std::memory_order_relaxed); in internal_swap_content() local 331 table.my_table[i].store(temp, std::memory_order_relaxed); in internal_swap_content()
|