| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_bvgraph.h | 52 t1.copyFrom(from); in addEdges() 88 t1.copyFrom(from); in removeEdgesFrom() 113 to_visit.copyFrom(v[from]); in isReachable()
|
| H A D | sanitizer_dense_map.h | 298 void copyFrom( in copyFrom() function 601 copyFrom(other); in DenseMap() 623 copyFrom(other); 635 void copyFrom(const DenseMap &other) { in copyFrom() function 639 this->BaseT::copyFrom(other); in copyFrom()
|
| H A D | sanitizer_bitvector.h | 76 void copyFrom(const BasicBitVector &v) { bits_ = v.bits_; } in copyFrom() function 249 void copyFrom(const TwoLevelBitVector &v) { in copyFrom() function
|
| H A D | sanitizer_deadlock_detector.h | 312 tmp_bv_.copyFrom(dtls->getLocks(current_epoch_)); in findPathToLock()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
| H A D | wrapper_function_utils_test.cpp | 42 auto R = WrapperFunctionResult::copyFrom(TestString, strlen(TestString) + 1); in TEST() 50 auto R = WrapperFunctionResult::copyFrom(TestString); in TEST() 58 auto R = WrapperFunctionResult::copyFrom(std::string(TestString)); in TEST()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/orc/ |
| H A D | wrapper_function_utils.h | 82 static WrapperFunctionResult copyFrom(const char *Source, size_t Size) { in copyFrom() function 87 static WrapperFunctionResult copyFrom(const char *Source) { in copyFrom() function 92 static WrapperFunctionResult copyFrom(const std::string &Source) { in copyFrom() function 93 return copyFrom(Source.c_str()); in copyFrom()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 483 void copyFrom( in copyFrom() function 797 copyFrom(other); in DenseMap() 831 copyFrom(other); 843 void copyFrom(const DenseMap &other) { in copyFrom() function 847 this->BaseT::copyFrom(other); in copyFrom() 966 copyFrom(other); in SmallDenseMap() 1062 copyFrom(other); 1074 void copyFrom(const SmallDenseMap &other) { in copyFrom() function 1082 this->BaseT::copyFrom(other); in copyFrom()
|
| H A D | SmallPtrSet.h | 255 LLVM_ABI void copyFrom(const void **SmallStorage, 576 this->copyFrom(SmallStorage, RHS);
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | lz4.c | 697 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic() local 698 while (op < endOfMatch) { *op++ = *copyFrom++; } in LZ4_decompress_generic() 886 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic() local 887 while (op < endOfMatch) *op++ = *copyFrom++; in LZ4_decompress_generic()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
| H A D | WrapperFunctionUtils.h | 123 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()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | SimpleRemoteEPC.cpp | 303 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleSetup() 422 shared::WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleResult() 447 auto WFR = WrapperFunctionResult::copyFrom(ArgBytes.data(), ArgBytes.size()); in handleHangup()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FileSystem.h | 1294 void copyFrom(const mapped_file_region &Copied) { in copyFrom() function 1304 copyFrom(Moved); in moveFromImpl() 1305 Moved.copyFrom(mapped_file_region()); in moveFromImpl() 1338 copyFrom(mapped_file_region()); in unmap()
|
| H A D | JSON.h | 302 Value(const Value &M) { copyFrom(M); } in Value() 374 copyFrom(M); 485 LLVM_ABI void copyFrom(const Value &M);
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 523 EFuncId id, const AMDGPUMangledLibFunc ©From) { in AMDGPUMangledLibFunc() argument 525 FKind = copyFrom.FKind; in AMDGPUMangledLibFunc() 526 Leads[0] = copyFrom.Leads[0]; in AMDGPUMangledLibFunc() 527 Leads[1] = copyFrom.Leads[1]; in AMDGPUMangledLibFunc()
|
| H A D | AMDGPULibFunc.h | 439 const AMDGPUMangledLibFunc ©From);
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | MacroExpander.cpp | 223 New->copyFrom(*Tok); in expand()
|
| H A D | FormatToken.h | 897 void copyFrom(const FormatToken &Tok) { *this = Tok; } in copyFrom() function
|
| H A D | UnwrappedLineParser.cpp | 701 SavedToken.Tok->copyFrom(*Token.Tok); in mightFitOnOneLine() 730 Token.Tok->copyFrom(*SavedToken.Tok); in mightFitOnOneLine()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SmallPtrSet.cpp | 162 void SmallPtrSetImplBase::copyFrom(const void **SmallStorage, in copyFrom() function in SmallPtrSetImplBase
|
| H A D | JSON.cpp | 109 void Value::copyFrom(const Value &M) { in copyFrom() function in llvm::json::Value
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Overload.h | 558 void copyFrom(const AmbiguousConversionSequence &); 698 case AmbiguousConversion: Ambiguous.copyFrom(Other.Ambiguous); break; in ImplicitConversionSequence()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | LiveInterval.h | 71 void copyFrom(VNInfo &src) { in copyFrom() function
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveInterval.cpp | 748 V1->copyFrom(*V2); in MergeValueNumberInto()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Path.inc | 871 copyFrom(mapped_file_region());
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 945 copyFrom(mapped_file_region());
|