Home
last modified time | relevance | path

Searched refs:fail (Results 1 – 10 of 10) sorted by relevance

/oneTBB/examples/common/gui/
H A Dxvideo.cpp135 goto fail; in init_window()
149 goto fail; in init_window()
178 goto fail; in init_window()
243 goto fail; in init_window()
270 goto fail; in init_window()
287 fail: in init_window()
/oneTBB/.github/workflows/
H A Dci.yml149 fail-fast: false
187 fail-fast: false
213 fail-fast: false
249 fail-fast: false
287 fail-fast: false
313 fail-fast: false
/oneTBB/doc/main/intro/
H A Dlimitations.rst28 … using Parallel STL algorithms in the ``libstdc++`` versions 9 and 10 may fail to compile due to i…
35 …installed in a system folder, such as ``/usr/lib64``, the application may fail to link due to the …
/oneTBB/test/tbbmalloc/
H A Dtest_malloc_pools.cpp623 bool fail = rml::pool_destroy(nullptr); in TestEntries() local
624 REQUIRE(!fail); in TestEntries()
625 fail = rml::pool_reset(nullptr); in TestEntries()
626 REQUIRE(!fail); in TestEntries()
844 bool fail = pool_destroy(pool); in TestDestroyFailed() local
845 REQUIRE_MESSAGE(fail==false, "putMemPolicyError callback returns error, " in TestDestroyFailed()
/oneTBB/doc/main/tbb_userguide/
H A Dalways_use_wait_for_all.rst27 // program will fail when f and g are destroyed at the
H A Dwork_isolation.rst56 assert( ets.local()==i ); // The assertion may fail!
H A DControlling_Chunking_os.rst59 fail.
H A DFlow_Graph_Reservation.rst27 state. This may fail; if so, the reserving input port switches that
/oneTBB/src/tbbmalloc/
H A Dbackend.cpp136 bool fail; in freeRawMem() local
144 fail = (*extMemPool->rawFree)(extMemPool->poolId, object, size); in freeRawMem()
147 fail = freeRawMemory(object, size); in freeRawMem()
150 return !fail; in freeRawMem()
/oneTBB/examples/common/utility/
H A Dutility.hpp45 if ((!stream) || (stream.fail())) { in string_to()