/freebsd/contrib/unbound/contrib/ |
H A D | libunbound.so.conf | 2 typedef ub_type = enum(TYPE_A=1,TYPE_NS=2,TYPE_SOA=6,TYPE_MX=15,TYPE_TXT=16,TYPE_AAAA=28,TYPE_DS=43… 3 typedef ub_class = enum(CLASS_IN=1,CLASS_CH=3,CLASS_NONE=254,CLASS_ANY=255); 4 typedef ub_rcode = enum(RCODE_NOERROR,RCODE_FORMERR,RCODE_SERVFAIL,RCODE_NXDOMAIN,RCODE_NOTIMPL,RCO… 5 typedef ub_havedata = enum(no_data, have_data); 6 typedef ub_nxdomain = enum(name_exists, nxdomain); 7 typedef ub_secure = enum(not_secure, secure); 8 typedef ub_bogus = enum(not_bogus, bogus);
|
/freebsd/sys/dev/dpaa2/ |
H A D | dpaa2_mc_if.m | 53 enum dpaa2_dev_type devtype) 63 enum dpaa2_dev_type devtype, uint32_t obj_id) 73 enum dpaa2_dev_type devtype) 83 enum dpaa2_dev_type devtype) 93 enum dpaa2_dev_type devtype) 120 enum dpaa2_dev_type devtype; 126 enum dpaa2_dev_type devtype; 133 enum dpaa2_dev_type devtype; 139 enum dpaa2_dev_type devtype; 145 enum dpaa2_dev_type devtype;
|
/freebsd/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | _constants.py | 43 def enum(*sequential, **named): function 55 zfs_key_location = enum( 61 zfs_keyformat = enum( 68 zio_encrypt = enum(
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ |
H A D | tst.enum.d.out | 1 enum simpson bart 2 enum simpson maggie 3 enum simpson snowball_ii
|
/freebsd/sys/powerpc/powerpc/ |
H A D | pic_if.m | 39 int code, enum intr_trigger *trig, enum intr_polarity *pol) 57 enum intr_trigger *trig; 58 enum intr_polarity *pol; 64 enum intr_trigger trig; 65 enum intr_polarity pol;
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-kthread.m4 | 28 dnl # 5.17: enum pid_type introduced as 4th arg 30 dnl # kernel_siginfo_t *info, enum pid_type *type) 34 dnl # enum pid_type *type) 72 enum pid_type *type = NULL; 83 enum pid_type *type = NULL;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | PropertiesBase.td | 36 // Gives the property a default enum value. 48 // Gives the property enum values. 49 class EnumValues<string enum> { 50 string EnumValues = enum;
|
/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | omp.h.var | 49 typedef enum omp_sched_t { 105 typedef enum omp_sync_hint_t { 162 typedef enum omp_interop_property { 177 typedef enum omp_interop_rc { 188 typedef enum omp_interop_fr { 281 typedef enum omp_proc_bind_t { 309 typedef enum omp_control_tool_result_t { 316 typedef enum omp_control_tool_t { 328 typedef enum { 339 typedef enum { [all …]
|
H A D | omp-tools.h.var | 206 typedef enum kmp_mutex_impl_t { 220 typedef enum ompt_callbacks_t { 261 typedef enum ompt_record_t { 267 typedef enum ompt_record_native_t { 272 typedef enum ompt_set_result_t { 287 typedef enum ompt_thread_t { 294 typedef enum ompt_scope_endpoint_t { 300 typedef enum ompt_dispatch_t { 308 typedef enum ompt_sync_region_t { 321 typedef enum ompt_target_data_op_t { [all …]
|
H A D | ompx.h.var | 47 enum { 55 enum { 164 enum { 170 enum {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | SearchableTable.td | 13 // 1. (Generic) Enums. By instantiating the GenericEnum class once, an enum with 30 // Define a record derived from this class to generate a generic enum. 32 // The name of the record is used as the type name of the C++ enum. 34 // Name of a TableGen class. The enum will have one entry for each record 39 // contains the name of enum entries. 45 // contains the numerical value of enum entries. 47 // If ValueField is not set, enum values will be assigned automatically, 83 // cannot be deduced automatically, such as enum fields. For example: 138 // of a larger enum-based space, e.g. extended data about a subset of 145 // Legacy table type with integrated enum.
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/ |
H A D | DirectiveBase.td | 29 // enum. 33 // enum. 36 // Make the enum values available in the namespace. This allows us to 54 // Information about values accepted by enum-like clauses 89 // Name of enum when there is a list of allowed clause values. 132 string name = n; // Name of the enum value in enum class Association. 156 // The name "AS_FromLeaves" is recognized by TableGen, and there is no enum 161 string name = n; // Name of the enum value in enum class Category.
|
/freebsd/sys/dev/ntb/ |
H A D | ntb_if.m | 34 enum ntb_speed { 43 enum ntb_width { 83 enum ntb_speed *speed; 84 enum ntb_width *width; 89 enum ntb_speed speed; 90 enum ntb_width width;
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | OptionsBase.td | 43 // - `EnumArg`: Sets the argument type to an enum and marks it as required. 54 // Default value: {} (No enum associated with this option) 57 // - `EnumArg`: Sets the argument type and assigns it a enum holding the valid 58 // values. The enum needs to be a variable in the including code. 90 // - `EnumArg`: Sets the argument type and assigns it a enum holding the valid 91 // values. The enum needs to be a variable in the including code. 96 // Use `OptionalEnumArg` for having an option enum argument.
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/cpu_model/ |
H A D | AArch64CPUFeatures.inc | 1 //===- AArch64CPUFeatures.inc - AArch64 CPU Features enum -------*- C++ -*-===// 9 // This file defines the CPUFeatures enum for AArch64 to facilitate better 24 enum CPUFeatures {
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TargetParser/ |
H A D | AArch64CPUFeatures.inc | 1 //===- AArch64CPUFeatures.inc - AArch64 CPU Features enum -------*- C++ -*-===// 9 // This file defines the CPUFeatures enum for AArch64 to facilitate better 24 enum CPUFeatures {
|
/freebsd/contrib/ntp/sntp/tests/ |
H A D | fileHandlingTest.h.in | 18 enum DirectoryType { 26 enum DirectoryType argument);
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/print/ |
H A D | Makefile | 16 tst.enum.d \ 17 tst.enum.d.out \
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVSymbolicOperands.td | 175 // Multiclass used to define Extesions enum values and at the same time 308 // Multiclass used to define Capabilities enum values and at the same time 485 // Multiclass used to define SourceLanguage enum values and at the same time 514 // Multiclass used to define AddressingModel enum values and at the same time 541 // Multiclass used to define ExecutionModel enum values and at the same time 579 // Multiclass used to define MemoryModel enum values and at the same time 606 // Multiclass used to define ExecutionMode enum values and at the same time 678 // Multiclass used to define StorageClass enum values and at the same time 724 // Multiclass used to define Dim enum values and at the same time 754 // Multiclass used to define SamplerAddressingMode enum values and at the same [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/pci/ |
H A D | fsl,pci.txt | 12 - fsl,pci-agent-force-enum : There is no value associated with this 19 fsl,pci-agent-force-enum;
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | lp8727_charger.txt | 13 - eoc-level: value of 'enum lp8727_eoc_level' (u8) 14 - charging-current: value of 'enum lp8727_ichg' (u8)
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticGroups.td | 52 def BitFieldEnumConversion : DiagGroup<"bitfield-enum-conversion">; 85 DiagGroup<"deprecated-enum-compare-conditional">; 86 def EnumCompareConditional : DiagGroup<"enum-compare-conditional", 88 def EnumCompareSwitch : DiagGroup<"enum-compare-switch">; 89 def DeprecatedEnumCompare : DiagGroup<"deprecated-enum-compare">; 90 def EnumCompare : DiagGroup<"enum-compare", [EnumCompareSwitch, 92 def DeprecatedAnonEnumEnumConversion : DiagGroup<"deprecated-anon-enum-enum-conversion">; 93 def DeprecatedEnumEnumConversion : DiagGroup<"deprecated-enum-enum-conversion">; 94 def DeprecatedEnumFloatConversion : DiagGroup<"deprecated-enum-float-conversion">; 95 def AnonEnumEnumConversion : DiagGroup<"anon-enum-enum-conversion", [all …]
|
/freebsd/lib/libomp/ |
H A D | kmp_i18n_id.inc | 4 enum kmp_i18n_id { 451 }; // enum kmp_i18n_id 453 typedef enum kmp_i18n_id kmp_i18n_id_t;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86GenRegisterBankInfo.def | 36 enum PartialMappingIdx { 80 enum ValueMappingIdx {
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | Regions.def | 14 // enum value IdKind for their kind. 20 // based on the kind-enum value.
|