Searched refs:Data (Results 126 - 150 of 670) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp71 void DWARFYAML::EmitDebugStr(raw_ostream &OS, const DWARFYAML::Data &DI) {
78 void DWARFYAML::EmitDebugAbbrev(raw_ostream &OS, const DWARFYAML::Data &DI) {
94 void DWARFYAML::EmitDebugAranges(raw_ostream &OS, const DWARFYAML::Data &DI) {
194 DumpVisitor(const DWARFYAML::Data &DI, raw_ostream &Out)
199 void DWARFYAML::EmitDebugInfo(raw_ostream &OS, const DWARFYAML::Data &DI) {
212 void DWARFYAML::EmitDebugLine(raw_ostream &OS, const DWARFYAML::Data &DI) {
248 writeVariableSizedInteger(Op.Data, DI.CompileUnits[0].AddrSize, OS,
274 encodeULEB128(Op.Data, OS);
282 writeInteger((uint16_t)Op.Data, OS, DI.IsLittleEndian);
295 using EmitFuncType = void (*)(raw_ostream &, const DWARFYAML::Data
301 std::string Data; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp104 void NVPTXTargetStreamer::emitRawBytes(StringRef Data) { argument
105 MCTargetStreamer::emitRawBytes(Data);
112 unsigned NumElements = Data.size();
122 for (auto It = std::next(Data.bytes_begin(), I * MaxLen),
124 ? Data.bytes_end()
125 : std::next(Data.bytes_begin(), (I + 1) * MaxLen);
H A DNVPTXTargetStreamer.h47 /// Emit the bytes in \p Data into the output.
49 /// This is used to emit bytes in \p Data as sequence of .byte directives.
50 void emitRawBytes(StringRef Data) override;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIO.cpp67 void WriteToFile(const std::string &Data, const std::string &Path) { argument
68 WriteToFile(reinterpret_cast<const uint8_t *>(Data.c_str()), Data.size(),
72 void WriteToFile(const uint8_t *Data, size_t Size, const std::string &Path) { argument
76 fwrite(Data, sizeof(Data[0]), Size, Out);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp93 if (CurCoro.Data) {
94 if (CurCoro.Data->CoroIdExpr)
106 CurCoro.Data = std::unique_ptr<CGCoroData>(new CGCoroData);
107 CurCoro.Data->CoroId = CoroId;
108 CurCoro.Data->CoroIdExpr = CoroIdExpr;
264 return emitSuspendExpression(*this, *CurCoro.Data, E,
265 CurCoro.Data->CurrentAwaitKind, aggSlot,
271 return emitSuspendExpression(*this, *CurCoro.Data, E, AwaitKind::Yield,
276 ++CurCoro.Data->CoreturnCount;
285 EmitBranchThroughCleanup(CurCoro.Data
[all...]
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dkerberos.c98 Data(Authenticator *ap, int type, const unsigned char *d, int c) function
192 if (!Data(ap, KRB_AUTH, (void *)lauth.dat, lauth.length)) {
249 Data(ap, KRB_REJECT, "No local V4 Realm.", -1);
267 Data(ap, KRB_REJECT, krb_err_txt[r], -1);
277 Data(ap, KRB_ACCEPT, NULL, 0);
279 Data(ap, KRB_REJECT, "user is not authorized", -1);
285 Data(ap, KRB_RESPONSE, NULL, 0);
293 Data(ap, KRB_RESPONSE, NULL, 0);
322 Data(ap, KRB_RESPONSE, challenge, sizeof(challenge));
329 Data(a
[all...]
H A Dkrb4encpwd.c61 * bearing an expiration date established by DIGITAL and RSA Data
68 * from RSA Data Security, Inc., 10 Twin Dolphin Drive, Redwood City, CA
114 Data(ap, type, d, c) function
185 if (!Data(ap, KRB4_ENCPWD_ACK, (void *)NULL, 0)) {
215 Data(ap, KRB4_ENCPWD_REJECT, (void *)"Auth failed", -1);
224 Data(ap, KRB4_ENCPWD_REJECT, (void *)"Illegal password", -1);
230 Data(ap, KRB4_ENCPWD_ACCEPT, (void *)0, 0);
258 Data(ap, KRB4_ENCPWD_CHALLENGE, (void *)challenge, strlen(challenge));
263 Data(ap, KRB4_ENCPWD_REJECT, 0, 0);
317 if (!Data(a
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h75 llvm::DenseMap<internal_key_type, data_type> Data; member in struct:clang::serialization::MultiOnDiskHashTable::MergedTable
162 data_type_builder ValueBuilder(Merged->Data[Key]);
196 /// Add the table \p Data loaded from file \p File.
197 void add(file_type File, storage_type Data, Info InfoObj = Info()) { argument
200 storage_type Ptr = Data;
216 storage_type Buckets = Data + BucketOffset;
223 Buckets, Ptr, Data, std::move(InfoObj));
241 auto It = M->Data.find(Key);
242 if (It != M->Data.end())
269 for (auto &KV : M->Data)
301 insert(typename WriterInfo::key_type_ref Key, typename WriterInfo::data_type_ref Data, WriterInfo &Info) argument
[all...]
H A DGeneratePCH.cpp30 SemaPtr(nullptr), Buffer(std::move(Buffer)), Stream(this->Buffer->Data),
31 Writer(Stream, this->Buffer->Data, ModuleCache, Extensions,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMD5.h4 * This is an OpenSSL-compatible implementation of the RSA Data Security, Inc.
85 void update(ArrayRef<uint8_t> Data);
98 static std::array<uint8_t, 16> hash(ArrayRef<uint8_t> Data);
101 const uint8_t *body(ArrayRef<uint8_t> Data);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp59 void FileWriter::writeData(llvm::ArrayRef<uint8_t> Data) {
60 OS.write(reinterpret_cast<const char *>(Data.data()), Data.size());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/XRay/
H A DXRayRecord.h98 std::string Data; member in struct:llvm::xray::XRayRecord
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiAsmBackend.cpp52 const MCValue &Target, MutableArrayRef<char> Data,
96 MutableArrayRef<char> Data, uint64_t Value,
117 CurVal |= static_cast<uint64_t>(static_cast<uint8_t>(Data[Offset + Idx]))
128 Data[Offset + Idx] = static_cast<uint8_t>((CurVal >> (i * 8)) & 0xff);
94 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool , const MCSubtargetInfo * ) const argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCAsmBackend.cpp54 const MCValue &Target, MutableArrayRef<char> Data,
99 MutableArrayRef<char> Data, uint64_t Value,
107 assert(Offset + Size <= Data.size() && "Invalid fixup offset!");
115 Data[Offset + I] |= uint8_t(Value >> ShiftValue);
96 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool IsResolved, const MCSubtargetInfo *STI) const argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_log_records.h43 char Data[15]; variable
H A Dxray_fdr_log_writer.h72 Serializer::serializeTo(R.Data,
94 DCHECK_NE(Buffer.Data, nullptr);
99 : FDRLogWriter(B, static_cast<char *>(B.Data)) {}
101 template <MetadataRecord::RecordKinds Kind, class... Data>
102 bool writeMetadata(Data &&... Ds) {
106 writeRecord(createMetadataRecord<Kind>(std::forward<Data>(Ds)...));
217 NextRecord = reinterpret_cast<char *>(Buffer.Data);
222 DCHECK_GE(NextRecord - B, reinterpret_cast<char *>(Buffer.Data));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DIMSFFile.h35 ArrayRef<uint8_t> Data) const = 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DRange.h61 void decode(DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset);
68 /// \param Data The binary stream to read the data from.
70 /// \param Offset The byte offset within \a Data.
71 static void skip(DataExtractor &Data, uint64_t &Offset);
108 void decode(DataExtractor &Data, uint64_t BaseAddr, uint64_t &Offset);
115 /// \param Data The binary stream to read the data from.
117 /// \param Offset The byte offset within \a Data.
120 static uint64_t skip(DataExtractor &Data, uint64_t &Offset);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DBinary.cpp38 : TypeID(Type), Data(Source) {}
40 StringRef Binary::getData() const { return Data.getBuffer(); }
42 StringRef Binary::getFileName() const { return Data.getBufferIdentifier(); }
44 MemoryBufferRef Binary::getMemoryBufferRef() const { return Data; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyAsmBackend.cpp48 const MCValue &Target, MutableArrayRef<char> Data,
104 MutableArrayRef<char> Data,
118 assert(Offset + NumBytes <= Data.size() && "Invalid fixup offset!");
123 Data[Offset + I] |= uint8_t((Value >> (I * 8)) & 0xff);
101 applyFixup(const MCAssembler &Asm, const MCFixup &Fixup, const MCValue &Target, MutableArrayRef<char> Data, uint64_t Value, bool IsPCRel, const MCSubtargetInfo *STI) const argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp257 setVector(((const Vec *)(const char *)RHS.Data.buffer)->Elts,
309 ((APSInt*)(char*)Data.buffer)->~APSInt();
311 ((APFloat*)(char*)Data.buffer)->~APFloat();
313 ((APFixedPoint *)(char *)Data.buffer)->~APFixedPoint();
315 ((Vec*)(char*)Data.buffer)->~Vec();
317 ((ComplexAPSInt*)(char*)Data.buffer)->~ComplexAPSInt();
319 ((ComplexAPFloat*)(char*)Data.buffer)->~ComplexAPFloat();
321 ((LV*)(char*)Data.buffer)->~LV();
323 ((Arr*)(char*)Data.buffer)->~Arr();
325 ((StructData*)(char*)Data
[all...]
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dresolve.c728 rr->u.txt = strdup(pRec->Data.NS.pNameHost);
737 size_t hostlen = strnlen(pRec->Data.MX.pNameExchange, DNS_MAX_NAME_LENGTH);
746 strcpy_s(rr->u.mx->domain, hostlen + 1, pRec->Data.MX.pNameExchange);
747 rr->u.mx->preference = pRec->Data.MX.wPreference;
752 size_t hostlen = strnlen(pRec->Data.SRV.pNameTarget, DNS_MAX_NAME_LENGTH);
762 rr->u.srv->priority = pRec->Data.SRV.wPriority;
763 rr->u.srv->weight = pRec->Data.SRV.wWeight;
764 rr->u.srv->port = pRec->Data.SRV.wPort;
765 strcpy_s(rr->u.srv->target, hostlen + 1, pRec->Data.SRV.pNameTarget);
773 if (pRec->Data
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp59 if (Data.empty())
62 Result = decodeULEB128(Data.bytes_begin(), &N);
63 if (N > Data.size())
65 Data = Data.substr(N);
81 if (Result > Data.size())
90 Result = Data.substr(0, Length);
91 Data = Data.substr(Length);
354 Data
560 readCoverageMappingData( InstrProfSymtab &ProfileNames, StringRef Data, std::vector<BinaryCoverageReader::ProfileMappingRecord> &Records, std::vector<StringRef> &Filenames) argument
623 loadTestingFormat(StringRef Data) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp45 LazyRandomTypeCollection::LazyRandomTypeCollection(ArrayRef<uint8_t> Data, argument
50 LazyRandomTypeCollection::LazyRandomTypeCollection(StringRef Data, argument
53 makeArrayRef(Data.bytes_begin(), Data.bytes_end()), RecordCountHint) {
72 void LazyRandomTypeCollection::reset(StringRef Data, uint32_t RecordCountHint) { argument
73 BinaryStreamReader Reader(Data, support::little);
77 void LazyRandomTypeCollection::reset(ArrayRef<uint8_t> Data, argument
79 BinaryStreamReader Reader(Data, support::little);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DNestedNameSpecifier.h238 void *Data = nullptr; member in class:clang::NestedNameSpecifierLoc
254 NestedNameSpecifierLoc(NestedNameSpecifier *Qualifier, void *Data) argument
255 : Qualifier(Qualifier), Data(Data) {}
272 void *getOpaqueData() const { return Data; }
324 return NestedNameSpecifierLoc(Qualifier->getPrefix(), Data);
337 return X.Qualifier == Y.Qualifier && X.Data == Y.Data;

Completed in 191 milliseconds

1234567891011>>