Home
last modified time | relevance | path

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

/third_party/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()
/third_party/mksh/
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()
455 t->left = c_list(sALIAS, true); in get_command()
472 t->left = c_list(sALIAS, true); in get_command()
556 list = c_list(sALIAS, true); in dogroup()
568 t->left = c_list(sALIAS, true); in thenpart()
582 if ((t = c_list(sALIAS, true)) == NULL) in elsepart()
588 t->left = c_list(sALIAS, true); in elsepart()
[all …]
/third_party/json/doc/examples/
Dbasic_json__CompatibleType.cpp80 std::list<bool> c_list {true, true, false, true}; in main() local
81 json j_list(c_list); in main()
/third_party/json/test/src/
Dunit-readme.cpp210 std::list<bool> c_list {true, true, false, true}; in skip() local
211 json j_list(c_list); in skip()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/cache/
Dcache_request.cc240 std::string c_list; in PostReply() local
248 c_list += std::to_string(cpu_id) + " "; in PostReply()
259 MS_LOG(INFO) << "Changing cpu affinity to the following list of cpu id: " + c_list; in PostReply()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/auto_parallel/
Dcostmodel.h83 StrategyWithCost(StrategyPtr strategy, CostPtrList c_list) in StrategyWithCost() argument
84 : strategy_ptr(std::move(strategy)), cost_list(std::move(c_list)) {} in StrategyWithCost()
/third_party/json/
DREADME.md642 std::list<bool> c_list {true, true, false, true};
643 json j_list(c_list);