Searched refs:Dest (Results 1 - 25 of 164) sorted by relevance

1234567

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_utils.h22 template <class Dest, class Source>
23 INLINE Dest bit_cast(const Source& source) {
24 static_assert(sizeof(Dest) == sizeof(Source), "Sizes are not equal!");
25 Dest dest;
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutnonansi.c297 char *Dest,
307 strcpy (Dest, Source);
313 char *Dest,
318 if ((strlen (Dest) + strlen (Source)) >= DestSize)
323 strcat (Dest, Source);
329 char *Dest,
339 if ((strlen (Dest) + ActualTransferLength) >= DestSize)
344 strncat (Dest, Source, MaxTransferLength);
350 char *Dest,
356 strncpy (Dest, Sourc
296 AcpiUtSafeStrcpy( char *Dest, ACPI_SIZE DestSize, char *Source) argument
312 AcpiUtSafeStrcat( char *Dest, ACPI_SIZE DestSize, char *Source) argument
328 AcpiUtSafeStrncat( char *Dest, ACPI_SIZE DestSize, char *Source, ACPI_SIZE MaxTransferLength) argument
349 AcpiUtSafeStrncpy( char *Dest, char *Source, ACPI_SIZE DestSize) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DObject.h161 void copySymbol(Symbol1Ty &Dest, const Symbol2Ty &Src) { argument
162 static_assert(sizeof(Dest.Name.ShortName) == sizeof(Src.Name.ShortName),
164 memcpy(Dest.Name.ShortName, Src.Name.ShortName, sizeof(Dest.Name.ShortName));
165 Dest.Value = Src.Value;
166 Dest.SectionNumber = Src.SectionNumber;
167 Dest.Type = Src.Type;
168 Dest.StorageClass = Src.StorageClass;
169 Dest.NumberOfAuxSymbols = Src.NumberOfAuxSymbols;
175 void copyPeHeader(PeHeader1Ty &Dest, cons argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DLinker.h34 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DWasmEHFuncInfo.h36 void setEHPadUnwindDest(const BasicBlock *BB, const BasicBlock *Dest) { argument
37 EHPadUnwindMap[BB] = Dest;
46 void setEHPadUnwindDest(MachineBasicBlock *MBB, MachineBasicBlock *Dest) { argument
47 EHPadUnwindMap[MBB] = Dest;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeStreamMerger.h28 /// \param Dest The table to store the re-written type records into.
38 Error mergeTypeRecords(MergingTypeTableBuilder &Dest,
50 /// \param Dest The table to store the re-written id records into.
63 Error mergeIdRecords(MergingTypeTableBuilder &Dest, ArrayRef<TypeIndex> Types,
95 Error mergeTypeRecords(GlobalTypeTableBuilder &Dest,
101 Error mergeIdRecords(GlobalTypeTableBuilder &Dest, ArrayRef<TypeIndex> Types,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { argument
52 Dest.FloatVal = -Src.FloatVal;
55 Dest.DoubleVal = -Src.DoubleVal;
105 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
108 static void executeFAddInst(GenericValue &Dest, GenericValue Src1, argument
119 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, argument
130 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, argument
141 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, argument
152 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, argument
156 Dest
193 GenericValue Dest; local
207 GenericValue Dest; local
221 GenericValue Dest; local
2070 GenericValue Dest; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeStreamMerger.cpp81 Error mergeIdRecords(MergingTypeTableBuilder &Dest,
84 Error mergeTypeRecords(MergingTypeTableBuilder &Dest,
93 Error mergeIdRecords(GlobalTypeTableBuilder &Dest,
97 Error mergeTypeRecords(GlobalTypeTableBuilder &Dest, const CVTypeArray &Types,
241 Error TypeStreamMerger::mergeTypeRecords(MergingTypeTableBuilder &Dest, argument
243 DestTypeStream = &Dest;
249 Error TypeStreamMerger::mergeIdRecords(MergingTypeTableBuilder &Dest, argument
252 DestIdStream = &Dest;
272 Error TypeStreamMerger::mergeTypeRecords(GlobalTypeTableBuilder &Dest, argument
276 DestGlobalTypeStream = &Dest;
284 mergeIdRecords(GlobalTypeTableBuilder &Dest, ArrayRef<TypeIndex> TypeSourceToDest, const CVTypeArray &Ids, ArrayRef<GloballyHashedType> Hashes) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamReader.h68 /// Read an integer of the specified endianness into \p Dest and update the
70 /// buffer into \p Dest. Updates the stream's offset to point after the newly
75 template <typename T> Error readInteger(T &Dest) { argument
83 Dest = llvm::support::endian::read<T, llvm::support::unaligned>(
89 template <typename T> Error readEnum(T &Dest) { argument
95 Dest = static_cast<T>(N);
103 Error readULEB128(uint64_t &Dest);
109 Error readSLEB128(int64_t &Dest);
111 /// Read a null terminated string from \p Dest. Whether a copy occurs depends
117 Error readCString(StringRef &Dest);
169 readObject(const T *&Dest) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamReader.cpp44 Error BinaryStreamReader::readULEB128(uint64_t &Dest) { argument
55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end());
59 Error BinaryStreamReader::readSLEB128(int64_t &Dest) { argument
70 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end());
74 Error BinaryStreamReader::readCString(StringRef &Dest) { argument
94 if (auto EC = readFixedString(Dest, Length))
102 Error BinaryStreamReader::readWideString(ArrayRef<UTF16> &Dest) { argument
116 if (auto EC = readArray(Dest, Length))
122 Error BinaryStreamReader::readFixedString(StringRef &Dest, uint32_t Length) { argument
126 Dest
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBranchSelector.cpp55 const MachineBasicBlock *Dest,
174 /// Determine the offset from the branch in Src block to the Dest block.
178 const MachineBasicBlock *Dest,
183 if (Dest->getNumber() <= Src->getNumber()) {
190 int DestBlock = Dest->getNumber();
205 MaxAlign = std::max(MaxAlign, Dest->getAlignment());
206 for (unsigned i = StartBlock+1, e = Dest->getNumber(); i != e; ++i) {
303 MachineBasicBlock *Dest = nullptr; local
305 Dest = I->getOperand(2).getMBB();
308 Dest
176 computeBranchSize(MachineFunction &Fn, const MachineBasicBlock *Src, const MachineBasicBlock *Dest, unsigned BrOffset) argument
[all...]
H A DPPCExpandISEL.cpp205 MachineOperand &Dest = (*I)->getOperand(0); local
212 if (useSameRegister(Dest, TrueValue) &&
213 useSameRegister(Dest, FalseValue)) {
235 .add(Dest)
272 MachineOperand &Dest = (*MI)->getOperand(0); local
278 // The Dest Register and True Value Register are not the same
281 // The Dest Register and False Value Register are not the same.
282 bool IsADDIInstRequired = !useSameRegister(Dest, TrueValue);
283 bool IsORIInstRequired = !useSameRegister(Dest, FalseValue);
312 .add(Dest)
439 MachineOperand &Dest = MI->getOperand(0); // location to store to local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DLinker.h39 /// shadow those in the Dest.
50 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp55 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest,
241 const GlobalValue &Dest,
257 bool DestIsDeclaration = Dest.isDeclarationForLinker();
260 // If Src is external or if both Src & Dest are external.. Just link the
267 // If the Dest is weak, use the source linkage.
268 if (Dest.hasExternalWeakLinkage()) {
273 LinkFromSrc = !Src.isDeclaration() && Dest.isDeclaration();
278 // If Dest is external but Src is not:
284 if (Dest.hasLinkOnceLinkage() || Dest
240 shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest, const GlobalValue &Src) argument
591 linkModules( Module &Dest, std::unique_ptr<Module> Src, unsigned Flags, std::function<void(Module &, const StringSet<> &)> InternalizeCallback) argument
602 LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp450 bool parseRegisterOperand(MachineOperand &Dest,
452 bool parseImmediateOperand(MachineOperand &Dest);
457 bool parseTypedImmediateOperand(MachineOperand &Dest);
458 bool parseFPImmediateOperand(MachineOperand &Dest);
460 bool parseMBBOperand(MachineOperand &Dest);
462 bool parseStackObjectOperand(MachineOperand &Dest);
464 bool parseFixedStackObjectOperand(MachineOperand &Dest);
466 bool parseGlobalAddressOperand(MachineOperand &Dest);
467 bool parseConstantPoolIndexOperand(MachineOperand &Dest);
468 bool parseSubRegisterIndexOperand(MachineOperand &Dest);
1438 parseRegisterOperand(MachineOperand &Dest, Optional<unsigned> &TiedDefIdx, bool IsDef) argument
1523 parseImmediateOperand(MachineOperand &Dest) argument
1533 parseTargetImmMnemonic(const unsigned OpCode, const unsigned OpIdx, MachineOperand &Dest, const MIRFormatter &MF) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuilder.h274 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, llvm::Value *Size, argument
276 return CreateMemCpy(Dest.getPointer(), Dest.getAlignment().getAsAlign(),
280 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, uint64_t Size, argument
282 return CreateMemCpy(Dest.getPointer(), Dest.getAlignment().getAsAlign(),
288 llvm::CallInst *CreateMemMove(Address Dest, Address Src, llvm::Value *Size, argument
290 return CreateMemMove(Dest.getPointer(), Dest.getAlignment().getAsAlign(),
296 llvm::CallInst *CreateMemSet(Address Dest, llv argument
[all...]
H A DCGExprAgg.cpp39 AggValueSlot Dest; member in class:__anon1::AggExprEmitter
43 if (!Dest.isIgnored()) return Dest;
47 if (!Dest.isIgnored()) return;
48 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured");
52 // to do so. If a temporary is created, an appropriate copy into `Dest` will
61 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) argument
62 : CGF(cgf), Builder(CGF.Builder), Dest(Dest),
117 CGF.EmitCoawaitExpr(*E, Dest, IsResultUnuse
411 AggValueSlot Dest = EnsureSlot(E->getType()); local
1720 AggValueSlot Dest = EnsureSlot(E->getType()); local
1904 EmitAggregateCopy(LValue Dest, LValue Src, QualType Ty, AggValueSlot::Overlap_t MayOverlap, bool isVolatile) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DFuzzerCLI.h64 /// \param Dest Location to store serialized module
67 /// returns 0 and leaves Dest unchanged.
68 size_t writeModule(const Module &M, uint8_t *Dest, size_t MaxSize);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcommon.h22 template <class Dest, class Source> inline Dest bit_cast(const Source &S) {
23 static_assert(sizeof(Dest) == sizeof(Source), "");
24 Dest D;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingUtil.h51 void lprofApplyPathPrefix(char *Dest, const char *PathStr, const char *Prefix,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXImageOptimizer.cpp155 BasicBlock *Dest; local
158 Dest = BI->getSuccessor(1);
161 Dest = BI->getSuccessor(0);
162 BranchInst::Create(Dest, BI);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp37 CodeGenInstruction Dest; // The destination instruction to lower to. member in struct:__anon3395::PseudoLoweringEmitter::PseudoExpansion
42 Source(s), Dest(d), OperandMap(m) {}
210 CodeGenInstruction &Dest = Expansion.Dest; local
215 << " TmpInst.setOpcode(" << Dest.Namespace << "::"
216 << Dest.TheDef->getName() << ");\n";
223 for (const auto &DestOperand : Dest.Operands) {
254 if (Dest.Operands.isVariadic) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBuildLibCalls.h118 Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt,
123 Value *emitSPrintf(Value *Dest, Value *Fmt, ArrayRef<Value *> VariadicArgs,
127 Value *emitStrCat(Value *Dest, Value *Src, IRBuilder<> &B,
131 Value *emitStrLCpy(Value *Dest, Value *Src, Value *Size, IRBuilder<> &B,
135 Value *emitStrLCat(Value *Dest, Value *Src, Value *Size, IRBuilder<> &B,
139 Value *emitStrNCat(Value *Dest, Value *Src, Value *Size, IRBuilder<> &B,
143 Value *emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt, Value *VAList,
147 Value *emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList, IRBuilder<> &B,
/freebsd-11-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsrepair2.c692 char *Dest; local
749 for (Dest = NewString->String.Pointer; *Source; Dest++, Source++)
751 *Dest = (char) toupper ((int) *Source);
1150 ACPI_OPERAND_OBJECT **Dest; local
1163 Dest = Source;
1176 *Dest = *Source;
1177 Dest++;
1185 *Dest = NULL;
H A Dnsrepair.c608 ACPI_OPERAND_OBJECT **Dest; local
645 Dest = Source;
657 *Dest = *Source;
658 Dest++;
674 *Dest = NULL;

Completed in 306 milliseconds

1234567