/external/skia/src/gpu/text/ |
H A D | GrTextBlobCache.cpp | 17 GrAtlasTextBlob* blob = &(*iter); local 18 fBlobList.remove(blob); 19 blob->unref();
|
/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | config_none.c | 40 struct wpa_config_blob *blob; local 51 for (blob = config->blobs; blob; blob = blob->next) {
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
H A D | JDBCPreparedStatement.java | 9 boolean blob; field in class:BatchArg 11 BatchArg(String arg, boolean blob) { argument 17 this.blob = blob; 409 blobs[k] = b.blob;
|
/external/ImageMagick/Magick++/tests/ |
H A D | readWriteBlob.cpp | 41 cout << "Failed to stream into blob!" << endl; 45 // Insert data into blob 102 Blob blob(static_cast<const unsigned char*>(blobData), blobLen); 107 // Construct with blob data only 108 Image image( blob ); 121 // Construct with image geometry and blob data 122 Image image( blob, Geometry(148,99)); 135 // Construct default image, and then read in blob data 137 image.read( blob ); 150 // Construct default image, and then read in blob dat 169 Blob blob; local 194 Blob blob; local [all...] |
/external/harfbuzz_ng/src/ |
H A D | test-size-params.cc | 46 hb_blob_t *blob = NULL; local 53 /* Create the blob */ 82 blob = hb_blob_create (font_data, len, mm, user_data, destroy); 86 hb_face_t *face = hb_face_create (blob, 0 /* first face */); 87 hb_blob_destroy (blob); 88 blob = NULL;
|
H A D | test-would-substitute.cc | 50 hb_blob_t *blob = NULL; local 57 /* Create the blob */ 86 blob = hb_blob_create (font_data, len, mm, user_data, destroy); 90 hb_face_t *face = hb_face_create (blob, 0 /* first face */); 91 hb_blob_destroy (blob); 92 blob = NULL;
|
H A D | test-buffer-serialize.cc | 48 hb_blob_t *blob = NULL; local 55 /* Create the blob */ 84 blob = hb_blob_create (font_data, len, mm, user_data, destroy); 87 hb_face_t *face = hb_face_create (blob, 0 /* first face */); 88 hb_blob_destroy (blob); 89 blob = NULL;
|
H A D | hb-face-private.hh | 67 hb_blob_t *blob; local 72 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data); 73 if (unlikely (!blob)) 76 return blob;
|
H A D | sample.py | 25 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata)) variable 26 face = hb.face_create (blob, 0) 27 del blob
|
H A D | test.cc | 49 hb_blob_t *blob = NULL; local 56 /* Create the blob */ 85 blob = hb_blob_create (font_data, len, mm, user_data, destroy); 88 printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob)); 91 hb_face_t *face = hb_face_create (blob, 0 /* first face */); 92 hb_blob_destroy (blob); 93 blob = NULL;
|
H A D | hb-blob.cc | 68 static bool _try_writable (hb_blob_t *blob); 71 _hb_blob_destroy_user_data (hb_blob_t *blob) argument 73 if (blob->destroy) { 74 blob->destroy (blob->user_data); 75 blob->user_data = NULL; 76 blob->destroy = NULL; 82 * @data: Pointer to blob data. 88 * Creates a new "blob" object wrapping @data. The @mode parameter is used 91 * Return value: New blob, o 103 hb_blob_t *blob; local 156 hb_blob_t *blob; local 215 hb_blob_reference(hb_blob_t *blob) argument 233 hb_blob_destroy(hb_blob_t *blob) argument 255 hb_blob_set_user_data(hb_blob_t *blob, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument 276 hb_blob_get_user_data(hb_blob_t *blob, hb_user_data_key_t *key) argument 292 hb_blob_make_immutable(hb_blob_t *blob) argument 311 hb_blob_is_immutable(hb_blob_t *blob) argument 328 hb_blob_get_length(hb_blob_t *blob) argument 345 hb_blob_get_data(hb_blob_t *blob, unsigned int *length) argument 370 hb_blob_get_data_writable(hb_blob_t *blob, unsigned int *length) argument 387 _try_make_writable_inplace_unix(hb_blob_t *blob) argument 430 _try_writable_inplace(hb_blob_t *blob) argument 445 _try_writable(hb_blob_t *blob) argument [all...] |
/external/harfbuzz_ng/test/fuzzing/ |
H A D | hb-fuzzer.cc | 8 hb_blob_t *blob = hb_blob_create((const char *)data, size, local 10 hb_face_t *face = hb_face_create(blob, 0); 37 hb_blob_destroy(blob);
|
/external/libbrillo/brillo/ |
H A D | data_encoding.h | 72 brillo::Blob blob; local 73 if (!Base64Decode(input, &blob)) 75 *output = std::string{blob.begin(), blob.end()};
|
H A D | key_value_store_unittest.cc | 46 string blob = "A=B\n# Comment\n"; local 47 ASSERT_EQ(blob.size(), base::WriteFile(temp_file_, blob.data(), blob.size())); 112 string blob = "TRUE=true\nfalse=false\nvar=false\nDONT_SHOUT=TRUE\n"; local 113 EXPECT_TRUE(store_.LoadFromString(blob));
|
H A D | secure_blob_unittest.cc | 47 SecureBlob blob(32); 49 EXPECT_EQ(32, blob.size()); 57 SecureBlob blob(std::begin(from_data), std::end(from_data)); 59 EXPECT_EQ(sizeof(from_data), blob.size()); 62 EXPECT_EQ(from_data[i], blob[i]); 73 SecureBlob blob(from_blob.begin(), from_blob.end()); 75 EXPECT_EQ(from_blob.size(), blob.size()); 76 EXPECT_TRUE(SecureBlobTest::FindBlobInBlob(from_blob, blob)); 84 SecureBlob blob(length); 85 void* original_data = blob 114 SecureBlob blob = SecureBlob(test_string.begin(), test_string.end()); local [all...] |
/external/libweave/src/ |
H A D | data_encoding.h | 67 std::vector<uint8_t> blob; local 68 if (!Base64Decode(input, &blob)) 70 *output = std::string{blob.begin(), blob.end()};
|
/external/google-breakpad/src/client/linux/crash_generation/ |
H A D | crash_generation_client.cc | 51 virtual bool RequestDump(const void* blob, size_t blob_size) { argument 58 iov.iov_base = const_cast<void*>(blob);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
H A D | d3d11_misc.h | 40 static HRESULT dxbc_assemble_as_blob(struct dxbc_chunk_header** chunks, unsigned num_chunks, ID3D10Blob** blob) argument 45 *blob = new GalliumD3DBlob(p.first, p.second);
|
/external/skia/src/gpu/ |
H A D | GrPathRenderingDrawContext.cpp | 59 const SkMatrix& viewMatrix, const SkTextBlob* blob, 72 skPaint, viewMatrix, this->surfaceProps(), blob, x, 58 drawTextBlob(const GrClip& clip, const SkPaint& skPaint, const SkMatrix& viewMatrix, const SkTextBlob* blob, SkScalar x, SkScalar y, SkDrawFilter* filter, const SkIRect& clipBounds) argument
|
/external/ImageMagick/coders/ |
H A D | inline.c | 44 #include "MagickCore/blob.h" 45 #include "MagickCore/blob-private.h" 202 % supports the saving of more than one frame to the same file or blob, 307 *blob; 335 blob=(unsigned char *) ImageToBlob(write_info,write_image,&blob_length, 339 if (blob == (unsigned char *) NULL) 342 base64=Base64Encode(blob,blob_length,&encode_length); 343 blob=(unsigned char *) RelinquishMagickMemory(blob); 301 *blob; local
|
H A D | jnx.c | 48 #include "MagickCore/blob.h" 49 #include "MagickCore/blob-private.h" 261 *blob; 285 blob=(unsigned char *) AcquireQuantumMemory((size_t) tile_length+2, 286 sizeof(*blob)); 287 if (blob == (unsigned char *) NULL) 293 blob[0]=0xFF; 294 blob[1]=0xD8; 295 count=ReadBlob(image,tile_length,blob+2); 300 blob 257 *blob; local [all...] |
H A D | magick.c | 44 #include "MagickCore/blob.h" 45 #include "MagickCore/blob-private.h" 12987 *blob; 13043 *blob; 13062 blob=(const void *) NULL; 13064 for (i=0; MagickImageList[i].blob != (const void *) NULL; i++) 13069 blob=MagickImageList[i].blob; 13073 if (blob == (const void *) NULL) 13075 image=BlobToImage(blob_info,blob,exten 12985 *blob; member in struct:_MagickImageInfo 13039 *blob; local 13238 *blob; local [all...] |
H A D | mpeg.c | 42 #include "MagickCore/blob.h" 43 #include "MagickCore/blob-private.h" 234 % supports the saving of more than one frame to the same file or blob, 477 *blob; 513 blob=(unsigned char *) NULL; 545 blob=(unsigned char *) FileToBlob(previous_image,~0UL,&length, 553 status=BlobToFile(filename,blob,length,exception); 571 if (blob != (unsigned char *) NULL) 572 blob=(unsigned char *) RelinquishMagickMemory(blob); 470 *blob; local [all...] |
/external/javasqlite/src/main/java/SQLite/ |
H A D | Blob.java | 7 * SQLite 3.4.0 incremental blob I/O interface. 16 private Blob blob; field in class:BlobR 25 * Contruct InputStream from blob instance. 28 BlobR(Blob blob) { argument 29 this.blob = blob; 39 int ret = blob.size - pos; 67 * Close this blob InputStream. 71 blob.close(); 72 blob 162 private Blob blob; field in class:BlobW 174 BlobW(Blob blob) argument [all...] |
/external/dbus/test/ |
H A D | marshal.c | 54 get_uint32 (const gchar *blob, argument 61 blob[offset] | 62 (blob[offset + 1] << 8) | 63 (blob[offset + 2] << 16) | 64 (blob[offset + 3] << 24); 69 (blob[offset] << 24) | 70 (blob[offset + 1] << 16) | 71 (blob[offset + 2] << 8) | 72 blob[offset + 3]; 148 const gchar *blob local 206 const gchar *blob = arg; local [all...] |