HomeSort by relevance Sort by last modified time
    Searched refs:blobSize (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustom.cpp 74 long long blobSize = blobData->length();
75 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), blobSize));
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.cpp 83 const long long blobSize = blobData->length();
84 bodyBlobHandle = BlobDataHandle::create(blobData.release(), blobSize);
  /frameworks/av/camera/
CameraMetadata.cpp 439 // arg0 = blobSize (int32)
446 const size_t blobSize = static_cast<size_t>(blobSizeTmp);
450 if (blobSize == 0) {
455 if (blobSize <= alignment) {
456 ALOGE("%s: metadata blob is malformed, blobSize(%zu) should be larger than alignment(%zu)",
457 __FUNCTION__, blobSize, alignment);
461 const size_t metadataSize = blobSize - alignment;
469 if ((err = data.readBlob(blobSize, &blob)) != OK) {
472 __FUNCTION__, blobSize, err, strerror(-err));
487 __FUNCTION__, blobSize, alignment)
    [all...]
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeRead.cpp 689 size_t blobSize = reader->readU32();
690 const void* data = reader->skip(SkAlign4(blobSize));
693 SkReadBuffer blobBuffer(data, blobSize);

Completed in 380 milliseconds