Home
last modified time | relevance | path

Searched refs:Copy (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/
H A DMIUtilVariant.cpp80 Copy(vrOther); in operator =()
94 Copy(vrwOther); in operator =()
169 Copy(vrOther); in CDataObject()
185 Copy(vrOther); in CDataObject()
201 Copy(vrwOther); in CDataObject()
219 Copy(vrOther); in operator =()
237 Copy(vrwOther); in operator =()
269 Copy(vrOther); in CMIUtilVariant()
285 Copy(vrOther); in CMIUtilVariant()
301 Copy(vrwOther); in CMIUtilVariant()
[all …]
H A DMIUtilVariant.h66 virtual void Copy(const CDataObjectBase &vrOther);
113 void Copy(const CMIUtilVariant &vrOther);
213 CDataObjectBase::Copy(vrOther); in Duplicate()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineCopyPropagation.cpp134 auto &Copy = I.first->second; in trackCopy() local
135 if (!is_contained(Copy.DefRegs, Def)) in trackCopy()
136 Copy.DefRegs.push_back(Def); in trackCopy()
241 MaybeDeadCopies.remove(Copy); in ReadRegister()
291 assert(Copy.isCopy()); in eraseIfRedundant()
292 unsigned CopyDef = Copy.getOperand(0).getReg(); in eraseIfRedundant()
298 Copy.eraseFromParent(); in eraseIfRedundant()
311 unsigned CopySrcReg = Copy.getOperand(1).getReg(); in isForwardableRegClassCopy()
399 if (!Copy) in forwardUses()
402 unsigned CopyDstReg = Copy->getOperand(0).getReg(); in forwardUses()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DValueMap.h268 ValueMapCallbackVH Copy(*this);
269 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
273 Config::onDelete(Copy.Map->Data, Copy.Unwrap()); // May destroy *this.
274 Copy.Map->Map.erase(Copy); // Definitely destroys *this.
281 ValueMapCallbackVH Copy(*this);
282 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
289 Config::onRAUW(Copy.Map->Data, Copy.Unwrap(), typed_new_key);
291 typename ValueMapT::MapT::iterator I = Copy.Map->Map.find(Copy);
294 if (I != Copy.Map->Map.end()) {
296 Copy.Map->Map.erase(I); // Definitely destroys *this.
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DMemoryLocation.h250 MemoryLocation Copy(*this); in getWithNewPtr()
251 Copy.Ptr = NewPtr; in getWithNewPtr()
252 return Copy; in getWithNewPtr()
256 MemoryLocation Copy(*this); in getWithNewSize()
257 Copy.Size = NewSize; in getWithNewSize()
258 return Copy; in getWithNewSize()
262 MemoryLocation Copy(*this); in getWithoutAATags()
263 Copy.AATags = AAMDNodes(); in getWithoutAATags()
264 return Copy; in getWithoutAATags()
H A DInstructionSimplify.h111 SimplifyQuery Copy(*this); in getWithInstruction()
112 Copy.CxtI = I; in getWithInstruction()
113 return Copy; in getWithInstruction()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DBitVector.h218 BitWord Copy = Bits[i]; in find_first_in() local
222 Copy &= maskTrailingZeros<BitWord>(FirstBit); in find_first_in()
229 if (Copy != 0) in find_first_in()
248 BitWord Copy = Bits[CurrentWord]; in find_last_in() local
259 if (Copy != 0) in find_last_in()
278 BitWord Copy = Bits[i]; in find_first_unset_in() local
282 Copy |= maskTrailingOnes<BitWord>(FirstBit); in find_first_unset_in()
289 if (Copy != ~0UL) { in find_first_unset_in()
310 BitWord Copy = Bits[CurrentWord]; in find_last_unset_in() local
318 Copy |= maskTrailingOnes<BitWord>(FirstBit); in find_last_unset_in()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64CleanupLocalDynamicTLSPass.cpp105 MachineInstr *Copy = BuildMI(*I.getParent(), I, I.getDebugLoc(), in replaceTLSBaseAddrCall() local
112 return Copy; in replaceTLSBaseAddrCall()
126 MachineInstr *Copy = in setRegister() local
131 return Copy; in setRegister()
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZLDCleanup.cpp120 MachineInstr *Copy = BuildMI(*I->getParent(), I, I->getDebugLoc(), in ReplaceTLSCall() local
127 return Copy; in ReplaceTLSCall()
140 MachineInstr *Copy = BuildMI(*I->getParent(), Next, I->getDebugLoc(), in SetRegister() local
144 return Copy; in SetRegister()
/freebsd-12.1/contrib/googletest/googletest/xcode/gtest.xcodeproj/
H A Dproject.pbxproj186 404884A50E2F7C0400CF7658 /* Copy Headers Internal */ = {
194 404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */,
195 404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */,
199 404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */,
200 404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */,
201 40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */,
204 name = "Copy Headers Internal";
207 F67D4F471C7F5DF60017C729 /* Copy Headers Internal Custom */ = {
216 name = "Copy Headers Internal Custom";
602 404884A50E2F7C0400CF7658 /* Copy Headers Internal */,
[all …]
/freebsd-12.1/contrib/bearssl/T0/
H A DCPU.cs110 Array.Copy(stackBuf, 0, nbuf, 0, len); in Push()
132 Array.Copy(stackBuf, stackPtr - (depth - 1), in Rot()
144 Array.Copy(stackBuf, stackPtr - depth, in NRot()
H A DConstData.cs55 Array.Copy(buf, 0, nbuf, 0, len); in Expand()
94 Array.Copy(sd, 0, buf, len, sd.Length); in AddString()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DDebugChecksumsSubsection.cpp73 uint8_t *Copy = Storage.Allocate<uint8_t>(Bytes.size()); in addChecksum() local
74 ::memcpy(Copy, Bytes.data(), Bytes.size()); in addChecksum()
75 Entry.Checksum = makeArrayRef(Copy, Bytes.size()); in addChecksum()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCReduceCRLogicals.cpp516 MachineInstr *Copy = MRI->getVRegDef(Reg); in lookThroughCRCopy() local
517 CpDef = Copy; in lookThroughCRCopy()
518 if (!Copy->isCopy()) in lookThroughCRCopy()
519 return Copy; in lookThroughCRCopy()
520 unsigned CopySrc = Copy->getOperand(1).getReg(); in lookThroughCRCopy()
521 Subreg = Copy->getOperand(1).getSubReg(); in lookThroughCRCopy()
534 MachineBasicBlock::iterator Me = Copy, B = Copy->getParent()->begin(); in lookThroughCRCopy()
/freebsd-12.1/tools/build/mk/
H A DMakefile.boot20 Copy the header to $${WORLDTMP}/legacy in tools/build/Makefile instead. \
27 Copy the header to $${WORLDTMP}/legacy in tools/build/Makefile instead. \
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h200 TypeIndex Copy = *this; variable
202 return Copy;
217 TypeIndex Copy = *this; variable
219 return Copy;
/freebsd-12.1/stand/i386/gptboot/
H A Dgptldr.S50 .set COPY_BLK_SZ,0x8000 # Copy in 32k blocks; must be
90 mov $COPY_BLKS,%bx # Copy COPY_BLKS 32k blocks
100 mov $COPY_BLK_SZ,%cx # Copy 32k
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp161 getCopyRegClasses(const MachineInstr &Copy, in getCopyRegClasses() argument
164 unsigned DstReg = Copy.getOperand(0).getReg(); in getCopyRegClasses()
165 unsigned SrcReg = Copy.getOperand(1).getReg(); in getCopyRegClasses()
352 static bool isSafeToFoldImmIntoCopy(const MachineInstr *Copy, in isSafeToFoldImmIntoCopy() argument
357 if (Copy->getOpcode() != AMDGPU::COPY) in isSafeToFoldImmIntoCopy()
369 if (Copy->getOperand(0).getSubReg()) in isSafeToFoldImmIntoCopy()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DCallSiteSplitting.cpp223 Instruction *Copy = I->clone(); in cloneInstForMustTail() local
224 Copy->setName(I->getName()); in cloneInstForMustTail()
225 Copy->insertBefore(Before); in cloneInstForMustTail()
227 Copy->setOperand(0, V); in cloneInstForMustTail()
228 return Copy; in cloneInstForMustTail()
/freebsd-12.1/libexec/rtld-elf/i386/
H A Drtld_start.S78 pushl 20(%esp) # Copy reloff argument
79 pushl 20(%esp) # Copy obj argument
/freebsd-12.1/tools/regression/iscsi/
H A Dinitiator-instructions.txt34 To build iozone, use "make linux". Copy the 'postmark' and 'iozone' binaries
49 To build iozone, use "make Solaris10gcc". Copy the 'bonnie++', 'postmark', and 'iozone'
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp1619 const static unsigned Copy = TargetOpcode::COPY; in selectDivRem() local
1657 {X86::IDIV16r, X86::CWD, Copy, X86::AX, S}, // SDiv in selectDivRem()
1658 {X86::IDIV16r, X86::CWD, Copy, X86::DX, S}, // SRem in selectDivRem()
1659 {X86::DIV16r, X86::MOV32r0, Copy, X86::AX, U}, // UDiv in selectDivRem()
1660 {X86::DIV16r, X86::MOV32r0, Copy, X86::DX, U}, // URem in selectDivRem()
1666 {X86::IDIV32r, X86::CDQ, Copy, X86::EAX, S}, // SDiv in selectDivRem()
1667 {X86::IDIV32r, X86::CDQ, Copy, X86::EDX, S}, // SRem in selectDivRem()
1668 {X86::DIV32r, X86::MOV32r0, Copy, X86::EAX, U}, // UDiv in selectDivRem()
1669 {X86::DIV32r, X86::MOV32r0, Copy, X86::EDX, U}, // URem in selectDivRem()
1675 {X86::IDIV64r, X86::CQO, Copy, X86::RAX, S}, // SDiv in selectDivRem()
[all …]
/freebsd-12.1/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.gsl209 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse…
210 …<!--<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformto…
215 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse…
216 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse…
221 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse…
222 …<!--<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformto…
227 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse…
228 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse…
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/
H A DMultilib.cpp285 multilib_list Copy(Ms); in filterCopy() local
286 filterInPlace(F, Copy); in filterCopy()
287 return Copy; in filterCopy()
/freebsd-12.1/contrib/smbfs/
H A DINSTALL4 Copy config.in file to the config.local and edit it for your needs. Build
45 Copy ./examples/dot.nsmbrc file into your home directory with ./.nsmbrc

12345678910>>...13