Home
last modified time | relevance | path

Searched refs:c_list (Results 1 – 3 of 3) sorted by relevance

/external/toybox/toys/pending/
Dfsck.c62 static struct child_list *c_list = NULL; //fsck.type child list. variable
68 for (child = c_list; child; child = child->next) in kill_all()
239 if (c_list) { in do_fsck()
240 child->next = c_list; in do_fsck()
241 c_list = child; in do_fsck()
243 c_list = child; in do_fsck()
257 if (!c_list) return 0; in wait_for()
259 temp = c_list; in wait_for()
289 if (prev == temp) c_list = c_list->next; //first node in wait_for()
/external/mksh/src/
Dsyn.c46 static struct op *c_list(int, bool);
94 outtree = c_list(doalias ? ALIAS : 0, source->type == SSTRING); in yyparse()
141 c_list(int sALIAS, bool multi) in c_list() function
243 t = c_list(sALIAS, true); in nested()
463 t->left = c_list(sALIAS, true); in get_command()
480 t->left = c_list(sALIAS, true); in get_command()
565 list = c_list(sALIAS, true); in dogroup()
577 t->left = c_list(sALIAS, true); in thenpart()
591 if ((t = c_list(sALIAS, true)) == NULL) in elsepart()
597 t->left = c_list(sALIAS, true); in elsepart()
[all …]
/external/tensorflow/tensorflow/python/client/
Dsession_test.py1552 c_list = np.array(
1555 c = constant_op.constant(c_list)
1556 self.assertAllEqual(c.eval(), c_list)
1564 c_list = np.array(
1569 self.assertAllEqual(sess.run(c, feed_dict={feed_t: c_list}), c_list)
1572 feed_t: c_list
1573 }), c_list)
1574 c_v, feed_v = sess.run([c, feed_t], feed_dict={feed_t: c_list})
1575 self.assertAllEqual(c_v, c_list)
1576 self.assertAllEqual(feed_v, c_list)
[all …]