Home
last modified time | relevance | path

Searched refs:Chained (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/unittests/Sema/
H A DExternalSemaSourceTest.cpp44 DiagnosticConsumer *Chained; member in __anonc354d5f50111::DiagnosticWatcher
50 : Chained(nullptr), FromName(From), ToName("'"), SeenCount(0) { in DiagnosticWatcher()
57 if (Chained) in HandleDiagnostic()
58 Chained->HandleDiagnostic(DiagLevel, Info); in HandleDiagnostic()
74 if (Chained) in clear()
75 Chained->clear(); in clear()
79 if (Chained) in IncludeInDiagnosticCounts()
80 return Chained->IncludeInDiagnosticCounts(); in IncludeInDiagnosticCounts()
85 Chained = ToChain; in Chain()
/llvm-project-15.0.7/libc/src/string/memory_utils/
H A Delements.h154 template <typename... Types> struct Chained;
156 template <typename Head, typename... Tail> struct Chained<Head, Tail...> {
157 static constexpr size_t SIZE = Head::SIZE + Chained<Tail...>::SIZE;
160 Chained<Tail...>::copy(dst + Head::SIZE, src + Head::SIZE);
166 Chained<Tail...>::move(dst + Head::SIZE, src + Head::SIZE);
173 return Chained<Tail...>::equals(lhs + Head::SIZE, rhs + Head::SIZE);
178 return Chained<Tail...>::three_way_compare(lhs + Head::SIZE,
184 Chained<Tail...>::splat_set(dst + Head::SIZE, value);
189 template <> struct Chained<> {
765 using _3 = Chained<UINT16, UINT8>;
H A Delements_aarch64.h52 using _32 = Chained<_16, _16>;
53 using _64 = Chained<_32, _32>;
/llvm-project-15.0.7/libc/test/src/string/memory_utils/
H A Delements_test.cpp36 Chained<scalar::UINT16, scalar::UINT8>, //
37 Chained<scalar::UINT32, scalar::UINT16, scalar::UINT8>, //
H A Dmemory_access_test.cpp105 Chained<TestingElement<4>, TestingElement<2>, TestingElement<1>> // 7 Bytes
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp351 if (const RuntimeFunction *Chained = UI.getChainedFunctionEntry()) { in printUnwindInfo() local
353 printRuntimeFunctionEntry(Ctx, Section, LSDAOffset, *Chained); in printUnwindInfo()
/llvm-project-15.0.7/clang/include/clang/Serialization/
H A DASTReader.h1637 bool Chained = false; variable
1644 Chained = true; in ListenerScope()
1653 if (Chained) in ~ListenerScope()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_arg_nontype_cxx1z.cpp221 namespace Chained { namespace
/llvm-project-15.0.7/clang/docs/
H A DPCHInternals.rst460 Chained precompiled headers
463 Chained precompiled headers were initially intended to improve the performance
479 Chained precompiled headers get their name because each precompiled header can
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMScheduleM7.td468 // Multiply-accumulate. Chained SP timing is correct; rest need overrides