Searched refs:blob (Results 1 - 25 of 266) sorted by relevance

1234567891011

/external/harfbuzz_ng/src/
H A Dhb-blob.cc68 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...]
H A Dhb-blob.h43 * that is passed to HarfBuzz in a blob. If there is
75 * Even if the parent blob is writable, we don't
76 * want the user of the sub-blob to be able to
89 hb_blob_reference (hb_blob_t *blob);
92 hb_blob_destroy (hb_blob_t *blob);
95 hb_blob_set_user_data (hb_blob_t *blob,
103 hb_blob_get_user_data (hb_blob_t *blob,
108 hb_blob_make_immutable (hb_blob_t *blob);
111 hb_blob_is_immutable (hb_blob_t *blob);
115 hb_blob_get_length (hb_blob_t *blob);
[all...]
H A Dhb-face-private.hh71 hb_blob_t *blob; local
76 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
77 if (unlikely (!blob))
80 return blob;
H A Dtest-size-params.cc46 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 Dtest-would-substitute.cc50 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;
/external/vboot_reference/tests/futility/
H A Dtest_gbb_utility.sh18 ${FUTILITY} gbb_utility -c 16,0x10,16,0x10 ${TMP}.blob
21 ${FUTILITY} gbb_utility -s --flags=0xdeadbeef ${TMP}.blob
22 ${FUTILITY} gbb_utility -g --flags ${TMP}.blob | grep -i 0xdeadbeef
25 if ${FUTILITY} gbb_utility -s --hwid="0123456789ABCDEF" ${TMP}.blob; then
29 ${FUTILITY} gbb_utility -s --hwid="0123456789ABCDE" ${TMP}.blob
31 ${FUTILITY} gbb_utility -g ${TMP}.blob | grep "0123456789ABCDE"
39 if ${FUTILITY} gbb_utility -s --rootkey ${TMP}.data1.toolong ${TMP}.blob; then false; fi
40 if ${FUTILITY} gbb_utility -s --recoverykey ${TMP}.data2.toolong ${TMP}.blob; then false; fi
41 if ${FUTILITY} gbb_utility -s --bmpfv ${TMP}.data3.toolong ${TMP}.blob; then false; fi
50 --bmpfv ${TMP}.data3.short ${TMP}.blob
[all...]
/external/libtextclassifier/common/memory_image/
H A Din-memory-model-data.cc31 DataBlobView blob = data_store_.GetData(kTaskSpecDataStoreEntryName); local
32 if (blob.data() == nullptr) {
33 TC_LOG(ERROR) << "Can't find data blob for TaskSpec, i.e., entry "
38 blob.to_stringpiece(), task_spec);
49 DataBlobView blob = data_store_.GetData(file_name); local
50 return StringPiece(reinterpret_cast<const char *>(blob.data()),
51 blob.size());
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java7 * 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/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_none.c40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
/external/skia/src/gpu/text/
H A DGrTextBlobCache.h35 // creates an uncached blob
40 sk_sp<GrAtlasTextBlob> makeBlob(const SkTextBlob* blob) { argument
43 BlobGlyphCount(&glyphCount, &runCount, blob);
47 sk_sp<GrAtlasTextBlob> makeCachedBlob(const SkTextBlob* blob, argument
51 sk_sp<GrAtlasTextBlob> cacheBlob(this->makeBlob(blob));
54 blob->notifyAddedToCache();
63 void remove(GrAtlasTextBlob* blob) { argument
64 auto id = GrAtlasTextBlob::GetKey(*blob).fUniqueID;
68 fBlobList.remove(blob);
69 idEntry->removeBlob(blob);
75 makeMRU(GrAtlasTextBlob* blob) argument
87 BlobGlyphCount(int* glyphCount, int* runCount, const SkTextBlob* blob) argument
116 addBlob(sk_sp<GrAtlasTextBlob> blob) argument
124 removeBlob(GrAtlasTextBlob* blob) argument
154 add(sk_sp<GrAtlasTextBlob> blob) argument
[all...]
H A DGrTextBlobCache.cpp18 for (const auto& blob : entry->fBlobs) {
19 fBlobList.remove(blob.get());
/external/dtc/tests/
H A Ddumptrees.c33 void *blob; member in struct:__anon4974
49 void *blob = trees[i].blob; local
55 size = fdt_totalsize(blob);
63 ret = write(fd, blob, size);
/external/ImageMagick/PerlMagick/t/
H A Dping.t27 my (@blob, $filename, $format, $height, $image, $size, $status, $width);
44 print("Ping blob ...\n");
48 @blob=$image->ImageToBlob();
51 ($width, $height, $size, $format)=$image->Ping(blob=>@blob);
52 undef @blob;
H A Dblob.t27 @blob = $image->ImageToBlob();
31 $image->BlobToImage( @blob );
/external/libbrillo/brillo/
H A Dsecure_blob_unittest.cc47 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/dtc/
H A Dfdtput.c167 static int store_key_value(char **blob, const char *node_name, argument
173 node = fdt_path_offset(*blob, node_name);
179 err = fdt_setprop(*blob, node, property, buf, len);
181 *blob = realloc_property(*blob, node, property, len);
182 err = fdt_setprop(*blob, node, property, buf, len);
197 * @param blob FDT blob to write into
201 static int create_paths(char **blob, const char *in_path) argument
217 node = fdt_subnode_offset_namelen(*blob, offse
244 create_node(char **blob, const char *node_name) argument
283 delete_prop(char *blob, const char *node_name, const char *prop_name) argument
309 delete_node(char *blob, const char *node_name) argument
332 char *blob; local
[all...]
H A Dfdtget.c118 * @param blob FDT blob
122 static int list_properties(const void *blob, int node) argument
128 prop = fdt_first_property_offset(blob, node);
133 data = fdt_get_property_by_offset(blob, prop, NULL);
134 name = fdt_string(blob, fdt32_to_cpu(data->nameoff));
137 prop = fdt_next_property_offset(blob, prop);
146 * @param blob FDT blob
150 static int list_subnodes(const void *blob, in argument
206 show_data_for_item(const void *blob, struct display_info *disp, int node, const char *property) argument
253 char *blob; local
[all...]
/external/ImageMagick/MagickCore/
H A Dblob.c49 #include "MagickCore/blob.h"
50 #include "MagickCore/blob-private.h"
187 % AttachBlob() attaches a blob to the BlobInfo structure.
191 % void AttachBlob(BlobInfo *blob_info,const void *blob,const size_t length)
197 % o blob: the address of a character stream in one of the image formats
200 % o length: This size_t integer reflects the length in bytes of the blob.
203 MagickExport void AttachBlob(BlobInfo *blob_info,const void *blob,
215 blob_info->data=(unsigned char *) blob;
232 % BlobToFile() writes a blob to a file. It returns MagickFalse if an error
237 % MagickBooleanType BlobToFile(char *filename,const void *blob,
198 AttachBlob(BlobInfo *blob_info,const void *blob, const size_t length) argument
245 BlobToFile(char *filename,const void *blob, const size_t length,ExceptionInfo *exception) argument
319 BlobToImage(const ImageInfo *image_info,const void *blob, const size_t length,ExceptionInfo *exception) argument
737 *blob; local
978 *blob; local
1174 *blob; local
1536 *blob; local
1788 *blob; local
2633 *blob; local
2751 PingBlob(const ImageInfo *image_info,const void *blob, const size_t length,ExceptionInfo *exception) argument
3893 ReferenceBlob(BlobInfo *blob) argument
[all...]
/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer.h46 // blob: a blob of data from the crashing process. See exception_handler.h
47 // blob_size: the length of |blob| in bytes.
52 const void* blob,
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dminidump_writer.h76 // blob: a blob of data from the crashing process. See exception_handler.h
77 // blob_size: the length of |blob|, in bytes
81 const void* blob, size_t blob_size);
84 const void* blob, size_t blob_size);
97 const void* blob, size_t blob_size,
101 const void* blob, size_t blob_size,
108 const void* blob, size_t blob_size,
113 const void* blob, size_t blob_size,
/external/v8/src/snapshot/
H A Dmksnapshot.cc38 void WriteSnapshot(v8::StartupData blob) const {
40 reinterpret_cast<const i::byte*>(blob.data), blob.raw_size);
46 void MaybeWriteStartupBlob(const i::Vector<const i::byte>& blob) const {
49 size_t written = fwrite(blob.begin(), 1, blob.length(), startup_blob_file_);
50 if (written != static_cast<size_t>(blob.length())) {
56 void MaybeWriteSnapshotFile(const i::Vector<const i::byte>& blob) const {
60 WriteData(blob);
75 fprintf(fp_, " return &blob;\
164 StartupData blob = v8::V8::CreateSnapshotDataBlob(embed_script); local
[all...]
/external/ImageMagick/Magick++/tests/
H A DreadWriteBlob.cpp41 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/libvpx/libvpx/test/android/
H A Dscrape_gtest_log.py41 blob = sys.stdin.read()
43 re.findall(r'{([^}]*.?)}', blob)) + ']'
44 print blob
/external/skia/gm/
H A Dlargeglyphblur.cpp36 sk_sp<SkTextBlob> blob(builder.make());
37 canvas->drawTextBlob(blob, 10, 200, blurPaint);
38 canvas->drawTextBlob(blob, 10, 200, paint);
H A Dclip_error.cpp18 static void draw_text(SkCanvas* canvas, sk_sp<SkTextBlob> blob, argument
25 canvas->drawTextBlob(blob, 0, 256, blurPaint);
26 canvas->drawTextBlob(blob, 0, 477, paint);
62 sk_sp<SkTextBlob> blob(builder.make());
70 draw_text(canvas, blob, paint, blurPaint, clearPaint);
76 draw_text(canvas, blob, paint, blurPaint, clearPaint);

Completed in 700 milliseconds

1234567891011