/freebsd/lib/libifconfig/ |
H A D | libifconfig_sfp_tables.tpl.h | 33 for _, ent in ipairs(enums) do 81 for _, ent in ipairs(enums) do 103 for _, ent in ipairs(enums) do 118 for _, ent in ipairs(enums) do
|
H A D | libifconfig_sfp_tables_internal.tpl.h | 38 for _, ent in ipairs(enums) do 54 for _, ent in ipairs(enums) do
|
H A D | sfp.lua | 40 enums = {
|
H A D | libifconfig_sfp_tables.tpl.c | 47 for _, ent in ipairs(enums) do
|
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | _constants.py | 39 enums = dict(((b, a + offset) for a, b in enumerate(sequential)), **named) 40 return type('Enum', (), enums)
|
/freebsd/usr.sbin/bsnmpd/tools/libbsnmptools/ |
H A D | bsnmpimport.c | 516 struct enum_pairs *enums) in parse_enum() argument 519 if (enum_pair_insert(enums, val, nexttok) < 0) in parse_enum() 645 struct enum_pairs *enums = NULL; in snmp_import_table() local 651 if ((syntax = parse_type(snmptoolctx, &tok, &tc, &enums)) < 0) { in snmp_import_table() 652 enum_pairs_free(enums); in snmp_import_table() 658 if (snmp_syntax_insert(&(entry->index_list), enums, syntax, in snmp_import_table() 661 enum_pairs_free(enums); in snmp_import_table()
|
H A D | bsnmpmap.c | 473 snmp_syntax_insert(struct snmp_idxlist *headp, struct enum_pairs *enums, in snmp_syntax_insert() argument 489 idx->snmp_enum = enums; in snmp_syntax_insert()
|
H A D | bsnmptools.c | 1710 snmp_output_int(struct snmp_toolinfo *snmptoolctx, struct enum_pairs *enums, in snmp_output_int() argument 1719 if (enums != NULL && (string = enum_string_lookup(enums, int_val)) in snmp_output_int()
|
/freebsd/contrib/bsnmp/gensnmptree/ |
H A D | gensnmptree.c | 218 struct enums { struct 221 TAILQ_ENTRY(enums) link; argument 231 TAILQ_HEAD(, enums) enums; 735 TAILQ_INIT(&t->enums); in make_type() 749 struct enums *e; in parse_type() 784 TAILQ_INSERT_TAIL(&t->enums, e, link); in parse_type() 1456 const struct enums *e; in gen_enum_funcs() 1457 TAILQ_FOREACH(e, &t->enums, link) { in gen_enum_funcs() 1509 const struct enums *e; in gen_enum() 1519 TAILQ_FOREACH(e, &t->enums, link) { in gen_enum() [all …]
|
/freebsd/crypto/openssl/test/helpers/ |
H A D | ssl_test_ctx.c | 65 __owur static int parse_enum(const test_enum *enums, size_t num_enums, in parse_enum() argument 70 if (strcmp(enums[i].name, name) == 0) { in parse_enum() 71 *value = enums[i].value; in parse_enum() 78 static const char *enum_name(const test_enum *enums, size_t num_enums, in enum_name() argument 83 if (enums[i].value == value) { in enum_name() 84 return enums[i].name; in enum_name()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | Symbols.def | 18 // SYMBOL_RANGE(Id, First, Last) - for ranges of kind-enums,
|
H A D | Regions.def | 18 // REGION_RANGE(Id, First, Last) - for ranges of kind-enums,
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangAttrEmitter.cpp | 891 uniqueEnumsInOrder(const std::vector<StringRef> &enums) { in uniqueEnumsInOrder() argument 894 for (const auto &i : enums) { in uniqueEnumsInOrder() 904 std::vector<StringRef> values, enums, uniques; member in __anone44e3aff0211::EnumArgument 911 enums(Arg.getValueAsListOfStrings("Enums")), in EnumArgument() 912 uniques(uniqueEnumsInOrder(enums)), in EnumArgument() 1018 for (size_t I = 0; I < enums.size(); ++I) { in writeConversion() 1020 OS << fullType << "::" << enums[I] << ")\n"; in writeConversion() 1036 for (size_t I = 0; I < enums.size(); ++I) { in writeConversion() 1037 if (Uniques.insert(enums[I]).second) in writeConversion() 1038 OS << " case " << fullType << "::" << enums[I] << ": return \"" in writeConversion() [all …]
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | filesystem.cppm |
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DeclNodes.td | 29 def Enum : DeclNode<Tag, "enums">;
|
H A D | LangStandards.def | 19 /// \param FEATURES - The standard features as flags, these are enums from the
|
H A D | TokenKinds.def | 100 // These have meaning after a '#' at the start of a line. These define enums in 804 // These have meaning after an '@' in Objective-C mode. These define enums in
|
H A D | Attr.td | 289 list<string> enums, bit opt = 0, bit fake = 0, 297 list<string> Enums = enums; 307 list<string> values, list<string> enums, 315 list<string> Enums = enums;
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python.swig | 33 The different enums in the `lldb` module are described in :doc:`python_api_enums`.
|
/freebsd/crypto/heimdal/appl/push/ |
H A D | ChangeLog | 143 (pop_state): spell-check enums
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CodeViewRegisters.def | 28 // Some system headers define macros that conflict with our enums. Every
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVBuiltins.td | 157 // OpenCL extended instruction enums 169 // GLSL extended instruction enums 1625 // Classes definining various OpenCL enums.
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | PropertiesBase.td | 35 /// Property types that correspond to specific C++ enums.
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | OpenCLBuiltins.td | 970 // Functions that use memory_order and cl_mem_fence_flags enums are not 971 // declared here as the TableGen backend does not handle enums.
|
/freebsd/contrib/bmake/ |
H A D | ChangeLog | 1204 o replace enums with bitfields, this simplifies a lot of code. 2207 ordinary enums 2272 o more enums for flags 2286 o enum.[ch]: streamline, enums for use in flags and debug output 2433 use enums for flags
|