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

12

/freebsd-10.1-release/usr.sbin/setfmac/
H A Dsetfmac.c85 struct label_specs *specs; local
95 specs = new_specs();
106 add_specs(specs, optarg, 0);
115 add_specs(specs, optarg, 1);
133 add_setfmac_specs(specs, *argv);
137 if (argc == 0 || specs_empty(specs))
157 if (apply_specs(specs, ftsent, hflag, vflag)) {
228 add_specs(struct label_specs *specs, const char *file, int is_sebsd) argument
278 STAILQ_INSERT_TAIL(&specs->head, spec, link);
282 add_setfmac_specs(struct label_specs *specs, cha argument
384 specs_empty(struct label_specs *specs) argument
391 apply_specs(struct label_specs *specs, FTSENT *ftsent, int hflag, int vflag) argument
491 struct label_specs *specs; local
[all...]
/freebsd-10.1-release/contrib/gcc/
H A Dc-decl.c3092 quals_from_declspecs (const struct c_declspecs *specs)
3094 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3095 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3096 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3097 gcc_assert (!specs->type
3098 && !specs->decl_attr
3099 && specs->typespec_word == cts_none
3100 && specs->storage_class == csc_none
3101 && !specs->typedef_p
3102 && !specs
3076 quals_from_declspecs(const struct c_declspecs *specs) argument
3201 grokblockdecl(struct c_declspecs *specs, struct c_declarator *declarator) argument
7667 build_c_parm(struct c_declspecs *specs, tree attrs, struct c_declarator *declarator) argument
8316 declspecs_add_qual(struct c_declspecs *specs, tree qual) argument
8351 declspecs_add_type(struct c_declspecs *specs, struct c_typespec spec) argument
8736 declspecs_add_scspec(struct c_declspecs *specs, tree scspec) argument
8819 declspecs_add_attrs(struct c_declspecs *specs, tree attrs) argument
8833 finish_declspecs(struct c_declspecs *specs) argument
[all...]
H A Dc-parser.c1346 struct c_declspecs *specs;
1351 specs = build_null_declspecs ();
1352 c_parser_declspecs (parser, specs, true, true, start_attr_ok);
1358 if (nested && !specs->declspecs_seen_p)
1364 finish_declspecs (specs);
1368 shadow_tag (specs);
1371 shadow_tag_warned (specs, 1);
1382 if (!specs->declspecs_seen_p || specs->attrs == NULL_TREE
1383 || specs
1344 struct c_declspecs *specs; local
1685 c_parser_declspecs(c_parser *parser, struct c_declspecs *specs, bool scspec_ok, bool typespec_ok, bool start_attr_ok) argument
2153 struct c_declspecs *specs; local
2873 struct c_declspecs *specs; local
3157 struct c_declspecs *specs = build_null_declspecs (); local
9171 struct c_declspecs *specs = build_null_declspecs (); local
[all...]
H A Dc-tree.h363 struct c_declspecs *specs; member in struct:c_type_name
371 struct c_declspecs *specs; member in struct:c_parm
H A Dgcc.c47 1. Each command-line option is specified in the specs file. The
56 3. Look in the "specs" file to determine which program or option
72 6. Compile and test. Make sure that your new specs file is being
241 When -b is used, the value comes from the `specs' file. */
371 In addition, the specs can contain %-sequences to substitute variable text
436 %o is for use in the specs for running the linker.
526 %(Spec) processes a specification defined in a specs file as *Spec:
559 /* Define the macros used for specs %a, %l, %L, %S, %C, %1. */
602 /* mudflap specs */
773 /* Standard options to cpp, cc1, and as, to reduce duplication in specs
1604 static struct spec_list *specs = (struct spec_list *) 0; variable in typeref:struct:spec_list
1981 char *specs; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/API/
H A DSBModuleSpec.cpp175 SBModuleSpecList specs; local
178 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_ap);
179 return specs;
219 SBModuleSpecList specs; local
220 m_opaque_ap->FindMatchingModuleSpecs(*match_spec.m_opaque_ap, *specs.m_opaque_ap);
221 return specs;
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Host/common/
H A DSymbols.cpp95 lldb_private::ModuleSpecList specs; local
96 const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, 0, specs);
101 if (specs.GetModuleSpecAtIndex (0, mspec))
/freebsd-10.1-release/lib/libc/stdio/
H A Dxprintf.c654 register_printf_render_std(const char *specs) argument
657 for (; *specs != '\0'; specs++) {
658 switch (*specs) {
660 register_printf_render(*specs,
665 register_printf_render(*specs,
670 register_printf_render(*specs,
675 register_printf_render(*specs,
680 register_printf_render(*specs,
/freebsd-10.1-release/contrib/binutils/gas/config/
H A Dtc-ia64.c8359 specify_resource (dep, idesc, type, specs, note, path)
8363 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
8413 specs[count] = tmpl;
8414 specs[count++].index = regno;
8422 specs[count] = tmpl;
8423 specs[count++].index = i;
8439 specs[count++] = tmpl;
8451 specs[count] = tmpl;
8458 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
8459 specs[coun
10174 struct rsrc specs[MAX_SPECS]; local
10624 struct rsrc specs[MAX_SPECS]; local
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp190 ModuleSpecList &specs)
206 specs);
217 lldb_private::ModuleSpecList &specs)
219 const size_t initial_count = specs.GetSize();
225 if (callback (file, data_sp, data_offset, file_offset, file_size, specs) > 0)
226 return specs.GetSize() - initial_count;
232 if (callback (file, data_sp, data_offset, file_offset, file_size, specs) > 0)
233 return specs.GetSize() - initial_count;
187 GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, ModuleSpecList &specs) argument
212 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) argument
/freebsd-10.1-release/crypto/openssl/util/
H A Dselftest.pl55 $cversion =~ s/Reading specs.*\n//;
/freebsd-10.1-release/include/
H A Dprintf.h126 int register_printf_render_std(const char *specs);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp531 lldb_private::ModuleSpecList &specs)
541 const size_t initial_count = specs.GetSize();
567 specs))
569 ModuleSpec &spec = specs.GetModuleSpecRefAtIndex (specs.GetSize() - 1);
580 const size_t end_count = specs.GetSize();
589 if (specs.GetModuleSpecAtIndex(i, module_spec))
526 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) argument
H A DObjectContainerBSDArchive.h55 lldb_private::ModuleSpecList &specs);
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DObjectFile.h186 ModuleSpecList &specs);
194 lldb_private::ModuleSpecList &specs);
/freebsd-10.1-release/contrib/gcc/cp/
H A Ddecl.c3674 int saw_friend = declspecs->specs[(int)ds_friend] != 0;
3675 int saw_typedef = declspecs->specs[(int)ds_typedef] != 0;
3738 if (declspecs->specs[(int)ds_inline]
3739 || declspecs->specs[(int)ds_virtual])
3741 declspecs->specs[(int)ds_inline]
3747 else if (declspecs->specs[(int)ds_explicit])
3752 else if (declspecs->specs[(int)ds_const]
3753 || declspecs->specs[(int)ds_volatile]
3754 || declspecs->specs[(int)ds_restrict]
3755 || declspecs->specs[(in
[all...]
H A Dpt.c7211 tree specs;
7214 specs = TYPE_RAISES_EXCEPTIONS (fntype);
7216 if (specs)
7218 if (! TREE_VALUE (specs))
7219 new_specs = specs;
7221 while (specs)
7224 spec = tsubst (TREE_VALUE (specs), args, complain, in_decl);
7228 specs = TREE_CHAIN (specs);
7648 tree specs;
7210 tree specs; local
7647 tree specs; local
11938 tree specs; local
[all...]
H A Dparser.c2084 unsigned count = decl_specs->specs[(int)ds];
8010 ++decl_specs->specs[(int) ds_friend];
8029 ++decl_specs->specs[(int) ds_typedef];
8063 ++decl_specs->specs[(int) ds_thread];
8078 (parser, decl_specs->specs[(int) ds_friend] != 0)));
8157 if (decl_specs->specs[(int) ds_friend] != 0
8215 ++decl_specs->specs[(int) ds_inline];
8225 ++decl_specs->specs[(int) ds_virtual];
8230 ++decl_specs->specs[(int) ds_explicit];
10169 decl_specs && decl_specs->specs[(in
[all...]
H A Dcp-tree.h3701 unsigned specs[(int) ds_last];
3692 unsigned specs[(int) ds_last]; member in struct:cp_decl_specifier_seq
/freebsd-10.1-release/contrib/byacc/test/
H A Dbtyacc_demo.y210 extern Type * type_combine(Type *specs, Type *spec);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h96 lldb_private::ModuleSpecList &specs);
H A DObjectFileELF.cpp350 lldb_private::ModuleSpecList &specs)
352 const size_t initial_count = specs.GetSize();
410 specs.Append(spec);
416 return specs.GetSize() - initial_count;
345 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t length, lldb_private::ModuleSpecList &specs) argument
/freebsd-10.1-release/gnu/usr.bin/cc/cc_tools/
H A DMakefile338 specs.h:
339 echo '#include "cp/lang-specs.h"' > ${.TARGET}
341 GENSRCS+= specs.h
/freebsd-10.1-release/contrib/byacc/test/btyacc/
H A Dbtyacc_demo.tab.c620 extern Type * type_combine(Type *specs, Type *spec);
/freebsd-10.1-release/contrib/ipfilter/
H A DHISTORY387 fix handling of map NAT rules with "from/to" host specs

Completed in 353 milliseconds

12