Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 17 of 17) sorted by relevance

/oneTBB/src/tbb/
H A Dconcurrent_monitor.h324 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 Dconformance_parallel_scan.cpp46 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 Dconformance_enumerable_thread_specific.cpp197 ThrowingConstructor operator()() { ThrowingConstructor temp; temp.m_cnt = Value; return temp; } in operator ()() local
/oneTBB/examples/parallel_for/tachyon/src/
H A Dvector.cpp98 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 Dlight.cpp84 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 Dsphere.cpp93 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 Dintersect.cpp101 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 Dparse.cpp582 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 Dtest_join_node.h563 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 Dtest_semaphore.cpp217 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 Dtest_parallel_pipeline.cpp626 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 Dtest_split_node.cpp128 SType *temp = new SType(g); in create() local
129 return temp; in create()
H A Dtest_indexer_node.cpp140 IType *temp = new IType(); in create() local
141 return temp; in create()
/oneTBB/src/tbbmalloc/
H A Dfrontend.cpp1180 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.h115 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 Ddoctest.h3727 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 Dconcurrent_hash_map.h322 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()