Searched refs:Blob (Results 1 - 25 of 46) sorted by relevance

12

/netbsd-current/external/bsd/elftosb/dist/common/
H A DBlob.cpp2 * File: Blob.cpp
8 #include "Blob.h"
13 Blob::Blob() function in class:Blob
21 Blob::Blob(const uint8_t * data, unsigned length) function in class:Blob
31 Blob::Blob(const Blob & other) function in class:Blob
40 Blob
[all...]
H A DBlob.h2 * File: Blob.h
18 class Blob class
22 Blob();
25 Blob(const uint8_t * data, unsigned length);
28 Blob(const Blob & other);
31 virtual ~Blob();
H A DOutputSection.h12 #include "Blob.h"
63 class BinaryDataSection : public OutputSection, public Blob
66 BinaryDataSection() : OutputSection(), Blob() {}
67 BinaryDataSection(uint32_t identifier) : OutputSection(identifier), Blob() {}
H A DDataSourceImager.h10 #include "Blob.h"
18 class DataSourceImager : public Blob
H A DValue.h13 #include "Blob.h"
127 class BinaryValue : public Value, public Blob
130 BinaryValue() : Value(), Blob() {}
H A DDataSourceImager.cpp15 : Blob(),
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.h37 // Returns false if bad format. Blob must remain valid for the lifetime of
39 bool setFromBlob(unsigned Type, StringRef Blob);
139 bool setFromLegacyBlob(StringRef Blob);
140 bool setFromMsgPackBlob(StringRef Blob);
141 void toLegacyBlob(std::string &Blob);
142 void toMsgPackBlob(std::string &Blob);
H A DAMDGPUPALMetadata.cpp68 // Returns false if bad format. Blob must remain valid for the lifetime of the
70 bool AMDGPUPALMetadata::setFromBlob(unsigned Type, StringRef Blob) { argument
73 return setFromLegacyBlob(Blob);
74 return setFromMsgPackBlob(Blob);
78 bool AMDGPUPALMetadata::setFromLegacyBlob(StringRef Blob) { argument
79 auto Data = reinterpret_cast<const uint32_t *>(Blob.data());
80 for (unsigned I = 0; I != Blob.size() / sizeof(uint32_t) / 2; ++I)
86 bool AMDGPUPALMetadata::setFromMsgPackBlob(StringRef Blob) { argument
87 msgpack::Reader Reader(Blob);
88 return MsgPackDoc.readFromBlob(Blob, /*Mult
690 toBlob(unsigned Type, std::string &Blob) argument
697 toLegacyBlob(std::string &Blob) argument
710 toMsgPackBlob(std::string &Blob) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DTestModuleFileExtension.cpp31 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
70 StringRef Blob; local
72 Stream.readRecord(Entry.ID, Record, &Blob);
78 StringRef Message = Blob.substr(0, Record[0]);
H A DSerializedDiagnosticReader.cpp252 StringRef Blob; local
254 Stream.readRecord(BlockOrCode, Record, &Blob);
268 if ((EC = visitCategoryRecord(Record[0], Blob)))
278 Record[5], Record[6], Blob)))
285 if ((EC = visitDiagFlagRecord(Record[0], Blob)))
293 if ((EC = visitFilenameRecord(Record[0], Record[1], Record[2], Blob)))
302 Location(Record[4], Record[5], Record[6], Record[7]), Blob)))
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
H A DBitCodes.h106 Blob = 5 // 32-bit aligned array of 8-bit characters. enumerator in enum:llvm::BitCodeAbbrevOp::Encoding
134 case Blob:
H A DBitstreamWriter.h372 /// data that should be emitted as part of the Blob or Array operand that is
378 StringRef Blob, Optional<unsigned> Code) {
379 const char *BlobData = Blob.data();
380 unsigned BlobLen = (unsigned) Blob.size();
396 Op.getEncoding() != BitCodeAbbrevOp::Blob &&
418 "Blob data and record entries specified for array!");
436 } else if (Op.getEncoding() == BitCodeAbbrevOp::Blob) {
442 "Blob data and record entries specified for blob operand!");
444 assert(Blob.data() == BlobData && "BlobData got moved");
445 assert(Blob
377 EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals, StringRef Blob, Optional<unsigned> Code) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/
H A DBitstreamReader.cpp73 case BitCodeAbbrevOp::Blob:
117 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
120 "Abbreviation starts with an Array or a Blob");
133 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
155 report_fatal_error("Array element type can't be an Array or a Blob");
180 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
181 // Blob case. Read the number of bytes as a vbr6.
207 StringRef *Blob) {
237 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
238 report_fatal_error("Abbreviation starts with an Array or a Blob");
205 readRecord(unsigned AbbrevID, SmallVectorImpl<uint64_t> &Vals, StringRef *Blob) argument
[all...]
/netbsd-current/external/bsd/elftosb/dist/encryptgpk/
H A Dencryptgpk.cpp20 #include "Blob.h"
293 Blob data;
302 Blob gpk = readGPK(m_positionalArgs[0]);
327 Blob readGPK(std::string & path)
335 Blob gpk;
373 void writeCArray(std::ofstream & stream, const Blob & data)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp128 StringRef Blob, bool Multi,
131 msgpack::Reader MPReader(Blob);
247 void Document::writeToBlob(std::string &Blob) { argument
248 Blob.clear();
249 raw_string_ostream OS(Blob);
127 readFromBlob( StringRef Blob, bool Multi, function_ref<int(DocNode *DestNode, DocNode SrcNode, DocNode MapKey)> Merger) argument
/netbsd-current/external/bsd/elftosb/dist/elftosb2/
H A DElftosbLexer.h20 #include "Blob.h"
82 Blob * m_blob; //!< The binary object value as its being constructed.
H A Delftosb_parser.tab.hpp123 Blob * m_blob;
/netbsd-current/external/bsd/elftosb/lib/
H A DMakefile11 Blob.cpp \
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitcodeAnalyzer.h99 StringRef Blob, raw_ostream &OS);
H A DBitcodeWriter.h44 void writeBlob(unsigned Block, unsigned Record, StringRef Blob);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp512 StringRef Blob,
514 if (Blob.empty())
525 StringRef Lengths = Blob.slice(0, StringsOffset);
527 StringRef Strings = Blob.drop_front(StringsOffset);
848 StringRef Blob; local
850 Expected<unsigned> MaybeCode = Stream.readRecord(Entry.ID, Record, &Blob);
959 if (Blob.data()) {
961 if (Error E = decodeMetadataStringsBlob(Indent, Record, Blob, O->OS))
967 O->OS.write_escaped(Blob, /*hex=*/true) << "'";
970 for (unsigned i = 0, e = Blob
510 decodeMetadataStringsBlob(StringRef Indent, ArrayRef<uint64_t> Record, StringRef Blob, raw_ostream &OS) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp50 const char *copyString(StringRef Blob) { argument
51 char *mem = Alloc.Allocate<char>(Blob.size() + 1);
52 memcpy(mem, Blob.data(), Blob.size());
53 mem[Blob.size()] = '\0';
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp180 StringRef Blob; local
182 Cursor.readRecord(Entry.ID, Record, &Blob);
239 (const unsigned char *)Blob.data() + Record[0],
240 (const unsigned char *)Blob.data() + sizeof(uint32_t),
241 (const unsigned char *)Blob.data(), IdentifierIndexReaderTrait());
621 StringRef Blob; local
622 Expected<unsigned> MaybeCode = InStream.readRecord(Entry.ID, Record, &Blob);
691 (const unsigned char *)Blob.data() + Record[0],
692 (const unsigned char *)Blob.data() + sizeof(uint32_t),
693 (const unsigned char *)Blob
[all...]
/netbsd-current/crypto/external/cpl/trousers/dist/src/tspi/
H A Dtsp_auth.c369 BYTE Blob[61]; local
372 Trspi_LoadBlob(&offset, 20, Blob, Digest);
373 Trspi_LoadBlob(&offset, 20, Blob, auth->NonceEven.nonce);
374 Trspi_LoadBlob(&offset, 20, Blob, auth->NonceOdd.nonce);
375 Blob[offset++] = auth->fContinueAuthSession;
377 Trspi_HMAC(TSS_HASH_SHA1, 20, secret, offset, Blob, (BYTE *)&auth->HMAC);
741 BYTE Blob[61]; local
744 Trspi_LoadBlob(&offset, ulSizeDigestHmac, Blob, rgbParamDigest);
745 Trspi_LoadBlob(&offset, ulSizeNonces, Blob, rgbNonceEven);
746 Trspi_LoadBlob(&offset, ulSizeNonces, Blob, rgbNonceOd
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DBitstreamRemarkParser.cpp46 StringRef Blob; local
47 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob);
68 Parser.StrTabBuf = Blob;
74 Parser.ExternalFilePath = Blob;
93 StringRef Blob; local
94 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob);

Completed in 313 milliseconds

12