/external/libdrm/radeon/ |
bof.c | 140 * blob 144 bof_t *blob = bof_object(); local 146 if (blob == NULL) 148 blob->type = BOF_TYPE_BLOB; 149 blob->value = calloc(1, size); 150 if (blob->value == NULL) { 151 bof_decref(blob); 154 blob->size = size; 155 memcpy(blob->value, value, size); 156 blob->size += 12 [all...] |
/packages/services/Car/libvehiclenetwork/native/ |
VehicleNetworkProtoUtil.cpp | 586 WritableBlobHolder blob(new Parcel::WritableBlob()); 587 ASSERT_OR_HANDLE_NO_MEMORY(blob.blob, return NO_MEMORY); 589 parcel.writeBlob(size, false, blob.blob); 590 v->SerializeToArray(blob.blob->data(), size); 600 ReadableBlobHolder blob(new Parcel::ReadableBlob()); 601 ASSERT_OR_HANDLE_NO_MEMORY(blob.blob, return NO_MEMORY) [all...] |
/external/curl/lib/ |
curl_ntlm_core.c | 319 } blob; local 327 /* Setup the key blob structure */ 328 memset(&blob, 0, sizeof(blob)); 329 blob.hdr.bType = PLAINTEXTKEYBLOB; 330 blob.hdr.bVersion = 2; 331 blob.hdr.aiKeyAlg = CALG_DES; 332 blob.len = sizeof(blob.key); 335 extend_key_56_to_64(key_56, blob.key) [all...] |
/external/vboot_reference/futility/ |
cmd_vbutil_firmware.c | 182 uint8_t *blob; local 201 /* Read blob */ 202 blob = ReadFile(infile, &blob_size); 203 if (!blob) { 216 key_block = (VbKeyBlockHeader *) blob; 246 preamble = (VbFirmwarePreambleHeader *) (blob + now);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
config_file.c | 283 struct wpa_config_blob *blob; local 289 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'", 302 "blob", *line); 312 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated " 318 blob = os_zalloc(sizeof(*blob)); 319 if (blob == NULL) { 323 blob->name = os_strdup(name); 324 blob->data = base64_decode(encoded, encoded_len, &blob->len) 340 struct wpa_config_blob *blob; local 1350 struct wpa_config_blob *blob; local [all...] |
/cts/tests/tests/database/src/android/database/sqlite/cts/ |
SQLiteProgramTest.java | 54 "num1 INTEGER, num2 INTEGER, image BLOB);"); 124 "num1 INTEGER, num2 INTEGER, image BLOB);"); 154 "num1 INTEGER, num2 INTEGER, image BLOB);"); 161 byte[] blob = new byte[] { '1', '2', '3' }; 162 statement.bindBlob(4, blob); 180 MoreAsserts.assertEquals(blob, value);
|
/external/skia/gm/ |
mixedtextblobs.cpp | 19 static void draw_blob(SkCanvas* canvas, const SkTextBlob* blob, const SkPaint& skPaint, 29 canvas->drawTextBlob(blob, 0, 0, paint); 32 canvas->drawTextBlob(blob, 0, 0, paint);
|
/external/skia/src/core/ |
SkTextBlob.cpp | 106 // Each run record describes a text blob run, and can be used to determine the (implicit) 155 static const RunRecord* First(const SkTextBlob* blob) { 156 // The first record (if present) is stored following the blob object. 157 return reinterpret_cast<const RunRecord*>(blob + 1); 302 SkTextBlobRunIterator::SkTextBlobRunIterator(const SkTextBlob* blob) 303 : fCurrentRun(SkTextBlob::RunRecord::First(blob)) 304 , fRemainingRuns(blob->fRunCount) { 305 SkDEBUGCODE(fStorageTop = (uint8_t*)blob + blob->fStorageSize;) 369 // The easiest way to accomplish that is to use the blob destructor 627 const SkTextBlob* blob = new (fStorage.detach()) SkTextBlob(fRunCount, fBounds); local [all...] |
/external/skia/src/gpu/text/ |
GrStencilAndCoverTextContext.h | 64 const SkTextBlob* blob, 117 static const Key& GetKey(const TextBlob* blob) { return blob->key(); } 120 SkASSERT(key.count() > 1); // 1-length keys should be using the blob-id hash map. 129 // 1-length keys are unterstood to be the blob id and must use the other constructor.
|
GrStencilAndCoverTextContext.cpp | 141 const SkTextBlob* blob, 147 SkTextBlobRunIterator it(blob); 224 const TextBlob& blob = this->findOrCreateTextBlob(skBlob, skPaint); local 227 TextBlob::Iter iter(blob); 238 // The font-related parameters are baked into the text blob and will override this skPaint, so 246 TextBlob* blob = new TextBlob(skBlob->uniqueID(), skBlob, skPaint); local 247 this->purgeToFit(*blob); 248 fBlobIdCache.set(skBlob->uniqueID(), blob); 249 fLRUList.addToTail(blob); 250 fCacheSize += blob->cpuMemorySize() 263 TextBlob* blob = new TextBlob(key, skBlob, skPaint); local [all...] |
/external/libdrm/tests/modeprint/ |
modeprint.c | 117 drmModePropertyBlobPtr blob; local 119 blob = drmModeGetPropertyBlob(fd, value); 120 if (blob) { 121 printf("blob is %d length, %08X\n", blob->length, *(uint32_t *)blob->data); 122 drmModeFreePropertyBlob(blob); 124 printf("error getting blob %" PRIu64 "\n", value);
|
/device/asus/fugu/self-extractors/google/staging/ |
device-partial.mk | 15 # Google blob(s) necessary for Fugu hardware
|
/device/google/dragon/self-extractors/google_devices/staging/ |
device-partial.mk | 15 # Vendor blob(s) necessary for Dragon hardware
|
/device/htc/flounder/self-extractors/htc/staging/ |
device-partial.mk | 15 # Vendor blob(s) necessary for Flounder hardware
|
/device/huawei/angler/self-extractors/huawei/staging/ |
device-partial.mk | 15 # Vendor blob(s) necessary for Angler hardware
|
/device/lge/bullhead/self-extractors/lge/staging/ |
device-partial.mk | 15 # Vendor blob(s) necessary for Bullhead hardware
|
/external/v8/test/mjsunit/es7/ |
array-includes-to-object-sloppy.js | 6 // https://github.com/tc39/Array.prototype.includes/blob/master/test/number-this.js
|
/external/harfbuzz_ng/src/ |
hb-open-type-private.hh | 195 blob (NULL) {} 209 this->blob = hb_blob_reference (b); 215 this->start = hb_blob_get_data (this->blob, NULL); 216 this->end = this->start + hb_blob_get_length (this->blob); 233 hb_blob_destroy (this->blob); 234 this->blob = NULL; 305 hb_blob_t *blob; member in struct:OT::hb_sanitize_context_t 314 static hb_blob_t *sanitize (hb_blob_t *blob) { 320 c->init (blob); 329 return blob; [all...] |
hb-face.h | 35 #include "hb-blob.h" 47 hb_face_create (hb_blob_t *blob,
|
hb-gobject-structs.cc | 69 HB_DEFINE_OBJECT_TYPE (blob)
|
/cts/tests/tests/database/src/android/database/cts/ |
AbstractWindowedCursorTest.java | 170 byte[] blob = new byte[BLOB_SIZE]; 171 Arrays.fill(blob, TEST_VALUE); 172 assertTrue(mWindow.putBlob(blob, ROW_INDEX0, COLUMN_INDEX1)); 179 assertTrue(Arrays.equals(blob, targetBuffer));
|
/external/v8/src/snapshot/ |
snapshot-common.cc | 54 const v8::StartupData* blob = isolate->snapshot_blob(); local 55 Vector<const byte> startup_data = ExtractStartupData(blob); 74 const v8::StartupData* blob = isolate->snapshot_blob(); local 75 Vector<const byte> context_data = ExtractContextData(blob); 193 "Snapshot blob consists of:\n"
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_old_handlers.c | 1266 struct wpa_config_blob *blob; local [all...] |
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpas-dbus-new-signals.py | 99 def blobAdded(blob): 100 print "BlobAdded(%s)" % (blob) 102 def blobRemoved(blob): 103 print "BlobRemoved(%s)" % (blob)
|
/frameworks/base/core/tests/coretests/src/android/widget/scroll/ |
RequestRectangleVisibleWithInternalScroll.java | 56 mTextBlob = (TextView) findViewById(R.id.blob);
|