Lines Matching refs:tileArea
1016 const dng_rect &tileArea,
1042 const dng_rect &tileArea, in dng_image_spooler() argument
1051 , fTileArea (tileArea) in dng_image_spooler()
1178 const dng_rect &tileArea, in ReadUncompressed() argument
1185 uint32 rows = tileArea.H (); in ReadUncompressed()
1186 uint32 samplesPerRow = tileArea.W (); in ReadUncompressed()
1434 dng_pixel_buffer buffer (tileArea, plane, planes, pixelType, in ReadUncompressed()
1518 const dng_rect &tileArea, in DecodeLossyJPEG() argument
1580 if (imageWidthAsUint32 != tileArea.W () || in DecodeLossyJPEG()
1581 imageHeightAsUint32 != tileArea.H () || in DecodeLossyJPEG()
1594 dng_pixel_buffer buffer(tileArea, plane, planes, ttByte, pcInterleaved, in DecodeLossyJPEG()
1596 buffer.fArea.b = tileArea.t + 1; in DecodeLossyJPEG()
1610 while (buffer.fArea.t < tileArea.b) in DecodeLossyJPEG()
1646 (void) tileArea; in DecodeLossyJPEG()
1750 const dng_rect &tileArea, in ReadBaselineJPEG() argument
1773 tileArea, in ReadBaselineJPEG()
1792 tileArea, in ReadBaselineJPEG()
1811 const dng_rect &tileArea, in ReadLosslessJPEG() argument
1820 if (tileArea.IsEmpty ()) in ReadLosslessJPEG()
1825 uint32 bytesPerRow = SafeUint32Mult (tileArea.W(), planes, in ReadLosslessJPEG()
1830 tileArea.H ()); in ReadLosslessJPEG()
1855 tileArea, in ReadLosslessJPEG()
1861 uint32 decodedSize = SafeUint32Mult(tileArea.W (), in ReadLosslessJPEG()
1862 tileArea.H (), in ReadLosslessJPEG()
2164 const dng_rect &tileArea, in ReadTile() argument
2190 if (!SafeUint32Mult (planes, tileArea.W (), &rowStep) || in ReadTile()
2191 !SafeUint32Mult (rowStep, tileArea.H (), &sampleCount)) in ReadTile()
2227 uint32 uncompressedSize = ComputeBufferSize (pixelType, tileArea.Size(), in ReadTile()
2230 dng_pixel_buffer buffer (tileArea, plane, planes, pixelType, pcInterleaved, in ReadTile()
2385 for (int32 row = tileArea.t; row < tileArea.b; row++) in ReadTile()
2388 uint8 *srcPtr = (uint8 *) buffer.DirtyPixel (row , tileArea.l, plane); in ReadTile()
2400 tileArea.W () / xFactor, in ReadTile()
2512 tileArea, in ReadTile()
2539 tileArea, in ReadTile()
2561 tileArea, in ReadTile()
2586 tileArea, in ReadTile()
2880 dng_rect tileArea = fIFD.TileArea (rowIndex, colIndex); in Process() local
2889 tileArea, in Process()
3283 dng_rect tileArea = ifd.TileArea (rowIndex, colIndex); in Read() local
3285 uint32 subTileCount = (tileArea.H () + subTileLength - 1) / in Read()
3293 dng_rect subArea (tileArea); in Read()
3295 subArea.t = tileArea.t + subIndex * subTileLength; in Read()
3298 tileArea.b); in Read()