Home
last modified time | relevance | path

Searched refs:Copied (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A DPR22806_constrain_tuple_like_ctor.pass.cpp36 enum State { FromTuple, FromInt, Copied, Moved }; enumerator
39 ConstructibleFromTupleAndInt(ConstructibleFromTupleAndInt const&) : state(Copied) {} in ConstructibleFromTupleAndInt()
49 enum State { FromTuple, FromInt, Copied, Moved }; enumerator
52 ConvertibleFromTupleAndInt(ConvertibleFromTupleAndInt const&) : state(Copied) {} in ConvertibleFromTupleAndInt()
62 enum State { FromInt, Copied, Moved }; enumerator
65 ConstructibleFromInt(ConstructibleFromInt const&) : state(Copied) {} in ConstructibleFromInt()
72 enum State { FromInt, Copied, Moved }; enumerator
75 ConvertibleFromInt(ConvertibleFromInt const&) : state(Copied) {} in ConvertibleFromInt()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Dpass-by-value.rst48 - Foo(const std::string &Copied, const std::string &ReadOnly)
49 - : Copied(Copied), ReadOnly(ReadOnly)
50 + Foo(std::string Copied, const std::string &ReadOnly)
51 + : Copied(std::move(Copied)), ReadOnly(ReadOnly)
55 std::string Copied;
/llvm-project-15.0.7/llvm/unittests/Support/
H A DFormatVariadicTest.cpp661 int Copied = 0, Moved = 0; member
663 Recorder(const Recorder &Copy) : Copied(1 + Copy.Copied), Moved(Copy.Moved) {} in Recorder()
665 : Copied(Move.Copied), Moved(1 + Move.Moved) {} in Recorder()
671 OS << R.Copied << "C " << R.Moved << "M"; in format()
681 EXPECT_EQ(0, R.Copied); in TEST()
/llvm-project-15.0.7/lld/test/wasm/lto/Inputs/
H A Dthin2.ll1 ; Copied from lld/test/ELF/lto/Inputs/thin2.ll
H A Dthin1.ll1 ; Copied from lld/test/ELF/lto/Inputs/thin1.ll
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dppc64-icbt-pwr8.ll2 ; Copied from the ppc64-prefetch.ll test
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A DSoftFloatVectorExtract.ll4 ; Copied from llvm/test/CodeGen/Generic/2009-03-29-SoftFloatVectorExtract.ll,
H A Demutls.ll6 ; Copied from X86/emutls.ll
/llvm-project-15.0.7/clang/test/Headers/Inputs/include/
H A Dtype_traits1 /// Copied from libcxx type_traits and simplified
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFileSystem.h1286 void copyFrom(const mapped_file_region &Copied) { in copyFrom() argument
1287 Size = Copied.Size; in copyFrom()
1288 Mapping = Copied.Mapping; in copyFrom()
1290 FileHandle = Copied.FileHandle; in copyFrom()
1292 Mode = Copied.Mode; in copyFrom()
/llvm-project-15.0.7/lld/test/wasm/lto/
H A Dthinlto-thin-archive-collision.ll1 ; Copied from lld/test/ELF/lto/thinlto-thin-archive-collision.ll
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp756 const MachineOperand &Copied = DefMI->getOperand(1); in runOnMachineFunction() local
757 if (Copied.isImm() && in runOnMachineFunction()
758 TII->isInlineConstant(APInt(64, Copied.getImm(), true))) { in runOnMachineFunction()
759 MO->ChangeToImmediate(Copied.getImm()); in runOnMachineFunction()
H A DSIPeepholeSDWA.cpp508 const MachineOperand &Copied = DefInst->getOperand(1); in foldToImm() local
509 if (!Copied.isImm()) in foldToImm()
512 return Copied.getImm(); in foldToImm()
H A DSIInstrInfo.td819 // Copied from the AArch64 backend:
830 // Copied from the AArch64 backend:
/llvm-project-15.0.7/llvm/lib/Transforms/IPO/
H A DAttributor.cpp2373 Function *Copied = in internalizeFunctions() local
2377 auto *NewFArgIt = Copied->arg_begin(); in internalizeFunctions()
2386 CloneFunctionInto(Copied, F, VMap, in internalizeFunctions()
2391 Copied->setVisibility(GlobalValue::DefaultVisibility); in internalizeFunctions()
2392 Copied->setLinkage(GlobalValue::PrivateLinkage); in internalizeFunctions()
2398 if (!Copied->hasMetadata()) in internalizeFunctions()
2399 Copied->addMetadata(MDIt.first, *MDIt.second); in internalizeFunctions()
2401 M.getFunctionList().insert(F->getIterator(), Copied); in internalizeFunctions()
2402 Copied->setDSOLocal(true); in internalizeFunctions()
2403 FnMap[F] = Copied; in internalizeFunctions()
/llvm-project-15.0.7/llvm/test/CodeGen/VE/Scalar/
H A Dbr_analyze.ll7 ;;; order should be reversed. Copied from SystemZ/branch-08.ll
/llvm-project-15.0.7/llvm/test/DebugInfo/MIR/AArch64/
H A Ddbgcall-site-indirect-param-with-offset.mir4 # Copied from dbgcall-site-indirect-param.mir, with hand modifications:
/llvm-project-15.0.7/llvm/test/tools/llvm-profgen/
H A Dmerge-cold-profile.test103 ; Copied from recursion-compression.test
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Demutls.ll6 ; Copied from X86/emutls.ll
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Demutls.ll11 ; Copied from tls.ll; emulated TLS model is not implemented
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64SchedNeoverseN2.td18 let LoopMicroOpBufferSize = 16; // NOTE: Copied from Cortex-A57.