Searched refs:typelist (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dcontainer_base_dispatch.hpp50 #include <ext/typelist.h>
122 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 0> at0;
124 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 1> at1;
136 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 0> at0;
138 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 1> at1;
149 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 1> at1;
161 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 1> at1;
172 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 0> at0;
174 typedef __gnu_cxx::typelist::at_index<Policy_Tl, 1> at1;
186 typedef __gnu_cxx::typelist
[all...]
/freebsd-9.3-release/usr.sbin/ngctl/
H A Dtypes.c62 struct typelist *tlist;
86 tlist = (struct typelist *) resp->data;
/freebsd-9.3-release/sbin/umount/
H A Dumount.c89 char **typelist = NULL; local
113 if (typelist != NULL)
115 typelist = makevfslist(optarg);
135 if ((nfshost != NULL) && (typelist == NULL))
136 typelist = makevfslist("nfs");
155 if (checkvfsname(sfs->f_fstypename, typelist))
167 errs = umountall(typelist);
171 if (checkname(*argv, typelist) != 0)
179 umountall(char **typelist) argument
208 if (checkvfsname(fs->fs_vfstype, typelist))
231 checkname(char *mntname, char **typelist) argument
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/ext/
H A Dtypelist.h41 * @file typelist.h
53 namespace typelist namespace
117 } // namespace typelist
124 namespace typelist namespace
309 } // namespace typelist
313 #define _GLIBCXX_TYPELIST_CHAIN1(X0) __gnu_cxx::typelist::chain<X0, __gnu_cxx::typelist::null_type>
314 #define _GLIBCXX_TYPELIST_CHAIN2(X0, X1) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN1(X1) >
315 #define _GLIBCXX_TYPELIST_CHAIN3(X0, X1, X2) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN2(X1, X2) >
316 #define _GLIBCXX_TYPELIST_CHAIN4(X0, X1, X2, X3) __gnu_cxx::typelist
331 namespace typelist namespace
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/precompiled/
H A Dextc++.h57 #include <ext/typelist.h>
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/
H A Dassoc_container.hpp50 #include <ext/typelist.h>
121 container_base<Key, Mapped, Tag, typename __gnu_cxx::typelist::append< \
122 typename __gnu_cxx::typelist::create4<Hash_Fn, Eq_Fn, Resize_Policy, detail::integral_constant<int, Store_Hash> >::type, Policy_TL>::type, Allocator>
159 typename __gnu_cxx::typelist::create1<Comb_Hash_Fn>::type, Allocator>
296 typename __gnu_cxx::typelist::create2<Comb_Probe_Fn, Probe_Fn>::type, Allocator>
492 typename __gnu_cxx::typelist::create2<Cmp_Fn, PB_DS_TREE_NODE_AND_IT_TRAITS_C_DEC >::type, Allocator>
563 typename __gnu_cxx::typelist::create2<E_Access_Traits, PB_DS_TRIE_NODE_AND_ITS_TRAITS >::type, Allocator>
636 typename __gnu_cxx::typelist::create2<Eq_Fn, Update_Policy>::type, Allocator>
/freebsd-9.3-release/contrib/ncurses/progs/
H A Dtoe.c156 typelist(int eargc, char *eargv[], function
446 code = typelist(argc - optind, argv + optind, header, deschook);
484 code = typelist((int) count, eargv, header, deschook);
506 code = typelist(count, eargv, header, deschook);
/freebsd-9.3-release/contrib/mtree/
H A Dmisc.c97 static KEY typelist[] = { variable
148 k = (KEY *)bsearch(&tmp, typelist, sizeof(typelist) / sizeof(KEY),
/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A Dsnmp_netgraph.c1133 struct typelist *typelist; local
1148 typelist = (struct typelist *)(void *)resp->data;
1150 for (u = 0; u < typelist->numtypes; u++) {
1155 strcpy(t->name, typelist->typeinfo[u].type_name);
/freebsd-9.3-release/sys/netgraph/
H A Dng_message.h293 struct typelist { struct
H A Dng_base.c428 and struct typelist. */
456 /* Array type for a variable length array of struct typelist */
476 DEFINE_PARSE_STRUCT_TYPE(typelist, TYPELIST, (&ng_generic_typeinfoarray_type));
2738 struct typelist *tl;
2755 tl = (struct typelist *) resp->data;
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dencrypt.c483 encrypt_support(unsigned char *typelist, int cnt) argument
494 type = *typelist++;
/freebsd-9.3-release/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.c510 encrypt_support(unsigned char *typelist, int cnt) argument
521 type = *typelist++;
/freebsd-9.3-release/contrib/gcc/
H A Dtarget.h721 const char *(*invalid_arg_for_unprototyped_fn) (tree typelist,
H A Dtarghooks.c356 tree typelist ATTRIBUTE_UNUSED,
H A Dc-common.c5628 check_function_sentinel (tree attrs, tree params, tree typelist)
5635 while (typelist && params)
5637 typelist = TREE_CHAIN (typelist);
5641 if (typelist || !params)
5881 check_function_arguments (tree attrs, tree params, tree typelist)
5895 check_function_sentinel (attrs, params, typelist);
5611 check_function_sentinel(tree attrs, tree params, tree typelist) argument
5863 check_function_arguments(tree attrs, tree params, tree typelist) argument
H A Dc-typeck.c2408 convert_arguments (tree typelist, tree values, tree function, tree fundecl)
2427 for (valtail = values, typetail = typelist, parmnum = 0;
2607 targetm.calls.invalid_arg_for_unprototyped_fn (typelist, fundecl, val)))
2396 convert_arguments(tree typelist, tree values, tree function, tree fundecl) argument
/freebsd-9.3-release/sys/dev/fe/
H A Dif_fe_isa.c217 static struct subtype const typelist [] = { local
264 for (type = typelist; type->mcode != 0; type++) {
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dzoneconf.c225 const cfg_obj_t *typelist = cfg_tuple_get(stmt, "types"); local
312 n = ns_config_listcount(typelist);
324 for (element2 = cfg_list_first(typelist);
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dipf_y.y1069 | seticmptype lstart typelist lend { yyresetdict(); }
1088 typelist: label
1091 | typelist lmore icmptype
/freebsd-9.3-release/sys/kern/
H A Dsubr_witness.c1735 struct witness_list *typelist; local
1745 typelist = &w_spin;
1747 typelist = &w_sleep;
/freebsd-9.3-release/gnu/lib/libstdc++/
H A DMakefile148 rb_tree rope ropeimpl.h slist throw_allocator.h typelist.h \
/freebsd-9.3-release/contrib/bind9/lib/bind9/
H A Dcheck.c1198 const cfg_obj_t *typelist = cfg_tuple_get(stmt, "types"); local
1235 for (element2 = cfg_list_first(typelist);
/freebsd-9.3-release/contrib/libstdc++/include/
H A DMakefile.am546 ${ext_srcdir}/typelist.h \
/freebsd-9.3-release/contrib/gcc/cp/
H A Dtypeck.c2781 convert_arguments (tree typelist, tree values, tree fndecl, int flags)
2805 for (valtail = values, typetail = typelist;
2774 convert_arguments(tree typelist, tree values, tree fndecl, int flags) argument

Completed in 243 milliseconds

12