| /src/sys/external/bsd/acpica/dist/utilities/ |
| utnonansi.c | 189 char *Dest, 199 strcpy (Dest, Source); 205 char *Dest, 210 if ((strlen (Dest) + strlen (Source)) >= DestSize) 215 strcat (Dest, Source); 221 char *Dest, 231 if ((strlen (Dest) + ActualTransferLength) >= DestSize) 236 strncat (Dest, Source, MaxTransferLength); 242 char *Dest, 248 strncpy (Dest, Source, DestSize) [all...] |
| utclib.c | 134 * PARAMETERS: Dest - Target of the copy 138 * RETURN: Dest 146 void *Dest, 150 char *New = (char *) Dest; 181 return (Dest); 189 * PARAMETERS: Dest - Target of the copy 193 * RETURN: Dest 201 void *Dest, 205 char *New = (char *) Dest; 217 return (Dest); [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/ |
| Object.h | 161 void copySymbol(Symbol1Ty &Dest, const Symbol2Ty &Src) { 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, const PeHeader2Ty &Src) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm-c/ |
| Linker.h | 34 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
|
| /src/sys/external/bsd/gnu-efi/dist/lib/runtime/ |
| rtstr.c | 51 IN CHAR16 *Dest, 57 *(Dest++) = *(Src++); 59 *Dest = 0; 68 IN CHAR16 *Dest, 76 RtSetMem(Dest + Size, (Len - Size) * sizeof(CHAR16), '\0'); 77 RtCopyMem(Dest, Src, Size * sizeof(CHAR16)); 86 IN CHAR16 *Dest, 92 *(Dest++) = *(Src++); 94 *Dest = 0; 95 return Dest; [all...] |
| efirtlib.c | 68 IN VOID *Dest, 73 CHAR8 *d = (CHAR8*)Dest; 97 IN CONST VOID *Dest, 102 CONST CHAR8 *d = Dest, *s = Src;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| WasmEHFuncInfo.h | 51 void setUnwindDest(const BasicBlock *BB, const BasicBlock *Dest) { 52 SrcToUnwindDest[BB] = Dest; 53 if (!UnwindDestToSrcs.count(Dest)) 54 UnwindDestToSrcs[Dest] = SmallPtrSet<BBOrMBB, 4>(); 55 UnwindDestToSrcs[Dest].insert(BB); 77 void setUnwindDest(MachineBasicBlock *MBB, MachineBasicBlock *Dest) { 78 SrcToUnwindDest[MBB] = Dest; 79 if (!UnwindDestToSrcs.count(Dest)) 80 UnwindDestToSrcs[Dest] = SmallPtrSet<BBOrMBB, 4>(); 81 UnwindDestToSrcs[Dest].insert(MBB) [all...] |
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| efirtlib.h | 60 IN VOID *Dest, 68 IN CONST VOID *Dest, 84 IN CHAR16 *Dest, 91 IN CHAR16 *Dest, 99 IN CHAR16 *Dest, 106 IN CHAR16 *Dest, 114 IN CHAR16 *Dest, 121 IN CHAR16 *Dest,
|
| /src/sys/external/bsd/gnu-efi/dist/lib/ |
| str.c | 110 IN CHAR16 *Dest, 115 RtStrCpy (Dest, Src); 120 IN CHAR16 *Dest, 126 RtStrnCpy (Dest, Src, Len); 131 IN CHAR16 *Dest, 136 return RtStpCpy (Dest, Src); 141 IN CHAR16 *Dest, 147 return RtStpnCpy (Dest, Src, Len); 152 IN CHAR16 *Dest, 156 RtStrCat(Dest, Src) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| TypeStreamMerger.h | 28 /// \param Dest The table to store the re-written type records into. 38 Error mergeTypeRecords(MergingTypeTableBuilder &Dest, 47 /// the mapping from source to dest for that stream so that it can re-write 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,
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/ |
| Execution.cpp | 49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { 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, 119 static void executeFSubInst(GenericValue &Dest, GenericValue Src1, 130 static void executeFMulInst(GenericValue &Dest, GenericValue Src1, 141 static void executeFDivInst(GenericValue &Dest, GenericValue Src1, 152 static void executeFRemInst(GenericValue &Dest, GenericValue Src1, 156 Dest.FloatVal = fmod(Src1.FloatVal, Src2.FloatVal) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| TypeStreamMerger.cpp | 81 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, 243 DestTypeStream = &Dest; 249 Error TypeStreamMerger::mergeIdRecords(MergingTypeTableBuilder &Dest, 252 DestIdStream = &Dest; 272 Error TypeStreamMerger::mergeTypeRecords(GlobalTypeTableBuilder &Dest, 276 DestGlobalTypeStream = &Dest; [all...] |
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| linker.go | 23 func LinkModules(Dest, Src Module) error { 24 failed := C.LLVMLinkModules2(Dest.C, Src.C)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| BinaryStreamReader.h | 68 /// 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) { 83 Dest = llvm::support::endian::read<T, llvm::support::unaligned>( 89 template <typename T> Error readEnum(T &Dest) { 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); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| BinaryStreamReader.cpp | 44 Error BinaryStreamReader::readULEB128(uint64_t &Dest) { 55 Dest = decodeULEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); 59 Error BinaryStreamReader::readSLEB128(int64_t &Dest) { 70 Dest = decodeSLEB128(EncodedBytes.begin(), nullptr, EncodedBytes.end()); 74 Error BinaryStreamReader::readCString(StringRef &Dest) { 94 if (auto EC = readFixedString(Dest, Length)) 102 Error BinaryStreamReader::readWideString(ArrayRef<UTF16> &Dest) { 116 if (auto EC = readArray(Dest, Length)) 122 Error BinaryStreamReader::readFixedString(StringRef &Dest, uint32_t Length) { 126 Dest = StringRef(reinterpret_cast<const char *>(Bytes.begin()), Bytes.size()) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCBranchSelector.cpp | 58 const MachineBasicBlock *Dest, 205 /// Determine the offset from the branch in Src block to the Dest block. 209 const MachineBasicBlock *Dest, 214 if (Dest->getNumber() <= Src->getNumber()) { 217 // from this block to the dest. 221 int DestBlock = Dest->getNumber(); 232 // dest to the number of bytes left in this block. 236 MaxAlign = std::max(MaxAlign, Dest->getAlignment()); 237 for (unsigned i = StartBlock+1, e = Dest->getNumber(); i != e; ++i) { 334 MachineBasicBlock *Dest = nullptr [all...] |
| PPCExpandISEL.cpp | 205 MachineOperand &Dest = (*I)->getOperand(0); 212 if (useSameRegister(Dest, TrueValue) && 213 useSameRegister(Dest, FalseValue)) { 235 .add(Dest) 272 MachineOperand &Dest = (*MI)->getOperand(0); 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) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/ |
| Linker.h | 39 /// shadow those in the Dest. 50 static bool linkModules(Module &Dest, std::unique_ptr<Module> Src,
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGBuilder.h | 285 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, llvm::Value *Size, 287 return CreateMemCpy(Dest.getPointer(), Dest.getAlignment().getAsAlign(), 291 llvm::CallInst *CreateMemCpy(Address Dest, Address Src, uint64_t Size, 293 return CreateMemCpy(Dest.getPointer(), Dest.getAlignment().getAsAlign(), 299 llvm::CallInst *CreateMemCpyInline(Address Dest, Address Src, uint64_t Size) { 301 Dest.getPointer(), Dest.getAlignment().getAsAlign(), Src.getPointer(), 306 llvm::CallInst *CreateMemMove(Address Dest, Address Src, llvm::Value *Size [all...] |
| CGExprAgg.cpp | 40 AggValueSlot Dest; 44 if (!Dest.isIgnored()) return Dest; 48 if (!Dest.isIgnored()) return; 49 Dest = CGF.CreateAggTemp(T, "agg.tmp.ensured"); 53 // to do so. If a temporary is created, an appropriate copy into `Dest` will 62 AggExprEmitter(CodeGenFunction &cgf, AggValueSlot Dest, bool IsResultUnused) 63 : CGF(cgf), Builder(CGF.Builder), Dest(Dest), 85 void EmitCopy(QualType type, const AggValueSlot &dest, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Linker/ |
| LinkModules.cpp | 55 bool shouldLinkFromSource(bool &LinkFromSrc, const GlobalValue &Dest, 92 // If we found a global with the same name in the dest module, but it has 241 const GlobalValue &Dest, 251 if (Src.hasAppendingLinkage() || Dest.hasAppendingLinkage()) { 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 [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| BuildLibCalls.h | 121 Value *emitSNPrintf(Value *Dest, Value *Size, Value *Fmt, 126 Value *emitSPrintf(Value *Dest, Value *Fmt, ArrayRef<Value *> VariadicArgs, 130 Value *emitStrCat(Value *Dest, Value *Src, IRBuilderBase &B, 134 Value *emitStrLCpy(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B, 138 Value *emitStrLCat(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B, 142 Value *emitStrNCat(Value *Dest, Value *Src, Value *Size, IRBuilderBase &B, 146 Value *emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt, Value *VAList, 150 Value *emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList, IRBuilderBase &B,
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| MIParser.cpp | 447 bool parseRegisterOperand(MachineOperand &Dest, 449 bool parseImmediateOperand(MachineOperand &Dest); 454 bool parseTypedImmediateOperand(MachineOperand &Dest); 455 bool parseFPImmediateOperand(MachineOperand &Dest); 457 bool parseMBBOperand(MachineOperand &Dest); 459 bool parseStackObjectOperand(MachineOperand &Dest); 461 bool parseFixedStackObjectOperand(MachineOperand &Dest); 463 bool parseGlobalAddressOperand(MachineOperand &Dest); 464 bool parseConstantPoolIndexOperand(MachineOperand &Dest); 465 bool parseSubRegisterIndexOperand(MachineOperand &Dest); [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/FuzzMutate/ |
| FuzzerCLI.h | 65 /// \param Dest Location to store serialized module 68 /// returns 0 and leaves Dest unchanged. 69 size_t writeModule(const Module &M, uint8_t *Dest, size_t MaxSize);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXImageOptimizer.cpp | 155 BasicBlock *Dest; 158 Dest = BI->getSuccessor(1); 161 Dest = BI->getSuccessor(0); 162 BranchInst::Create(Dest, BI);
|