HomeSort by relevance Sort by last modified time
    Searched defs:blob (Results 126 - 150 of 249) sorted by null

1 2 3 4 56 7 8 910

  /external/harfbuzz_ng/src/
hb-open-type-private.hh 190 blob (nullptr) {}
204 this->blob = hb_blob_reference (b);
210 this->start = hb_blob_get_data (this->blob, nullptr);
211 this->end = this->start + hb_blob_get_length (this->blob);
228 hb_blob_destroy (this->blob);
229 this->blob = nullptr;
300 hb_blob_t *blob; member in struct:OT::hb_sanitize_context_t
309 static hb_blob_t *sanitize (hb_blob_t *blob) {
315 c->init (blob);
324 return blob;
1177 mutable hb_blob_t *blob; member in struct:OT::hb_lazy_table_loader_t
    [all...]
hb-uniscribe.cc 341 /* Destroys blob. */
343 _hb_rename_font (hb_blob_t *blob, wchar_t *new_name)
354 blob = OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (blob);
357 const char *orig_sfnt_data = hb_blob_get_data (blob, &length);
372 hb_blob_destroy (blob);
420 hb_blob_destroy (blob);
429 hb_blob_destroy (blob);
448 hb_blob_t *blob = hb_face_reference_blob (face); local
449 if (unlikely (!hb_blob_get_length (blob)))
    [all...]
hb-coretext.cc 138 hb_blob_t *blob = hb_face_reference_blob (face); local
140 const char *blob_data = hb_blob_get_data (blob, &blob_length);
142 DEBUG_MSG (CORETEXT, face, "Face has empty blob");
144 CGDataProviderRef provider = CGDataProviderCreateWithData (blob, blob_data, blob_length, &release_data);
1326 hb_blob_t *blob = face->reference_table (tags[i]); local
    [all...]
  /external/libdrm/tests/modetest/
modetest.c 225 drmModePropertyBlobPtr blob; local
227 blob = drmModeGetPropertyBlob(dev->fd, blob_id);
228 if (!blob) {
233 blob_data = blob->data;
235 for (i = 0; i < blob->length; i++) {
242 drmModeFreePropertyBlob(blob);
271 printf(" blob");
    [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...]
  /external/skia/src/core/
SkTextBlob.cpp 111 // Each run record describes a text blob run, and can be used to determine the (implicit)
215 static const RunRecord* First(const SkTextBlob* blob) {
216 // The first record (if present) is stored following the blob object.
217 return reinterpret_cast<const RunRecord*>(blob + 1);
246 kLast_Flag = 0x04, // set for the last blob run
350 SkTextBlobRunIterator::SkTextBlobRunIterator(const SkTextBlob* blob)
351 : fCurrentRun(SkTextBlob::RunRecord::First(blob)) {
352 SkDEBUGCODE(fStorageTop = (uint8_t*)blob + blob->fStorageSize;)
429 // The easiest way to accomplish that is to use the blob destructor
723 SkTextBlob* blob = new (fStorage.release()) SkTextBlob(fBounds); local
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.h 36 // With this flag enabled, the GrAtlasTextContext will, as a sanity check, regenerate every blob
43 * texture coordinates. The GrAtlasTextBlob itself has a few Blob-wide properties, and also
44 * consists of a number of runs. Runs inside a blob are flushed individually so they can be
48 * the GrAtlas will not evict anything the Blob needs.
63 * We currently force regeneration of a blob if old or new matrix differ in having perspective.
102 static const Key& GetKey(const GrAtlasTextBlob& blob) {
103 return blob.fKey;
111 GrAtlasTextBlob* blob = reinterpret_cast<GrAtlasTextBlob*>(p); local
112 if (blob->fPool) {
113 blob->fPool->release(p)
    [all...]
  /external/skqp/src/core/
SkTextBlob.cpp 111 // Each run record describes a text blob run, and can be used to determine the (implicit)
215 static const RunRecord* First(const SkTextBlob* blob) {
216 // The first record (if present) is stored following the blob object.
217 return reinterpret_cast<const RunRecord*>(blob + 1);
246 kLast_Flag = 0x04, // set for the last blob run
350 SkTextBlobRunIterator::SkTextBlobRunIterator(const SkTextBlob* blob)
351 : fCurrentRun(SkTextBlob::RunRecord::First(blob)) {
352 SkDEBUGCODE(fStorageTop = (uint8_t*)blob + blob->fStorageSize;)
429 // The easiest way to accomplish that is to use the blob destructor
723 SkTextBlob* blob = new (fStorage.release()) SkTextBlob(fBounds); local
    [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...]
  /external/ImageMagick/MagickCore/
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
nt-base.c 2137 *blob, local
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 1027 *blob; local
    [all...]
  /external/flatbuffers/tests/
test.cpp 1711 auto blob = vec[3].AsBlob(); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config.c 2537 struct wpa_config_blob *blob, *prev; local
3789 struct wpa_config_blob *blob = config->blobs; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 1079 android::Parcel::ReadableBlob blob; local
1216 android::Parcel::WritableBlob blob; local
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
SimpleEntityReadWriteTest.java 442 public void blob() { method in class:SimpleEntityReadWriteTest
  /hardware/google/av/codec2/tests/
C2Param_test.cpp 40 case FD::BLOB: *os << "u8"; break;
119 uint8_t blob[100]; member in struct:C2TestStruct_A
139 { FD::BLOB, 100, "blob", 60, 1 },
141 { FD::BLOB, 100, "y-n", 260, 1 } };
175 C2FieldDescriptor(&((C2TestStruct_A*)(nullptr))->blob, "blob"),
190 C2FieldDescriptor((C2TestStruct_A*)0, &C2TestStruct_A::blob, "blob"),
206 uint8_t blob[100] member in struct:C2TestAStruct
237 uint8_t blob[100]; member in struct:C2TestBStruct
    [all...]
  /hardware/libhardware/include/hardware/
keymaster_defs.h 319 keymaster_blob_t blob; /* KM_BIGNUM and KM_BYTES*/ member in union:__anon48296::__anon48297
524 param.blob.data = (uint8_t*)bytes;
525 param.blob.data_length = bytes_len;
571 if (a->blob.data_length != 0 && b->blob.data_length == 0)
573 if (a->blob.data_length == 0 && b->blob.data_length == 0)
575 if (a->blob.data_length == 0 && b->blob.data_length > 0)
578 retval = memcmp(a->blob.data, b->blob.data, a->blob.data_length < b->blob.data_lengt
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0/
shared-25.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-alpha7/
shared-25.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-beta1/
shared-25.2.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-beta2/
shared-25.2.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-beta3/
shared-25.2.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-rc1/
shared-25.2.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/shared/25.2.0-rc2/
shared-25.2.0-rc2.jar 

Completed in 1224 milliseconds

1 2 3 4 56 7 8 910