Searched refs:c_list (Results 1 – 3 of 3) sorted by relevance
/external/toybox/toys/pending/ |
D | fsck.c | 62 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/ |
D | syn.c | 46 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() 457 t->left = c_list(sALIAS, true); in get_command() 474 t->left = c_list(sALIAS, true); in get_command() 559 list = c_list(sALIAS, true); in dogroup() 571 t->left = c_list(sALIAS, true); in thenpart() 585 if ((t = c_list(sALIAS, true)) == NULL) in elsepart() 591 t->left = c_list(sALIAS, true); in elsepart() [all …]
|
/external/tensorflow/tensorflow/python/client/ |
D | session_test.py | 1572 c_list = np.array( 1575 c = constant_op.constant(c_list) 1576 self.assertAllEqual(c, c_list) 1584 c_list = np.array( 1589 self.assertAllEqual(sess.run(c, feed_dict={feed_t: c_list}), c_list) 1592 feed_t: c_list 1593 }), c_list) 1594 c_v, feed_v = sess.run([c, feed_t], feed_dict={feed_t: c_list}) 1595 self.assertAllEqual(c_v, c_list) 1596 self.assertAllEqual(feed_v, c_list) [all …]
|