HomeSort by relevance Sort by last modified time
    Searched defs:Blob (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/ImageMagick/Magick++/lib/Magick++/
Blob.h 20 class MagickPPExport Blob
31 Blob(void);
34 Blob(const void* data_,const size_t length_);
37 Blob(const Blob& blob_);
40 virtual ~Blob();
43 Blob& operator=(const Blob& blob_);
51 // free this data since the Blob class manages its own data. The
52 // user must be finished with the data before allowing the Blob t
    [all...]
  /cts/tests/tests/media/libaudiojni/
Blob.h 52 class Blob {
54 Blob(size_t size) :
61 Blob(void *data, size_t size) :
67 ~Blob() {
  /external/ImageMagick/Magick++/lib/
Blob.cpp 6 // Implementation of Blob
13 #include "Magick++/Blob.h"
18 Magick::Blob::Blob(void)
23 Magick::Blob::Blob(const void* data_,const size_t length_)
28 Magick::Blob::Blob(const Magick::Blob& blob_)
35 Magick::Blob::~Blob(
    [all...]
  /system/nvram/messages/
blob.cpp 17 #include <nvram/messages/blob.h>
26 Blob::Blob() {}
28 Blob::~Blob() {
34 Blob::Blob(Blob&& other) : Blob() {
38 Blob& Blob::operator=(Blob&& other)
    [all...]
  /system/nvram/messages/include/nvram/messages/
blob.h 34 class NVRAM_EXPORT Blob {
36 Blob();
37 ~Blob();
39 // Blob is movable, but not copyable since the latter requires memory
41 Blob(const Blob& other) = delete;
42 Blob& operator=(const Blob& other) = delete;
43 Blob(Blob&& other)
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
Blob.java 34 * <code>BLOB</code> value. An SQL <code>BLOB</code> is a built-in type
36 * a database table. By default drivers implement <code>Blob</code> using
37 * an SQL <code>locator(BLOB)</code>, which means that a
38 * <code>Blob</code> object contains a logical pointer to the
39 * SQL <code>BLOB</code> data rather than the data itself.
40 * A <code>Blob</code> object is valid for the duration of the
46 * access an SQL <code>BLOB</code> value.
47 * The <code>Blob</code> interface provides methods for getting the
48 * length of an SQL <code>BLOB</code> (Binary Large Object) value
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 183 StringRef Blob;
184 unsigned RecID = Stream.readRecord(BlockOrCode, Record, &Blob);
195 if ((EC = visitCategoryRecord(Record[0], Blob)))
205 Record[5], Record[6], Blob)))
212 if ((EC = visitDiagFlagRecord(Record[0], Blob)))
220 if ((EC = visitFilenameRecord(Record[0], Record[1], Record[2], Blob)))
229 Location(Record[4], Record[5], Record[6], Record[7]), Blob)))
TestModuleFileExtension.cpp 30 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
64 StringRef Blob;
65 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
68 StringRef Message = Blob.substr(0, Record[0]);
  /external/clang/test/Index/
print-type.cpp 45 struct Blob {
49 int Blob::*member_pointer;
55 auto autoBlob = new Blob();
127 // CHECK: StructDecl=Blob:45:8 (Definition) [type=Blob] [typekind=Record] [isPOD=1] [nbFields=2]
129 // CHECK: VarDecl=member_pointer:49:12 (Definition) [type=int Blob::*] [typekind=MemberPointer] [isPOD=1]
141 // CHECK: VarDecl=autoBlob:55:6 (Definition) [type=Blob *] [typekind=Auto] [canonicaltype=Blob *] [canonicaltypekind=Pointer] [isPOD=1]
142 // CHECK: CXXNewExpr= [type=Blob *] [typekind=Pointer] [isPOD=1] [pointeetype=Blob] [pointeekind=Record
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
model.py 67 class Blob(Node):
187 self.formatter.address('blob()')
  /frameworks/native/opengl/libs/EGL/
BlobCache.h 36 // Create an empty blob cache. The blob cache will cache key/value pairs
124 // A Blob is an immutable sized unstructured data blob.
125 class Blob {
127 Blob(const void* data, size_t size, bool copyData);
128 ~Blob();
130 bool operator<(const Blob& rhs) const;
137 Blob(const Blob&)
    [all...]
BlobCache.cpp 81 std::shared_ptr<Blob> dummyKey(new Blob(key, keySize, false));
88 std::shared_ptr<Blob> keyBlob(new Blob(key, keySize, true));
89 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true));
110 std::shared_ptr<Blob> valueBlob(new Blob(value, valueSize, true));
111 std::shared_ptr<Blob> oldValueBlob(index->getValue());
141 std::shared_ptr<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]
  /system/security/keystore/
blob.h 33 /* Here is the file format. There are two parts in blob.value, the secret and
35 * can be found in blob.length. The description is stored after the secret in
36 * plaintext, and its size is specified in blob.info. The total size of the two
38 * the second is the blob's type, and the third byte is flags. Fields other
39 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
72 "Oops. Blob layout changed.");
87 class Blob {
89 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/AcpiPlatformDxe/
QemuFwCfgAcpi.c 34 // blob. This is the ordering / search
36 UINTN Size; // The number of bytes in this blob.
37 UINT8 *Base; // Pointer to the blob data.
38 BOOLEAN HostsOnlyTableData; // TRUE iff the blob has been found to
41 } BLOB;
66 CONST BLOB *Blob;
68 Blob = UserStruct;
69 return AsciiStrCmp (StandaloneKey, (CONST CHAR8 *)Blob->File);
94 CONST BLOB *Blob1;
    [all...]
  /device/linaro/bootloader/edk2/ArmVirtPkg/Library/PlatformBootManagerLib/
QemuKernel.c 275 blob backing the STUB_FILE that information is
319 CONST KERNEL_BLOB *Blob;
321 Blob = &mKernelBlob[BlobType];
322 Name = Blob->Name;
323 FileSize = Blob->Size;
396 CONST KERNEL_BLOB *Blob;
430 Blob = &mKernelBlob[StubFile->BlobType];
431 if (StubFile->Position > Blob->Size) {
435 Left = Blob->Size - StubFile->Position;
439 if (Blob->Data != NULL) {
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 97 Blob = 5 // 32-bit aligned array of 8-bit characters.
125 case Blob:
  /external/skia/src/gpu/ops/
GrAtlasTextOp.h 31 typedef GrAtlasTextBlob Blob;
35 Blob* fBlob;
  /external/skqp/src/gpu/ops/
GrAtlasTextOp.h 30 typedef GrAtlasTextBlob Blob;
34 Blob* fBlob;
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitCodes.h 94 Blob = 5 // 32-bit aligned array of 8-bit characters.
123 case Blob:
  /frameworks/ml/nn/driver/cache/BlobCache/
BlobCache.h 67 // Create an empty blob cache. The blob cache will cache key/value pairs
205 // A Blob is an immutable sized unstructured data blob.
206 class Blob {
208 Blob(const void* data, size_t size, bool copyData);
209 ~Blob();
211 bool operator<(const Blob& rhs) const;
218 Blob(const Blob&)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitCodes.h 104 Blob = 5 // 32-bit aligned array of 8-bit characters.
132 case Blob:
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Bitcode/
BitCodes.h 104 Blob = 5 // 32-bit aligned array of 8-bit characters.
132 case Blob:
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Bitcode/
BitCodes.h 104 Blob = 5 // 32-bit aligned array of 8-bit characters.
132 case Blob:
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Bitcode/
BitCodes.h 104 Blob = 5 // 32-bit aligned array of 8-bit characters.
132 case Blob:

Completed in 1832 milliseconds

1 2 3