| /src/external/bsd/elftosb/dist/common/ |
| Blob.cpp | 2 * File: Blob.cpp 8 #include "Blob.h" 13 Blob::Blob() 21 Blob::Blob(const uint8_t * data, unsigned length) 31 Blob::Blob(const Blob & other) 40 Blob::~Blob( [all...] |
| Blob.h | 2 * File: Blob.h 18 class Blob 22 Blob(); 25 Blob(const uint8_t * data, unsigned length); 28 Blob(const Blob & other); 31 virtual ~Blob(); 35 //! \brief Replaces the blob's data. 38 //! \brief Change the size of the blob's data. 41 //! \brief Adds data to the end of the blob [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| SerializedDiagnosticReader.cpp | 252 StringRef Blob; 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)))
|
| TestModuleFileExtension.cpp | 31 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message 70 StringRef Blob; 72 Stream.readRecord(Entry.ID, Record, &Blob); 78 StringRef Message = Blob.substr(0, Record[0]);
|
| /src/external/apache2/llvm/dist/llvm/lib/Remarks/ |
| BitstreamRemarkSerializer.cpp | 87 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Raw table. 98 // Serialize to a blob. 102 StringRef Blob = OS.str(); 103 Bitstream.EmitRecordWithBlob(RecordMetaStrTabAbbrevID, R, Blob); 111 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Filename.
|
| BitstreamRemarkParser.cpp | 46 StringRef Blob; 47 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob); 68 Parser.StrTabBuf = Blob; 74 Parser.ExternalFilePath = Blob; 93 StringRef Blob; 94 Expected<unsigned> RecordID = Stream.readRecord(Code, Record, &Blob);
|
| /src/crypto/external/cpl/trousers/dist/src/tspi/ |
| tsp_auth.c | 369 BYTE Blob[61]; 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]; 744 Trspi_LoadBlob(&offset, ulSizeDigestHmac, Blob, rgbParamDigest); 745 Trspi_LoadBlob(&offset, ulSizeNonces, Blob, rgbNonceEven); 746 Trspi_LoadBlob(&offset, ulSizeNonces, Blob, rgbNonceOdd) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/ |
| BitCodes.h | 106 Blob = 5 // 32-bit aligned array of 8-bit characters. 134 case Blob:
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| BitcodeAnalyzer.cpp | 395 return "BLOB"; 402 return "BLOB"; 512 StringRef Blob, 514 if (Blob.empty()) 515 return reportError("Cannot decode empty blob."); 519 "Decoding metadata strings blob needs two record entries."); 525 StringRef Lengths = Blob.slice(0, StringsOffset); 527 StringRef Strings = Blob.drop_front(StringsOffset); 848 StringRef Blob; 850 Expected<unsigned> MaybeCode = Stream.readRecord(Entry.ID, Record, &Blob); [all...] |
| MetadataLoader.cpp | 484 PlaceholderQueue &Placeholders, StringRef Blob, 486 Error parseMetadataStrings(ArrayRef<uint64_t> Record, StringRef Blob, 727 StringRef Blob; 730 IndexCursor.readRecord(Entry.ID, Record, &Blob)) 739 if (auto Err = parseMetadataStrings(Record, Blob, IndexNextMDString)) 1048 StringRef Blob; 1051 Stream.readRecord(Entry.ID, Record, &Blob)) { 1053 Blob, NextMetadataNo)) 1080 StringRef Blob; 1093 IndexCursor.readRecord(Entry.ID, Record, &Blob)) { [all...] |
| BitcodeReader.cpp | 6687 StringRef Blob; 6690 Stream.readRecord(Entry.ID, Record, &Blob); 6694 Strtab = Blob;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
| AMDGPUTargetStreamer.cpp | 481 std::string Blob; 484 getPALMetadata()->toBlob(Type, Blob); 485 if (Blob.empty()) 487 EmitNote(Vendor, MCConstantExpr::create(Blob.size(), getContext()), Type, 488 [&](MCELFStreamer &OS) { OS.emitBytes(Blob); });
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| GlobalModuleIndex.cpp | 180 StringRef Blob; 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; 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.data())) [all...] |
| ASTReader.cpp | 1170 StringRef Blob; 1178 Expected<unsigned> MaybeRecCode = Cursor.readRecord(Code, Record, &Blob); 1200 Blob.data()), 1201 Blob.size() / 4)); 1220 StringRef Blob; 1228 Expected<unsigned> MaybeRecCode = Cursor.readRecord(Code, Record, &Blob); 1241 auto *Data = (const unsigned char*)Blob.data(); 1367 StringRef Blob; 1369 SLocEntryCursor.readRecord(E.ID, Record, &Blob); 1437 StringRef Blob; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/ |
| BitcodeWriter.cpp | 2094 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); 2101 /// record. The sizes and strings themselves are shoved into a blob. 2111 // Emit the sizes of the strings in the blob. 2112 SmallString<256> Blob; 2114 BitstreamWriter W(Blob); 2121 Record.push_back(Blob.size()); 2123 // Add the strings to the blob. 2125 Blob.append(cast<MDString>(MD)->getString()); 2128 Stream.EmitRecordWithBlob(createMetadataStringsAbbrev(), Record, Blob); 4536 void BitcodeWriter::writeBlob(unsigned Block, unsigned Record, StringRef Blob) { [all...] |
| /src/external/public-domain/sqlite/dist/ |
| sqlite3.c | 650 ** [prepared statements], [sqlite3_blob_close | close] all [BLOB handles], and 654 ** statements, BLOB handlers, and/or unfinished sqlite3_backup objects then 657 ** statements, unclosed BLOB handlers, and/or unfinished sqlite3_backups, 661 ** connection after all prepared statements are finalized, all BLOB handles 789 #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */ 4679 ** <dd>The maximum size of any string or BLOB or table row, in bytes.<dd>)^ 5258 ** ^The fifth argument to the BLOB and string binding interfaces controls 5261 ** ^ (1) A destructor to dispose of the BLOB or string after SQLite has finished 5262 ** with it may be passed. ^It is called to dispose of the BLOB or string even 5288 ** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N tha [all...] |