Home
last modified time | relevance | path

Searched refs:fCompressedData (Results 1 – 6 of 6) sorted by relevance

/external/dng_sdk/source/
Ddng_preview.cpp340 , fCompressedData () in dng_jpeg_preview()
393 basic.SetTileByteCount (0, fCompressedData->LogicalSize ()); in WriteData()
395 stream.Put (fCompressedData->Buffer (), in WriteData()
396 fCompressedData->LogicalSize ()); in WriteData()
398 if (fCompressedData->LogicalSize () & 1) in WriteData()
410 DNG_ASSERT (fCompressedData.Get (), in SpoolAdobeThumbnail()
416 uint32 compressedSize = fCompressedData->LogicalSize (); in SpoolAdobeThumbnail()
435 stream.Put (fCompressedData->Buffer (), in SpoolAdobeThumbnail()
Ddng_preview.h105 AutoPtr<dng_memory_block> fCompressedData; variable
Ddng_negative.cpp347 thumbDataLength.Set (thumbnail->fCompressedData->LogicalSize ()); in BuildExifBlock()
383 stream.Put (thumbnail->fCompressedData->Buffer (), in BuildExifBlock()
384 thumbnail->fCompressedData->LogicalSize ()); in BuildExifBlock()
Ddng_image_writer.cpp4150 preview.fCompressedData.Reset (stream.AsMemoryBlock (host.Allocator ())); in EncodeJPEGPreview()
/external/skia/src/pdf/
DSkPDFTypes.cpp522 SkASSERT(fCompressedData); in addResources()
527 fCompressedData.reset(nullptr); in drop()
533 SkASSERT(fCompressedData); in emitObject()
536 std::unique_ptr<SkStreamAsset> dup(fCompressedData->duplicate()); in emitObject()
545 SkASSERT(!fCompressedData); // Only call this function once. in setData()
550 fCompressedData = std::move(stream); in setData()
551 SkASSERT(fCompressedData && fCompressedData->hasLength()); in setData()
552 fDict.insertInt("Length", fCompressedData->getLength()); in setData()
567 fCompressedData = std::move(stream); in setData()
571 fCompressedData = compressedData.detachAsStream(); in setData()
DSkPDFTypes.h347 std::unique_ptr<SkStreamAsset> fCompressedData;