HomeSort by relevance Sort by last modified time
    Searched refs:blob (Results 251 - 275 of 601) sorted by null

<<11121314151617181920>>

  /hardware/google/av/media/sfplugin/tests/
ReflectedParamUpdater_test.cpp 58 uint8_t blob[8]; member in struct:android::__anon47166::C2CompositeStruct
67 C2FIELD(blob, "blob")
68 C2FIELD(flexBlob, "flex-blob")
255 msg.emplace("composite.blob", ABuffer::CreateAsCopy("buffer08", 8));
256 msg.emplace("composite.flex-blob", ABuffer::CreateAsCopy("flex-buffer-14", 14));
276 EXPECT_EQ(0, memcmp("\0\0\0\0\0\0\0\0", CastParam<C2CompositeInfo>(params[0])->m.blob, 8));
284 EXPECT_EQ(0, memcmp("buffer08", CastParam<C2CompositeInfo>(params[0])->m.blob, 8));
286 hexdump(CastParam<C2CompositeInfo>(params[0])->m.blob, 8, 0, &hex);
293 // test setting and zero extending shorter blob than allowe
    [all...]
  /external/libdrm/
xf86drmMode.c 690 struct drm_mode_get_blob blob; local
693 memclear(blob);
694 blob.blob_id = blob_id;
696 if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPBLOB, &blob))
699 if (blob.length)
700 blob.data = VOID2U64(drmMalloc(blob.length));
702 if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPBLOB, &blob)) {
710 r->id = blob.blob_id;
711 r->length = blob.length
1198 void *blob; member in struct:_drmModePropertySetItem
    [all...]
  /system/keymaster/android_keymaster/
android_keymaster_messages.cpp 53 static size_t blob_size(const keymaster_blob_t& blob) {
54 return sizeof(uint32_t) /* data size */ + blob.data_length;
57 static uint8_t* serialize_blob(const keymaster_blob_t& blob, uint8_t* buf, const uint8_t* end) {
58 return append_size_and_data_to_buf(buf, end, blob.data, blob.data_length);
61 static bool deserialize_blob(keymaster_blob_t* blob, const uint8_t** buf_ptr, const uint8_t* end) {
62 delete[] blob->data;
63 *blob = {};
65 if (!copy_size_and_data_from_buf(buf_ptr, end, &blob->data_length, &deserialized_blob))
67 blob->data = deserialized_blob.release()
    [all...]
  /external/skqp/src/gpu/text/
GrAtlasTextBlob.h 31 // With this flag enabled, the GrAtlasTextContext will, as a sanity check, regenerate every blob
38 * texture coordinates. The GrAtlasTextBlob itself has a few Blob-wide properties, and also
39 * consists of a number of runs. Runs inside a blob are flushed individually so they can be
43 * the GrAtlas will not evict anything the Blob needs.
58 * We currently force regeneration of a blob if old or new matrix differ in having perspective.
97 static const Key& GetKey(const GrAtlasTextBlob& blob) {
98 return blob.fKey;
106 GrAtlasTextBlob* blob = reinterpret_cast<GrAtlasTextBlob*>(p); local
107 blob->fPool->release(p);
170 // Appends a glyph to the blob. If the glyph is too large, the glyph will be appende
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/phonelookup/
PhoneLookupDataSource.java 321 byte[] blob = cursor.getBlob(numberColumn);
322 if (blob == null) {
327 numbers.add(DialerPhoneNumber.parseFrom(blob));
382 byte[] blob = cursor.getBlob(numberColumn);
383 if (blob == null) {
389 dialerPhoneNumber = DialerPhoneNumber.parseFrom(blob);
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 115 blob = f.read(blob_size)
117 assert(len(blob) == blob_size)
124 f2.write(blob)
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 377 const void* blob,
382 if (blob) {
385 context = reinterpret_cast<const ExceptionHandler::CrashContext*>(blob);
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegProcessor.cpp 378 struct camera2_jpeg_blob *blob = (struct camera2_jpeg_blob*)(header); local
379 if (blob->jpeg_blob_id == CAMERA2_JPEG_BLOB_ID) {
380 size = blob->jpeg_size;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
TestUtils.java 174 byte[] blob = c.getBlob(i);
175 sb.append("([blob] ");
176 sb.append(blob == null ? "null" : blob.length + "b");
  /external/ImageMagick/MagickCore/
utility.c 45 #include "MagickCore/blob.h"
483 % char *Base64Encode(const unsigned char *blob,const size_t blob_length,
488 % o blob: A pointer to binary data to encode.
495 MagickExport char *Base64Encode(const unsigned char *blob,
511 assert(blob != (const unsigned char *) NULL);
519 for (p=blob; p < (blob+blob_length-2); p+=3)
    [all...]
Android.mk 72 blob.c\
image.h 134 #include "MagickCore/blob.h"
331 *blob; /* image file as in-memory string of 'extent' */ member in struct:_Image
465 *blob; member in struct:_ImageInfo
  /external/javasqlite/src/main/java/SQLite/
Database.java 722 * Open an SQLite3 blob. Only available in SQLite 3.4.0 and above.
728 * @return a Blob object
731 public Blob open_blob(String db, String table, String column,
734 Blob blob = new Blob(); local
735 _open_blob(db, table, column, row, rw, blob);
736 return blob;
776 * Internal SQLite open blob method.
782 * @param blob Blob objec
    [all...]
  /external/libbrillo/brillo/message_loops/
message_loop_unittest.cc 345 std::vector<char> blob(1000, 'a');
346 EXPECT_EQ(blob.size(),
347 HANDLE_EINTR(write(pipes[i].writer, blob.data(), blob.size())));
  /external/skia/include/utils/
SkLuaCanvas.h 43 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /external/skia/src/gpu/text/
GrAtlasTextBlobVertexRegenerator.cpp 194 Regenerator::VertexRegenerator(GrResourceProvider* resourceProvider, GrAtlasTextBlob* blob,
201 , fBlob(blob)
206 , fRun(&blob->fRuns[runIdx])
207 , fSubRun(&blob->fRuns[runIdx].fSubRunInfo[subRunIdx])
212 // Because the GrGlyphCache may evict the strike a blob depends on using for
  /external/skqp/include/utils/
SkLuaCanvas.h 43 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
  /frameworks/base/core/jni/
android_os_Parcel.cpp 215 android::Parcel::WritableBlob blob; local
216 android::status_t err2 = parcel->writeBlob(length, false, &blob);
224 memset(blob.data(), 0, length);
226 memcpy(blob.data(), ar + offset, length);
230 blob.release();
379 android::Parcel::ReadableBlob blob; local
380 android::status_t err = parcel->readBlob(len, &blob);
390 memcpy(a2, blob.data(), len);
394 blob.release();
  /hardware/interfaces/keymaster/4.0/support/include/keymasterV4_0/
keymaster_tags.h 193 MAKE_TAG_VALUE_ACCESSOR(TagType::BYTES, blob)
194 MAKE_TAG_VALUE_ACCESSOR(TagType::BIGNUM, blob)
401 return a.blob == b.blob;
  /external/skia/tools/shape/
SkShaper_harfbuzz.cpp 39 HBBlob blob; local
41 blob.reset(hb_blob_create((char*)base, SkToUInt(size),
48 blob.reset(hb_blob_create((char*)ptr, SkToUInt(size),
51 SkASSERT(blob);
52 hb_blob_make_immutable(blob.get());
53 return blob;
58 HBBlob blob(stream_to_blob(std::unique_ptr<SkStreamAsset>(tf->openStream(&index))));
59 HBFace face(hb_face_create(blob.get(), (unsigned)index));
  /external/skqp/tools/shape/
SkShaper_harfbuzz.cpp 37 HBBlob blob; local
39 blob.reset(hb_blob_create((char*)base, SkToUInt(size),
46 blob.reset(hb_blob_create((char*)ptr, SkToUInt(size),
49 SkASSERT(blob);
50 hb_blob_make_immutable(blob.get());
51 return blob;
56 HBBlob blob(stream_to_blob(std::unique_ptr<SkStreamAsset>(tf->openStream(&index))));
57 HBFace face(hb_face_create(blob.get(), (unsigned)index));
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 128 * Alternatively, a named configuration blob can be used by setting
129 * this to blob://blob_name.
155 * Alternatively, a named configuration blob can be used by setting
156 * this to blob://blob_name.
    [all...]
preauth_test.c 166 struct wpa_config_blob *blob)
169 wpa_config_set_blob(wpa_s->conf, blob);
  /frameworks/minikin/libs/minikin/
FontFamily.cpp 63 HbBlobUniquePtr blob(hb_blob_create(buf, size, HB_MEMORY_MODE_READONLY, nullptr, nullptr));
64 HbFaceUniquePtr face(hb_face_create(blob.get(), ttcIndex));
  /hardware/google/av/codec2/vndk/util/
C2ParamUtils.cpp 195 /// safe(r) parsing from parameter blob
197 C2Param *C2ParamUtils::ParseFirst(const uint8_t *blob, size_t size) {
203 C2Param *param = (C2Param*)blob;

Completed in 2292 milliseconds

<<11121314151617181920>>