/external/clang/include/clang/Frontend/ |
D | LangStandards.def | 73 // C11 modes 76 LineComment | C99 | C11 | Digraphs | HexFloat) 79 LineComment | C99 | C11 | Digraphs | HexFloat) 82 LineComment | C99 | C11 | Digraphs | HexFloat) 85 LineComment | C99 | C11 | Digraphs | HexFloat) 89 LineComment | C99 | C11 | Digraphs | GNUMode | HexFloat) 92 LineComment | C99 | C11 | Digraphs | GNUMode | HexFloat)
|
D | LangStandard.h | 24 C11 = (1 << 3), enumerator 68 bool isC11() const { return Flags & frontend::C11; } in isC11()
|
/external/llvm/test/CodeGen/X86/ |
D | combine-multiplies.ll | 97 ; CHECK: movdqa .LCPI1_0, [[C11:%xmm[0-9]]] 98 ; CHECK-NEXT: paddd %xmm0, [[C11]] 111 ; CHECK-NEXT: [[C11]], x 135 ; CHECK: movdqa .LCPI2_0, [[C11:%xmm[0-9]]] 136 ; CHECK-NEXT: paddd %xmm0, [[C11]] 150 ; CHECK-NEXT: [[C11]], x
|
/external/clang/test/CodeGenCXX/ |
D | lto-visibility-inference.cpp | 62 struct C11 { struct 105 C11 *c11; in f()
|
/external/clang/test/Sema/ |
D | thread-specifier.c | 33 #elif defined(C11) 43 #elif defined(C11) in f()
|
/external/boringssl/src/util/ |
D | BUILD.toplevel | 79 # For C targets only (not C++), compile with C11 support. 87 # For C targets only (not C++), compile with C11 support.
|
/external/libyuv/files/util/ |
D | ssim.cc | 97 static const double C11 = (0.01 * 0.01) * (255 * 255); in FinalizeSSIM() local 100 const double l = (2. * iwx * iwy + C11) / (iwx * iwx + iwy * iwy + C11); in FinalizeSSIM()
|
/external/clang/include/clang/AST/ |
D | PrettyPrinter.h | 49 Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11), in PrintingPolicy()
|
/external/bison/m4/ |
D | warn-on-use.m4 | 22 # in the intersection of C89 and C11 (such as printf) without
|
D | gnulib-common.m4 | 16 [/* The _Noreturn keyword of C11. */ 228 # - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard.
|
D | stdio_h.m4 | 75 dnl guaranteed by both C89 and C11.
|
/external/clang/lib/Lex/ |
D | PPMacroExpansion.cpp | 1128 .Case("c_alignas", LangOpts.C11) in HasFeature() 1129 .Case("c_alignof", LangOpts.C11) in HasFeature() 1130 .Case("c_atomic", LangOpts.C11) in HasFeature() 1131 .Case("c_generic_selections", LangOpts.C11) in HasFeature() 1132 .Case("c_static_assert", LangOpts.C11) in HasFeature() 1134 LangOpts.C11 && PP.getTargetInfo().isTLSSupported()) in HasFeature()
|
D | Lexer.cpp | 1386 } else if (LangOpts.CPlusPlus11 || LangOpts.C11) { in isAllowedIDChar() 1405 } else if (LangOpts.CPlusPlus11 || LangOpts.C11) { in isAllowedInitiallyIDChar() 3073 if (LangOpts.CPlusPlus11 || LangOpts.C11) { in LexTokenInternal() 3131 if (LangOpts.CPlusPlus11 || LangOpts.C11) { in LexTokenInternal()
|
/external/clang/include/clang/Basic/ |
D | DiagnosticParseKinds.td | 110 "generic selections are a C11-specific feature">, InGroup<C11>; 117 "%0 is a C11-specific feature">, InGroup<C11>; 120 "_Noreturn functions are a C11-specific feature">, InGroup<C11>; 345 "_Static_assert is a C11-specific feature">, InGroup<C11>;
|
D | LangOptions.def | 84 LANGOPT(C11 , 1, 0, "C11")
|
/external/llvm/docs/ |
D | Atomics.rst | 18 <http://www.open-std.org/jtc1/sc22/wg21/>`_.) (`C11 draft available here 223 This corresponds to the C++11/C11 ``memory_order_relaxed``; see those 253 This corresponds to the C++11/C11 ``memory_order_acquire``. It should also be 254 used for C++11/C11 ``memory_order_consume``. 283 This corresponds to the C++11/C11 ``memory_order_release``. 309 This corresponds to the C++11/C11 ``memory_order_acq_rel``. 332 This corresponds to the C++11/C11 ``memory_order_seq_cst``, Java volatile, and
|
/external/clang/docs/ |
D | LanguageExtensions.rst | 876 C11 section in Checks for Standard Language Features 879 The features listed below are part of the C11 standard. As a result, all these 884 C11 alignment specifiers argument 893 C11 atomic operations argument 900 ``__has_include(<stdatomic.h>)`` to determine if C11's ``<stdatomic.h>`` header 905 operations are provided as macros. In the cases where C11 also requires a real 910 C11 generic selections argument 917 As an extension, the C11 generic selection expression is available in all 918 languages supported by Clang. The syntax is the same as that given in the C11 925 C11 ``_Static_assert()`` argument [all …]
|
D | ReleaseNotes.rst | 94 C11 Feature Support
|
/external/llvm/lib/Target/Sparc/ |
D | SparcRegisterInfo.td | 225 def C11 : Ri< 11, "C11">; 308 def C10_C11 : Rdi<10, "C10", [C10, C11]>;
|
/external/llvm/test/Transforms/InstCombine/ |
D | xor.ll | 71 ; CHECK-NEXT: [[C11:%.*]] = or i32 [[A1]], [[B1]] 72 ; CHECK-NEXT: ret i32 [[C11]]
|
/external/libvpx/libvpx/test/ |
D | dct16x16_test.cc | 45 const double C11 = 0.471396736825998; variable 88 temp1 = step[9] * C11; in butterfly_16x16_dct_1d() 109 temp2 = step[14] * C11; in butterfly_16x16_dct_1d()
|
/external/libcxx/include/ |
D | cstdlib | 79 void *aligned_alloc(size_t alignment, size_t size); // C11
|
/external/jemalloc/include/jemalloc/internal/ |
D | jemalloc_internal_defs.h.in | 25 /* Defined if C11 atomics are available. */
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 146 if (LangOpts.C11 && (Flags & KEYC11)) return KS_Enabled; in getKeywordStatus()
|
/external/llvm/include/llvm/Support/ |
D | Dwarf.def | 320 HANDLE_DW_LANG(0x001d, C11)
|