Searched refs:C11 (Results 1 - 22 of 22) sorted by relevance

/freebsd-12-stable/lib/msun/ld128/
H A Dk_cosl.c48 C11 = 0.1601061435794535138244346256065192782581e-23; variable
57 z*(C8+z*(C9+z*(C10+z*C11))))))))));
H A Ds_expl.c152 C11 = 2.50521083854417203619031960151253944e-8L, variable
249 x * (C11 + x * (C12 + x * (C13 +
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandard.h44 C11 = (1 << 2), enumerator in enum:clang::LangFeatures
90 /// isC11 - Language is a superset of C11.
91 bool isC11() const { return Flags & C11; }
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DPrettyPrinter.h57 Restrict(LO.C99), Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11),
/freebsd-12-stable/lib/msun/src/
H A Dk_sincosl.h99 C11 = 0.1601061435794535138244346256065192782581e-23, variable
128 z * (C7 + z * (C8 + z * (C9 + z * (C10 + z * C11))))))))));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp123 SystemZ::C8, SystemZ::C9, SystemZ::C10, SystemZ::C11,
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp624 g_options.C11 = true;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp141 if (LangOpts.C11 && (Flags & KEYC11)) return KS_Enabled;
H A DModule.cpp117 .Case("c11", LangOpts.C11)
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp743 // is deprecated since C11.
759 if (!BR.getContext().getLangOpts().C11)
809 "in the C11 standard. Replace with analogous functions that "
811 << Name << "_s' in case of C11";
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp129 SP::C8, SP::C9, SP::C10, SP::C11,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp1436 } else if (LangOpts.CPlusPlus11 || LangOpts.C11) {
1455 } else if (LangOpts.CPlusPlus11 || LangOpts.C11) {
3315 case 'u': // Identifier (uber) or C11/C++11 UTF-8 or UTF-16 string literal
3319 if (LangOpts.CPlusPlus11 || LangOpts.C11) {
3373 case 'U': // Identifier (Uber) or C11/C++11 UTF-32 string literal
3377 if (LangOpts.CPlusPlus11 || LangOpts.C11) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp738 /// [C11] '_Alignof' '(' type-name ')'
758 /// [C11] generic-selection
1261 case tok::kw__Generic: // primary-expression: generic-selection [C11 6.5.1]
1364 if (!getLangOpts().C11)
2092 /// [C11] '_Alignof' '(' type-name ')'
2192 /// [C11] '_Alignof' '(' type-name ')'
2945 /// ParseGenericSelectionExpression - Parse a C11 generic-selection
2946 /// [C11 6.5.1.1].
2960 if (!getLangOpts().C11)
2970 // C11 6.
[all...]
H A DParseDecl.cpp1741 /// [C++11/C11] static_assert-declaration
2592 // implicit int as an extension in C99 and C11.
2823 /// [C11] type-id
2824 /// [C11] constant-expression
2849 /// [C11] '_Alignas' '(' type-id ')'
2850 /// [C11] '_Alignas' '(' constant-expression ')'
3009 /// [C11] alignment-specifier declaration-specifiers[opt]
3022 /// [C11] '_Thread_local'
3660 if (!getLangOpts().C11)
3716 if (!getLangOpts().C11)
[all...]
H A DParseDeclCXX.cpp855 /// ParseStaticAssertDeclaration - Parse C++0x or C11 static_assert-declaration.
860 /// [C11] static_assert-declaration:
867 if (Tok.is(tok::kw__Static_assert) && !getLangOpts().C11)
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DInitPreprocessor.cpp371 else if (LangOpts.C11)
408 // In C11 these are environment macros. In C++11 they are only defined
617 // Define macros for the C11 / C++11 memory orderings
H A DCompilerInvocation.cpp2283 Opts.C11 = Std.isC11();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp183 Sparc::C8, Sparc::C9, Sparc::C10, Sparc::C11,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp2547 if (SemaRef.getLangOpts().C11) {
4946 if (LangOpts.C11 && !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
H A DSemaLookup.cpp4766 if (SemaRef.getLangOpts().C11) {
H A DSemaDecl.cpp2373 // Modules always permit redefinition of typedefs, as does C11.
2374 if (getLangOpts().Modules || getLangOpts().C11)
2423 /// special semantics of C11's _Alignas specifier and C++11's alignas attribute.
2469 // C++11 [dcl.align]p6 and C11 6.7.5/7 both come close to saying this, but
2501 // C11 6.7.5/7:
2703 // C11 6.7.5/7:
3809 // and argument types. Per C11 6.2.7/4, only update the type if the old decl
3952 // C11 6.2.7p4:
4533 // C11 6.7.2.1p2:
4833 /// (C++ [class.union]) and a C11 featur
[all...]
H A DSemaInit.cpp41 if (Context.getLangOpts().CPlusPlus || Context.getLangOpts().C11) {
101 // C99 6.7.8p15 (with correction from DR343), or C11 6.7.9p15:

Completed in 502 milliseconds