Searched defs:id0 (Results 1 - 12 of 12) sorted by relevance

/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.id/
H A Dassign.pass.cpp23 std::thread::id id0; local
25 id1 = id0;
26 assert(id1 == id0);
28 assert(id1 != id0);
H A Dcopy.pass.cpp23 std::thread::id id0; local
24 std::thread::id id1 = id0;
25 assert(id1 == id0);
H A Deq.pass.cpp24 std::thread::id id0; local
26 id1 = id0;
27 assert( (id1 == id0));
28 assert(!(id1 != id0));
30 assert(!(id1 == id0));
31 assert( (id1 != id0));
H A Dlt.pass.cpp26 std::thread::id id0; local
29 assert(!(id0 < id1));
30 assert( (id0 <= id1));
31 assert(!(id0 > id1));
32 assert( (id0 >= id1));
33 assert(!(id0 == id2));
34 if (id0 < id2) {
35 assert( (id0 <= id2));
36 assert(!(id0 > id2));
37 assert(!(id0 >
[all...]
H A Dstream.pass.cpp26 std::thread::id id0 = std::this_thread::get_id(); local
28 os << id0; local
/external/libcxx/test/libcxx/localization/locales/locale/locale.types/locale.id/
H A Did.pass.cpp25 std::locale::id id0; variable
31 long id = id0.__get();
32 assert(id0.__get() == id+0);
33 assert(id0.__get() == id+0);
34 assert(id0.__get() == id+0);
41 assert(id0.__get() == id+0);
42 assert(id0.__get() == id+0);
43 assert(id0.__get() == id+0);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
H A Dswap.pass.cpp50 std::thread::id id0 = t0.get_id(); local
55 assert(t1.get_id() == id0);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/
H A Dget_id.pass.cpp50 std::thread::id id0 = t0.get_id(); local
53 assert(t0.get_id() == id0);
54 assert(id0 != id1);
H A Dswap.pass.cpp50 std::thread::id id0 = t0.get_id(); local
55 assert(t1.get_id() == id0);
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Dmodel_pruner_test.cc172 // id0 is preserved because it is fed by a Switch and drives a
174 Output id0 = ops::Identity(scope.WithOpName("id0"), s.output_true); local
178 Output id2 = ops::Identity(scope.WithOpName("id2"), id0);
180 ops::Identity(scope.WithOpName("id3").WithControlDependencies(id0), id1);
181 auto merge = ops::Merge(scope.WithOpName("merge"), {id0, id1});
H A Ddependency_optimizer_test.cc408 // id0 should be removed.
409 Output id0 = ops::Identity(scope.WithOpName("id0"), sw.output_true); local
413 Output or0 = ops::LogicalOr(scope.WithOpName("or0"), id0, id0);
414 Output or1 = ops::LogicalOr(scope.WithOpName("or1"), id0, y);
430 EXPECT_NE("id0", node.name());
480 Output id0 = ops::Identity(scope.WithOpName("id0"), s.output_true); local
488 Output id2 = ops::Identity(scope.WithOpName("id2"), id0);
[all...]
/external/ltp/testcases/kernel/syscalls/fcntl/
H A Dfcntl36.c295 pthread_t id0[thread_cnt]; local
331 SAFE_PTHREAD_CREATE(id0 + i, NULL, f0, (void *)&p0[i]);
341 SAFE_PTHREAD_JOIN(id0[i], NULL);

Completed in 391 milliseconds