Home
last modified time | relevance | path

Searched refs:Default (Results 1 – 25 of 835) sorted by relevance

12345678910>>...34

/freebsd-13.1/contrib/llvm-project/clang/lib/Basic/
H A DLangOptions.cpp20 #define LANGOPT(Name, Bits, Default, Description) Name = Default; in LangOptions() argument
21 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) set##Name(Default); in LangOptions() argument
26 #define LANGOPT(Name, Bits, Default, Description) in resetNonModularOptions() argument
27 #define BENIGN_LANGOPT(Name, Bits, Default, Description) Name = Default; in resetNonModularOptions() argument
28 #define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ in resetNonModularOptions() argument
29 Name = static_cast<unsigned>(Default); in resetNonModularOptions()
H A DCodeGenOptions.cpp15 #define CODEGENOPT(Name, Bits, Default) Name = Default; in CodeGenOptions() argument
16 #define ENUM_CODEGENOPT(Name, Type, Bits, Default) set##Name(Default); in CodeGenOptions() argument
H A DOpenMPKinds.cpp43 .Default(OMPC_SCHEDULE_unknown); in getOpenMPSimpleClauseType()
48 .Default(OMPC_DEPEND_unknown); in getOpenMPSimpleClauseType()
53 .Default(OMPC_LINEAR_unknown); in getOpenMPSimpleClauseType()
61 .Default(OMPC_MAP_unknown); in getOpenMPSimpleClauseType()
89 .Default(OMPC_DEFAULTMAP_unknown); in getOpenMPSimpleClauseType()
100 .Default(OMPC_DEVICE_TYPE_unknown); in getOpenMPSimpleClauseType()
105 .Default(OMPC_LASTPRIVATE_unknown); in getOpenMPSimpleClauseType()
110 .Default(OMPC_ORDER_unknown); in getOpenMPSimpleClauseType()
115 .Default(OMPC_DEPEND_unknown); in getOpenMPSimpleClauseType()
120 .Default(OMPC_DEVICE_unknown); in getOpenMPSimpleClauseType()
[all …]
/freebsd-13.1/contrib/llvm-project/lld/Common/
H A DArgs.cpp26 return CodeGenOpt::Default; in getCGOptLevel()
30 int64_t Default, unsigned base) { in getInteger() argument
33 return Default; in getInteger()
48 int64_t Default) { in getInteger() argument
49 return ::getInteger(args, key, Default, 10); in getInteger()
53 int64_t Default) { in getHex() argument
54 return ::getInteger(args, key, Default, 16); in getHex()
65 StringRef key, uint64_t Default) { in getZOptionValue() argument
69 uint64_t result = Default; in getZOptionValue()
75 return Default; in getZOptionValue()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticOptions.h91 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits; argument
92 #define ENUM_DIAGOPT(Name, Type, Bits, Default) argument
98 #define DIAGOPT(Name, Bits, Default) argument
99 #define ENUM_DIAGOPT(Name, Type, Bits, Default) unsigned Name : Bits; argument
127 #define DIAGOPT(Name, Bits, Default) argument
128 #define ENUM_DIAGOPT(Name, Type, Bits, Default) \ argument
134 #define DIAGOPT(Name, Bits, Default) Name = Default; in DiagnosticOptions() argument
135 #define ENUM_DIAGOPT(Name, Type, Bits, Default) set##Name(Default); in DiagnosticOptions() argument
H A DDiagnosticOptions.def23 # define VALUE_DIAGOPT(Name, Bits, Default) \
24 DIAGOPT(Name, Bits, Default)
28 # define ENUM_DIAGOPT(Name, Type, Bits, Default) \
29 DIAGOPT(Name, Bits, Default)
33 # define SEMANTIC_DIAGOPT(Name, Bits, Default) DIAGOPT(Name, Bits, Default)
37 # define SEMANTIC_VALUE_DIAGOPT(Name, Bits, Default) \
38 VALUE_DIAGOPT(Name, Bits, Default)
42 # define SEMANTIC_ENUM_DIAGOPT(Name, Type, Bits, Default) \
43 ENUM_DIAGOPT(Name, Type, Bits, Default)
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h182 return Default;
192 const char *Default) { in toString() argument
193 return toString(V).getValueOr(Default); in toString()
214 uint64_t Default) { in toUnsigned() argument
215 return toUnsigned(V).getValueOr(Default); in toUnsigned()
236 uint64_t Default) { in toReference() argument
237 return toReference(V).getValueOr(Default); in toReference()
258 return toSigned(V).getValueOr(Default); in toSigned()
286 return toAddress(V).getValueOr(Default); in toAddress()
307 uint64_t Default) { in toSectionOffset() argument
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLinkAllCodegenComponents.h41 llvm::CodeGenOpt::Default); in ForceCodegenLinking()
43 llvm::CodeGenOpt::Default); in ForceCodegenLinking()
45 llvm::CodeGenOpt::Default); in ForceCodegenLinking()
46 (void) llvm::createFastDAGScheduler(nullptr, llvm::CodeGenOpt::Default); in ForceCodegenLinking()
47 (void) llvm::createDefaultScheduler(nullptr, llvm::CodeGenOpt::Default); in ForceCodegenLinking()
48 (void) llvm::createVLIWDAGScheduler(nullptr, llvm::CodeGenOpt::Default); in ForceCodegenLinking()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DOptionUtils.cpp20 IntTy Default, DiagnosticsEngine *Diags, in getLastArgIntValueImpl() argument
22 IntTy Res = Default; in getLastArgIntValueImpl()
36 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default, in getLastArgIntValue() argument
38 return getLastArgIntValueImpl<int>(Args, Id, Default, Diags, Base); in getLastArgIntValue()
42 uint64_t Default, DiagnosticsEngine *Diags, in getLastArgUInt64Value() argument
44 return getLastArgIntValueImpl<uint64_t>(Args, Id, Default, Diags, Base); in getLastArgUInt64Value()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptionUtils.h34 llvm::opt::OptSpecifier Id, int Default,
38 llvm::opt::OptSpecifier Id, int Default,
40 return getLastArgIntValue(Args, Id, Default, &Diags, Base);
44 llvm::opt::OptSpecifier Id, uint64_t Default,
50 uint64_t Default,
53 return getLastArgUInt64Value(Args, Id, Default, &Diags, Base);
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.cpp53 Printf("%s", d.Default()); in Print()
110 Printf("%s", d.Default()); in Print()
130 Printf("%s", d.Default()); in Print()
149 Printf("%s", d.Default()); in Print()
162 Printf("%s", d.Default()); in Print()
175 Printf("%s", d.Default()); in Print()
188 Printf("%s", d.Default()); in Print()
202 Printf("%s", d.Default()); in Print()
215 Printf("%s", d.Default()); in Print()
235 Printf("%s", d.Default()); in Print()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_report.cpp48 d.Default()); in DescribeStackOrigin()
67 d.Default()); in DescribeOrigin()
79 d.Origin(), d.Default()); in DescribeOrigin()
83 d.Origin(), d.Default()); in DescribeOrigin()
87 d.Default()); in DescribeOrigin()
91 d.Default()); in DescribeOrigin()
106 Printf("%s", d.Default()); in ReportUMR()
146 Printf("%s", d.Default()); in ReportAtExitStatistics()
205 Printf("%s", d.Default()); in DescribeMemoryRange()
267 d.Default()); in ReportUMRInsideAddressRange()
/freebsd-13.1/sys/contrib/device-tree/Bindings/sound/
H A Dwm8962.txt16 - mic-cfg : Default register value for R48 (Additional Control 4).
32 0x0000 /* 0:Default */
33 0x0000 /* 1:Default */
35 0x0000 /* 3:Default */
37 0x0000 /* 5:Default */
H A Dmax9892x.txt15 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0
16 MAX98927 slot range : 0 ~ 15, Default : 0
19 MAX98925/MAX98926 slot range : 0 ~ 30, Default : 0
20 MAX98927 slot range : 0 ~ 15, Default : 0
29 Range : 0 (off), 1 (on), Default : 0
H A Dcs35l32.txt24 2 = (Default) Boost voltage fixed in Bypass Mode (VBST = VP).
31 2 = (Default) left/right channels VMON[15:0], IMON [15:0].
36 0 = (Default) One IC.
42 2 = 3.3V (Default)
49 3 = 3.4V (Default)
H A Dmax98373.txt16 slot range : 0 ~ 15, Default : 0
19 slot range : 0 ~ 15, Default : 0
22 slot range : 0 ~ 15, Default : 0
29 Boolean, define to enable the interleave mode, Default : false
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetOptions.h29 Default, // Target-specific (either soft or hard depending on triple, etc). enumerator
78 Default, // Default means not specified enumerator
98 Default, ///< No specific tuning requested. enumerator
337 FloatABI::ABIType FloatABIType = FloatABI::Default;
362 EABI EABIVersion = EABI::Default;
365 DebuggerKind DebuggerTuning = DebuggerKind::Default;
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatProviders.h93 size_t Default) { in consumeNumHexDigits() argument
94 Str.consumeInteger(10, Default); in consumeNumHexDigits()
96 Default += 2; in consumeNumHexDigits()
97 return Default; in consumeNumHexDigits()
271 .Default(B ? "1" : "0");
361 StringRef Default) {
363 return Default;
365 return Default;
369 return Default;
378 return Default;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp158 BasicBlock *Default) { in NewLeafBlock() argument
224 BasicBlock *Default, in SwitchConvert() argument
241 Default); in SwitchConvert()
351 BasicBlock* Default = SI->getDefaultDest(); in ProcessSwitchInst() local
370 BranchInst::Create(Default, OrigBlock); in ProcessSwitchInst()
372 FixPhis(Default, OrigBlock, OrigBlock); in ProcessSwitchInst()
471 Default->removePredecessor(OrigBlock); in ProcessSwitchInst()
476 Default = PopSucc; in ProcessSwitchInst()
482 BranchInst::Create(Default, OrigBlock); in ProcessSwitchInst()
501 BranchInst::Create(Default, NewDefault); in ProcessSwitchInst()
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/devfreq/
H A Drk3399_dmc.txt79 the DRAM side driver strength in ohms. Default
89 Default value is PHY_DRV_ODT_40.
96 the PHY side ODT strength. Default value is
106 the DRAM side driver strength in ohms. Default
116 Default value is PHY_DRV_ODT_40.
120 driver strength. Default value is
139 Default value is LP4_DQ_ODT_40ohm.
143 Default value is LP4_CA_ODT_40ohm.
147 line) driver strength. Default value is
152 strength. Default value is PHY_DRV_ODT_80.
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/phy/
H A Dapm-xgene-phy.txt15 Default is "ok".
21 127 in unit of one bit period. Default is 10.
26 supported link speed on the host. Default is 0.
30 between 0 to 31 in unit of dB. Default is 3.
34 Default is 199500 uV.
38 uV. Default is 0.
42 Default is 0x0.
45 between 0 to 0x1f in unit of 18.2mV. Default is 0xf.
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctionsWindows.cpp34 #define EXTERNAL_FUNC(Name, Default) \ argument
36 Name) "=" WIN_SYM_PREFIX STRINGIFY(Default)))
42 #define EXTERNAL_FUNC(Name, Default) \ argument
43 __attribute__((weak, alias(STRINGIFY(Default))))
/freebsd-13.1/sys/contrib/device-tree/Bindings/media/i2c/
H A Dtvp7002.txt10 - hsync-active: HSYNC Polarity configuration for the bus. Default value when
13 - vsync-active: VSYNC Polarity configuration for the bus. Default value when
16 - pclk-sample: Clock polarity of the bus. Default value when this property is
21 0 = Normal Operation (Active Low, Default)
27 0 = Normal Operation (Active Low, Default)
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCAsmInfo.cpp22 Default = -1, enumerator
28 "aarch64-neon-syntax", cl::init(Default),
36 AssemblerDialect = AsmWriterVariant == Default ? Apple : AsmWriterVariant; in AArch64MCAsmInfoDarwin()
74 AssemblerDialect = AsmWriterVariant == Default ? Generic : AsmWriterVariant; in AArch64MCAsmInfoELF()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DOptionsBase.td6 // Default value: LLDB_OPT_SET_ALL (Option allowed in all groups)
17 // Default value: false (Not required)
23 // Default value: not available (has to be defined in Option)
31 // Default value: not available (has to be defined in Option)
39 // Default value: OptionParser::eNoArgument (No argument allowed)
48 // Default value: 0 (No validator for option)
54 // Default value: {} (No enum associated with this option)
65 // Default value: CommandCompletions::eNoCompletion (no tab completion)
79 // Default value: eArgTypeNone
99 // Default value: ""

12345678910>>...34