Home
last modified time | relevance | path

Searched refs:case_list (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/usr.bin/rpcgen/
Drpc_parse.h129 struct case_list { struct
133 struct case_list *next; argument
135 typedef struct case_list case_list; typedef
139 case_list *cases;
Drpc_parse.c292 case_list *cases; in def_union()
293 case_list **tailp; in def_union()
308 cases = XALLOC(case_list); in def_union()
319 cases = XALLOC(case_list); in def_union()
Drpc_hout.c209 case_list *l; in puniondef()
Drpc_cout.c319 case_list *cl; in emit_union()
/freebsd-12-stable/contrib/gcc/
Dstmt.c2341 struct case_node *case_list = 0; in expand_case() local
2382 case_list = add_case_node (case_list, index_type, low, high, in expand_case()
2395 for (n = case_list; n; n = n->right) in expand_case()
2462 case_list, default_label); in expand_case()
2525 && estimate_case_costs (case_list)); in expand_case()
2526 balance_case_nodes (&case_list, NULL); in expand_case()
2527 emit_case_nodes (index, case_list, default_label, index_type); in expand_case()
2559 for (n = case_list; n; n = n->right) in expand_case()
/freebsd-12-stable/contrib/googletest/googletest/src/
Dgtest.cc378 static int SumOverTestCaseList(const std::vector<TestCase*>& case_list, in SumOverTestCaseList() argument
381 for (size_t i = 0; i < case_list.size(); i++) { in SumOverTestCaseList()
382 sum += (case_list[i]->*method)(); in SumOverTestCaseList()