Home
last modified time | relevance | path

Searched refs:B (Results 1 – 25 of 32) sorted by relevance

12

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_body_impl.h113 B get_body() { return body; }
118 B body;
122 template <typename B>
130 B get_body() { return body; }
135 B body;
147 B get_body() { return body; }
152 B body;
168 B body;
195 B body;
226 B body;
[all …]
H A D_config.h95 #define __TBB_CONCAT_AUX(A,B) A##B argument
98 #define __TBB_CONCAT(A,B) __TBB_CONCAT_AUX(A,B) argument
/oneTBB/examples/parallel_for/game_of_life/
H A DUpdate_state.cpp37 __m128i* B, in sum_offset() argument
45 B[i] = _mm_xor_si128(B[i], tmp); in sum_offset()
101 __m128i X[906], A[900], B[900], C[900]; in UpdateState() local
109 B[i].m128i_u32[0] = 0; in UpdateState()
110 B[i].m128i_u32[1] = 0; in UpdateState()
111 B[i].m128i_u32[2] = 0; in UpdateState()
112 B[i].m128i_u32[3] = 0; in UpdateState()
156 sum_offset(X, A, B, C, size_sse_ar, 0); in UpdateState()
159 sum_offset(X, A, B, C, size_sse_ar, size_sse_row); in UpdateState()
169 sum_offset(X, A, B, C, size_sse_ar, 0); in UpdateState()
[all …]
/oneTBB/examples/graph/logic_sim/
H A Dtest_all.cpp340 toggle B(g); in main() local
377 B.flip(); in main()
386 B.flip(); in main()
416 B.flip(); in main()
426 B.flip(); in main()
457 B.flip(); in main()
467 B.flip(); in main()
479 B.flip(); in main()
490 B.flip(); in main()
542 B[0].flip(); in main()
[all …]
/oneTBB/examples/parallel_for/tachyon/src/
H A Dtrace.simple.cpp82 int R, G, B; in render_one_pixel() local
111 B = (int)(col.b * 255); in render_one_pixel()
112 if (B > 255) in render_one_pixel()
113 B = 255; in render_one_pixel()
114 else if (B < 0) in render_one_pixel()
115 B = 0; in render_one_pixel()
117 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.serial.cpp82 int R, G, B; in render_one_pixel() local
140 B = (int)(col.b * 255); in render_one_pixel()
141 if (B > 255) in render_one_pixel()
142 B = 255; in render_one_pixel()
143 else if (B < 0) in render_one_pixel()
144 B = 0; in render_one_pixel()
146 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.omp.cpp83 int R, G, B; in render_one_pixel() local
142 B = (int)(col.b * 255); in render_one_pixel()
143 if (B > 255) in render_one_pixel()
144 B = 255; in render_one_pixel()
145 else if (B < 0) in render_one_pixel()
146 B = 0; in render_one_pixel()
148 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.tbb1d.cpp90 int R, G, B; in render_one_pixel() local
149 B = (int)(col.b * 255); in render_one_pixel()
150 if (B > 255) in render_one_pixel()
151 B = 255; in render_one_pixel()
152 else if (B < 0) in render_one_pixel()
153 B = 0; in render_one_pixel()
155 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.threads.cpp94 int R, G, B; in render_one_pixel() local
154 B = (int)(col.b * 255); in render_one_pixel()
155 if (B > 255) in render_one_pixel()
156 B = 255; in render_one_pixel()
157 else if (B < 0) in render_one_pixel()
158 B = 0; in render_one_pixel()
160 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.taskq.cpp90 int R, G, B; in render_one_pixel() local
149 B = (int)(col.b * 255); in render_one_pixel()
150 if (B > 255) in render_one_pixel()
151 B = 255; in render_one_pixel()
152 else if (B < 0) in render_one_pixel()
153 B = 0; in render_one_pixel()
155 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.tbb.cpp119 int R, G, B; in render_one_pixel() local
178 B = (int)(col.b * 255); in render_one_pixel()
179 if (B > 255) in render_one_pixel()
180 B = 255; in render_one_pixel()
181 else if (B < 0) in render_one_pixel()
182 B = 0; in render_one_pixel()
187 B = int((1.0 - alpha) * B + alpha * blend[2]); in render_one_pixel()
190 return video->get_color(R, G, B); in render_one_pixel()
H A Dtrace.threads2d.cpp97 int R, G, B; in render_one_pixel() local
157 B = (int)(col.b * 255); in render_one_pixel()
158 if (B > 255) in render_one_pixel()
159 B = 255; in render_one_pixel()
160 else if (B < 0) in render_one_pixel()
161 B = 0; in render_one_pixel()
163 return video->get_color(R, G, B); in render_one_pixel()
H A Dvector.cpp91 void VAddS(flt a, vector *A, vector *B, vector *C) { in VAddS() argument
92 C->x = (a * A->x) + B->x; in VAddS()
93 C->y = (a * A->y) + B->y; in VAddS()
94 C->z = (a * A->z) + B->z; in VAddS()
/oneTBB/doc/main/tbb_userguide/
H A DDependence_Graph.rst41 Function B must complete before C and D start executing; and E must
44 B and E or C and F.
91 node_t B(g, [](msg_t){ b(); } );
96 make_edge(A, B);
97 make_edge(B, C);
98 make_edge(B, D);
109 does not start until both B and E are finished. While a task is waiting
H A DCancellation_and_Nested_Parallelism.rst52 c. Throw exception from C to B.
55 #. Handle exception in B:
58 a. Capture exception in B.
61 b. Cancel tasks in B and, by downwards propagation, in D.
64 c. Throw an exception out of B to A.
H A DNon-Linear_Pipelines.rst30 filters. This is because filters A and B could process the token
43 filters A, B, D and E above may need to be modified in order to properly
H A Dappendix_A.rst32 and subsequently thread B runs on the same physical thread, B will tend
H A DControlling_Chunking_os.rst76 - Case B
83 overhead. Both Case A and Case B have the same total gray area. Case A
85 overhead. Case B shows how a large grainsize reduces this proportion, at
H A Dappendix_B.rst3 Appendix B Mixing With Other Threading Packages
/oneTBB/test/tbb/
H A Dtest_openmp.cpp146 data_type A[M], B[N]; variable
153 F(actual, A, m, B, n, p); in RunTest()
168 for (int i = 0; i < n; ++i) B[i] = data_type(1 + i / 7);
169 SerialConvolve( expected, A, m, B, n );
/oneTBB/doc/main/tbb_userguide/design_patterns/
H A DGeneral_References.rst12 - T. Mattson, B. Sanders, B. Massingill. Patterns for Parallel Programming (2005)
/oneTBB/integration/windows/sys_check/
H A Dsys_check.bat18 exit /B 0
/oneTBB/examples/test_all/fibonacci/
H A Dfibonacci.cpp127 Matrix2x2 A, B; in SerialQueueFib() local
133 while (!Q.try_pop(B)) in SerialQueueFib()
135 Q.push(A * B); in SerialQueueFib()
/oneTBB/integration/windows/oneapi/
H A Dvars.bat56 exit /B 0
/oneTBB/integration/windows/env/
H A Dvars.bat93 exit /B 0

12