HomeSort by relevance Sort by last modified time
    Searched full:blob (Results 151 - 175 of 1661) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/ImageMagick/www/api/
blob.php 55 <p class="text-center"><a href="blob.php#BlobToImage">BlobToImage</a> &bull; <a href="blob.php#FileToImage">FileToImage</a> &bull; <a href="blob.php#GetBlobProperties">GetBlobProperties</a> &bull; <a href="blob.php#ImageToBlob">ImageToBlob</a> &bull; <a href="blob.php#ImageToFile">ImageToFile</a> &bull; <a href="blob.php#ImagesToBlob">ImagesToBlob</a> &bull; <a href="blob.php#InjectImageBlob">InjectImageBlob</a></p>
59 <p>BlobToImage() implements direct to memory image formats. It returns the blob as an image.</p>
64 Image *BlobToImage(const ImageInfo *image_info,const void *blob,
79 <dt>blob</dt
    [all...]
  /external/skia/src/gpu/text/
GrStencilAndCoverTextContext.h 61 const SkTextBlob* blob,
115 static const Key& GetKey(const TextBlob* blob) { return blob->key(); }
118 SkASSERT(key.count() > 1); // 1-length keys should be using the blob-id hash map.
127 // 1-length keys are unterstood to be the blob id and must use the other constructor.
GrTextUtils.cpp 76 void GrTextUtils::DrawBmpText(GrAtlasTextBlob* blob, int runIndex, GrAtlasGlyphCache* fontCache,
87 // Ensure the blob is set for bitmaptext
88 blob->setHasBitmap();
92 SkGlyphCache* cache = blob->setupCache(runIndex, props, scalerContextFlags, paint, &viewMatrix);
100 blob, runIndex, fontCache, &currStrike, glyph,
109 void GrTextUtils::DrawBmpPosText(GrAtlasTextBlob* blob, int runIndex, GrAtlasGlyphCache* fontCache,
122 // Ensure the blob is set for bitmaptext
123 blob->setHasBitmap();
127 SkGlyphCache* cache = blob->setupCache(runIndex, props, scalerContextFlags, paint, &viewMatrix);
136 blob, runIndex, fontCache, &currStrike, glyph
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MockSyntheticPasswordManager.java 43 protected byte[] decryptSPBlob(String blobKeyName, byte[] blob, byte[] applicationId) {
44 if (mBlobs.containsKey(blobKeyName) && !Arrays.equals(mBlobs.get(blobKeyName), blob)) {
47 ByteBuffer buffer = ByteBuffer.allocate(blob.length);
48 buffer.put(blob, 0, blob.length);
  /hardware/libhardware/include/hardware/
keymaster0.h 50 * Generates a public and private key. The key-blob returned is opaque
61 * PKCS#8 format with DER encoding (Java standard). The key-blob
83 * Deletes the key pair associated with the key blob.
105 * Signs data using a key-blob generated before. This can use either
117 * Verifies data signed with a key-blob. This can use either
  /external/dtc/Documentation/
dtc-paper.tex 48 The ``blob'' representing the device tree can be created using \dtc
51 the kernel. The compiler can produce either a binary ``blob'' or an
114 compact, flattened format. The resulting device tree ``blob'' is then
116 its runtime form. This blob is the only data communicated between the
122 device tree blob must be passed in from outside, rather than generated
124 \texttt{kexec} tools build the blob from the runtime device tree
125 before invoking the new kernel. For embedded systems the blob can
137 move the blob around as a whole, without needing to parse or adjust
139 within the blob.
144 practice this means limiting the use of internal offsets in the blob
    [all...]
  /system/keymaster/include/keymaster/
keymaster_context.h 96 * CreateKeyBlob takes authorization sets and key material and produces a key blob and hardware
98 * (Keystore, generally). The blob is integrity-checked and may be encrypted, depending on the
106 KeymasterKeyBlob* blob, AuthorizationSet* hw_enforced,
110 * UpgradeKeyBlob takes an existing blob, parses out key material and constructs a new blob with
118 * ParseKeyBlob takes a blob and extracts authorization sets and key material, returning an
119 * error if the blob fails integrity checking or decryption. Note that the returned key
120 * material may itself be an opaque blob usable only by secure hardware (in the hybrid case).
124 virtual keymaster_error_t ParseKeyBlob(const KeymasterKeyBlob& blob,
134 virtual keymaster_error_t DeleteKey(const KeymasterKeyBlob& /* blob */) const
    [all...]
  /system/nvram/messages/tests/
io_test.cpp 320 Blob blob;
321 ASSERT_TRUE(blob.Resize(1024 * 1024));
322 BlobOutputStreamBuffer buf(&blob);
331 EXPECT_EQ(16U, blob.size());
332 for (size_t i = 0; i < blob.size(); ++i) {
333 EXPECT_EQ(i % 256, blob.data()[i]);
340 EXPECT_EQ(1040U, blob.size());
341 for (size_t i = 0; i < blob.size(); ++i) {
342 EXPECT_EQ(i % 256, blob.data()[i])
    [all...]
nvram_messages_test.cpp 30 Blob blob; local
31 ASSERT_TRUE(Encode(in, &blob));
32 ASSERT_TRUE(Decode(blob.data(), blob.size(), out));
111 const Blob& decoded_auth_value = decoded_payload->authorization_value;
195 const Blob& decoded_auth_value = decoded_payload->authorization_value;
258 const Blob& decoded_buffer = decoded_payload->buffer;
261 const Blob& decoded_auth_value = decoded_payload->authorization_value;
298 const Blob& decoded_auth_value = decoded_payload->authorization_value
    [all...]
  /external/dtc/libfdt/
fdt_overlay.c 10 * @fdto: pointer to the device tree overlay blob
39 * @fdt: Base device tree blob
40 * @fdto: Device tree overlay blob
87 * @fdt: Base device tree blob
88 * @node: Device tree overlay blob
126 * @fdto: Device tree overlay blob
164 * @fdto: Device tree overlay blob
186 * @fdto: Device tree overlay blob
293 * @fdto: Device tree overlay blob
330 * @fdt: Base Device Tree blob
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 61 case BitCodeAbbrevOp::Blob:
82 case BitCodeAbbrevOp::Blob:
120 Op.getEncoding() != BitCodeAbbrevOp::Blob) {
137 report_fatal_error("Array element type can't be an Array or a Blob");
156 assert(Op.getEncoding() == BitCodeAbbrevOp::Blob);
157 // Blob case. Read the number of bytes as a vbr6.
161 // Figure out where the end of this blob will be including tail padding.
171 // Skip over the blob.
178 StringRef *Blob) {
197 CodeOp.getEncoding() == BitCodeAbbrevOp::Blob)
    [all...]
  /system/security/keystore/
keystore.cpp 175 Blob blob; local
176 ResponseCode rc = get(filename, &blob, ::TYPE_ANY, userId);
191 shouldDelete = blob.isEncrypted();
259 ResponseCode KeyStore::get(const char* filename, Blob* keyBlob, const BlobType type, uid_t userId) {
270 * it must be read it again since the blob is encrypted each time
310 ResponseCode KeyStore::put(const char* filename, Blob* keyBlob, uid_t userId) {
317 Blob keyBlob;
470 hidl_vec<uint8_t> blob; local
477 blob = keyBlob
    [all...]
keystore_aidl_hidl_marshalling_utils.cpp 38 android::status_t writeKeymasterBlob(const hidl_vec<uint8_t>& blob, android::Parcel* out) {
39 int32_t size = int32_t(std::min<size_t>(blob.size(), std::numeric_limits<int32_t>::max()));
46 return out->write(&blob[0], size);
67 android::status_t writeBlobAsByteArray(const NullOr<const hidl_vec<uint8_t>&>& blob,
69 if (!blob.isOk()) {
73 int32_t(std::min<size_t>(blob.value().size(), std::numeric_limits<int32_t>::max()));
80 return out->write(&blob.value()[0], size);
108 result.blob = readKeymasterBlob(in);
138 rc = writeKeymasterBlob(param.blob, out);
  /system/update_engine/payload_generator/
ab_generator_unittest.cc 64 brillo::Blob part_data;
77 // Create original operation and blob data.
90 brillo::Blob op_data;
97 brillo::Blob op_blob;
143 // Obtain the expected blob.
144 brillo::Blob first_expected_data(
147 brillo::Blob first_expected_blob;
154 // Check that the actual blob matches what's expected.
155 brillo::Blob first_data_blob(first_op.data_length());
172 // Obtain the expected blob
    [all...]
  /external/libdrm/radeon/
radeon_cs_gem.c 344 bof_t *bcs, *blob, *array, *bo, *size, *handle, *device_id, *root; local
349 root = device_id = bcs = blob = array = bo = size = handle = NULL;
361 blob = bof_blob(csg->nrelocs * 16, csg->relocs);
362 if (blob == NULL)
364 if (bof_object_set(root, "reloc", blob))
366 bof_decref(blob);
367 blob = NULL;
369 blob = bof_blob(cs->cdw * 4, cs->packets);
370 if (blob == NULL)
372 if (bof_object_set(root, "pm4", blob))
    [all...]
  /art/test/044-proxy/
expected.txt 14 Invoke public abstract java.lang.String Shapes.blob()
16 --- blob
17 Success: method blob res=mix
41 Invoke public abstract java.lang.String Shapes.blob()
43 --- blob
44 Success: method blob res=mix
54 Proxy methods: [public final java.lang.String $PROXY_CLASS_NAME0$.blob(), public final double $PROXY_CLASS_NAME0$.blue(int), public final R0a $PROXY_CLASS_NAME0$.checkMe(), public final R0aa $PROXY_CLASS_NAME0$.checkMe(), public final R0base $PROXY_CLASS_NAME0$.checkMe(), public final void $PROXY_CLASS_NAME0$.circle(int), public final boolean $PROXY_CLASS_NAME0$.equals(java.lang.Object), public final void $PROXY_CLASS_NAME0$.getTrace(), public final int $PROXY_CLASS_NAME0$.green(double), public final int $PROXY_CLASS_NAME0$.hashCode(), public final int $PROXY_CLASS_NAME0$.mauve(java.lang.String), public final int $PROXY_CLASS_NAME0$.rectangle(int,int), public final int $PROXY_CLASS_NAME0$.red(float), public final int $PROXY_CLASS_NAME0$.square(int,int), public final java.lang.String $PROXY_CLASS_NAME0$.toString(), public final int $PROXY_CLASS_NAME0$.trapezoid(int,double,int), public final void $PROXY_CLASS_NAME0$.upCheck() throws java.lang.InterruptedException, public final void $PROXY_CLASS_NAME0$.upChuck()]
  /external/dtc/
fdtdump.c 45 static void dump_blob(void *blob, bool debug)
47 uintptr_t blob_off = (uintptr_t)blob;
48 struct fdt_header *bph = blob;
53 (struct fdt_reserve_entry *)((char *)blob + off_mem_rsvmap);
54 const char *p_struct = (const char *)blob + off_dt;
55 const char *p_strings = (const char *)blob + off_str;
206 /* try and locate an embedded fdt in a bigger blob */
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleTest.java 86 assertTrue("top blob needs to be taller than the screen for many of the "
90 assertTrue("bottom blob needs to be taller than the screen for many of the "
94 assertTrue("top blob needs to be lower than the fading edge region",
123 // make sure the blob is indeed partially on screen below
130 // blob should have moved so top of it is at top of screen (with
160 // make sure the blob is indeed partially on screen above
167 // blob should have moved so bottom of it is at bottom of screen
  /system/update_engine/payload_consumer/
bzip_extent_writer_unittest.cc 79 brillo::Blob buf;
95 brillo::Blob compressed_data(std::begin(kCompressedData),
98 const brillo::Blob::size_type kDecompressedLength = 800 * 1024; // 800 KiB
101 brillo::Blob decompressed_data(kDecompressedLength);
115 brillo::Blob original_compressed_data = compressed_data;
116 for (brillo::Blob::size_type i = 0; i < compressed_data.size();
126 brillo::Blob output;
  /external/libese/libese-hw/nxp/pn80t/
linux_spidev.c 62 int platform_toggle_ven(void *blob, int val) {
63 struct Handle *handle = blob;
68 int platform_toggle_reset(void *blob, int val) {
69 struct Handle *handle = blob;
74 int platform_toggle_power_req(void *blob, int val) {
75 struct Handle *handle = blob;
165 int platform_release(void *blob) {
166 struct Handle *handle = blob;
173 int platform_wait(void *blob __attribute__((unused)), long usec) {
  /external/openssh/
key.c 95 key_from_blob(const u_char *blob, u_int blen)
100 if ((r = sshkey_from_blob(blob, blen, &ret)) != 0) {
111 u_char *blob; local
119 if ((r = sshkey_to_blob(key, &blob, &blen)) != 0) {
127 *blobp = blob;
278 key_private_deserialize(struct sshbuf *blob)
283 if ((r = sshkey_private_deserialize(blob, &ret)) != 0) {
310 key_load_file(int fd, const char *filename, struct sshbuf *blob)
314 if ((r = sshkey_load_file(fd, blob)) != 0) {
  /external/skia/include/core/
SkTextBlob.h 27 * Returns a conservative blob bounding box.
32 * Return a non-zero, unique value representing the text blob.
44 * @param SkReadBuffer Serialized blob data.
79 // Call when this blob is part of the key to a cache entry. This allows the cache
153 * @param x,y Position within the blob.
159 * be used when computing the blob bounds, to avoid re-measuring.
182 * @param y Vertical offset within the blob.
188 * be used when computing the blob bounds, to avoid re-measuring.
212 * be used when computing the blob bounds, to avoid re-measuring.
  /external/v8/src/snapshot/
snapshot-common.cc 27 const v8::StartupData* blob = isolate->snapshot_blob(); local
28 if (blob == nullptr) return false;
29 if (blob->data == nullptr) return false;
30 size_t num_contexts = static_cast<size_t>(ExtractNumContexts(blob));
39 const v8::StartupData* blob = isolate->snapshot_blob(); local
40 Vector<const byte> startup_data = ExtractStartupData(blob);
59 const v8::StartupData* blob = isolate->snapshot_blob(); local
61 ExtractContextData(blob, static_cast<int>(context_index));
118 PrintF("Snapshot blob consists of:\n%10d bytes for startup\n",
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 79 " blob_value BLOB, null_value TEXT);");
119 byte[] blob = new byte[] { '1', '2', '3' };
120 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob);
136 MoreAsserts.assertEquals(blob, value);
153 values.put("blob_value", blob);
168 MoreAsserts.assertEquals(blob, value);
181 " blob_value BLOB, null_value TEXT);");
215 byte[] blob = new byte[] { '1', '2', '3' };
216 mInsertHelper.bind(mInsertHelper.getColumnIndex("blob_value"), blob);
232 MoreAsserts.assertEquals(blob, value)
    [all...]
  /external/harfbuzz_ng/src/
sample.py 26 blob = hb.glib_blob_create (GLib.Bytes.new (fontdata)) variable
27 face = hb.face_create (blob, 0)
28 del blob

Completed in 1382 milliseconds

1 2 3 4 5 67 8 91011>>