Home
last modified time | relevance | path

Searched refs:copyFrom (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_bitvector_test.cpp33 t.copyFrom(bv); in CheckBV()
61 t.copyFrom(bv); in Print()
146 t_bv.copyFrom(bv); in TestBitVector()
153 t_bv.copyFrom(bv); in TestBitVector()
162 t_bv.copyFrom(bv); in TestBitVector()
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dcasts.cpp6 void copyFrom(const A &src);
12 void A::copyFrom(const A &src) { in copyFrom() function in PR5248::A
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h52 t1.copyFrom(from); in addEdges()
88 t1.copyFrom(from); in removeEdgesFrom()
113 to_visit.copyFrom(v[from]); in isReachable()
H A Dsanitizer_dense_map.h315 void copyFrom( in copyFrom() function
589 copyFrom(other); in DenseMap()
611 copyFrom(other);
623 void copyFrom(const DenseMap &other) { in copyFrom() function
627 this->BaseT::copyFrom(other); in copyFrom()
H A Dsanitizer_bitvector.h76 void copyFrom(const BasicBitVector &v) { bits_ = v.bits_; } in copyFrom() function
249 void copyFrom(const TwoLevelBitVector &v) { in copyFrom() function
H A Dsanitizer_deadlock_detector.h312 tmp_bv_.copyFrom(dtls->getLocks(current_epoch_)); in findPathToLock()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/Orc/
H A DWrapperFunctionUtilsTest.cpp32 auto R = WrapperFunctionResult::copyFrom(TestString, strlen(TestString) + 1); in TEST()
40 auto R = WrapperFunctionResult::copyFrom(TestString); in TEST()
48 auto R = WrapperFunctionResult::copyFrom(std::string(TestString)); in TEST()
/llvm-project-15.0.7/compiler-rt/lib/orc/unittests/
H A Dwrapper_function_utils_test.cpp40 auto R = WrapperFunctionResult::copyFrom(TestString, strlen(TestString) + 1); in TEST()
48 auto R = WrapperFunctionResult::copyFrom(TestString); in TEST()
56 auto R = WrapperFunctionResult::copyFrom(std::string(TestString)); in TEST()
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DDenseMap.h423 void copyFrom( in copyFrom() function
736 copyFrom(other); in DenseMap()
771 copyFrom(other);
783 void copyFrom(const DenseMap& other) { in copyFrom() function
787 this->BaseT::copyFrom(other); in copyFrom()
917 copyFrom(other); in SmallDenseMap()
1013 copyFrom(other);
1025 void copyFrom(const SmallDenseMap& other) { in copyFrom() function
1033 this->BaseT::copyFrom(other); in copyFrom()
/llvm-project-15.0.7/compiler-rt/lib/orc/
H A Dwrapper_function_utils.h83 static WrapperFunctionResult copyFrom(const char *Source, size_t Size) { in copyFrom() function
88 static WrapperFunctionResult copyFrom(const char *Source) { in copyFrom() function
93 static WrapperFunctionResult copyFrom(const std::string &Source) { in copyFrom() function
94 return copyFrom(Source.c_str()); in copyFrom()
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.cpp257 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleSetup()
368 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleResult()
393 auto WFR = WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleHangup()
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DWrapperFunctionUtils.h123 static WrapperFunctionResult copyFrom(const char *Source, size_t Size) { in copyFrom() function
130 static WrapperFunctionResult copyFrom(const char *Source) { in copyFrom() function
131 return copyFrom(Source, strlen(Source) + 1); in copyFrom()
135 static WrapperFunctionResult copyFrom(const std::string &Source) { in copyFrom() function
136 return copyFrom(Source.c_str()); in copyFrom()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFileSystem.h1286 void copyFrom(const mapped_file_region &Copied) { in copyFrom() function
1296 copyFrom(Moved); in moveFromImpl()
1297 Moved.copyFrom(mapped_file_region()); in moveFromImpl()
1329 copyFrom(mapped_file_region()); in unmap()
H A DJSON.h296 Value(const Value &M) { copyFrom(M); } in Value()
371 copyFrom(M);
467 void copyFrom(const Value &M);
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp522 EFuncId id, const AMDGPUMangledLibFunc &copyFrom) { in AMDGPUMangledLibFunc() argument
524 FKind = copyFrom.FKind; in AMDGPUMangledLibFunc()
525 Leads[0] = copyFrom.Leads[0]; in AMDGPUMangledLibFunc()
526 Leads[1] = copyFrom.Leads[1]; in AMDGPUMangledLibFunc()
H A DAMDGPULibFunc.h414 const AMDGPUMangledLibFunc &copyFrom);
/llvm-project-15.0.7/clang/lib/Format/
H A DMacroExpander.cpp207 New->copyFrom(*Tok); in expand()
H A DFormatToken.h759 void copyFrom(const FormatToken &Tok) { *this = Tok; } in copyFrom() function
H A DUnwrappedLineParser.cpp801 SavedToken.Tok->copyFrom(*Token.Tok); in mightFitOnOneLine()
821 Token.Tok->copyFrom(*SavedToken.Tok); in mightFitOnOneLine()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DOverload.h461 void copyFrom(const AmbiguousConversionSequence &);
593 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break; in ImplicitConversionSequence()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DLiveInterval.h70 void copyFrom(VNInfo &src) { in copyFrom() function
/llvm-project-15.0.7/llvm/lib/Support/
H A DJSON.cpp106 void Value::copyFrom(const Value &M) { in copyFrom() function in llvm::json::Value
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DLiveInterval.cpp745 V1->copyFrom(*V2); in MergeValueNumberInto()
/llvm-project-15.0.7/llvm/lib/Support/Windows/
H A DPath.inc923 copyFrom(mapped_file_region());
/llvm-project-15.0.7/llvm/lib/Support/Unix/
H A DPath.inc867 copyFrom(mapped_file_region());

12