Searched refs:fArea (Results 1 - 19 of 19) sorted by relevance

/external/dng_sdk/source/
H A Ddng_tile_iterator.cpp29 : fArea ()
54 : fArea ()
84 : fArea ()
110 fArea = area;
131 fLeftPage = (fArea.l - hOffset ) / tileWidth;
132 fRightPage = (fArea.r - hOffset - 1) / tileWidth;
136 fTopPage = (fArea.t - vOffset ) / tileHeight;
137 fBottomPage = (fArea.b - vOffset - 1) / tileHeight;
161 tile.t = fArea.t;
166 tile.b = fArea
[all...]
H A Ddng_pixel_buffer.cpp347 : fArea ()
371 : fArea (area)
393 !SafeUint32ToInt32Mult (fArea.W(), fPlanes, &fRowStep))
403 if (!ConvertUint32ToInt32 (fArea.W(), &fRowStep) ||
404 !SafeUint32ToInt32Mult (fArea.H(), fArea.W(), &fPlaneStep))
416 planeStepUint32 = fArea.W();
420 if (!RoundUpForPixelSize (fArea.W(), fPixelSize,
444 : fArea (buffer.fArea)
[all...]
H A Ddng_image.cpp227 dng_tile_iterator iter (*this, buffer.fArea);
250 dng_tile_iterator iter (*this, buffer.fArea);
276 if ((srcArea & buffer.fArea) == srcArea)
320 temp.fArea = dst1 + (srcArea.TL () -
344 temp.fArea = dst2 + (srcArea.TL () -
368 temp.fArea = dst3 + (srcArea.TL () -
392 temp.fArea = dst4 + (srcArea.TL () -
468 buffer2.fData = buffer.DirtyPixel (buffer2.fArea.t,
469 buffer2.fArea.l,
502 dng_rect overlap = buffer.fArea
[all...]
H A Ddng_tile_iterator.h33 dng_rect fArea; member in class:dng_tile_iterator
H A Ddng_simple_image.cpp98 fBuffer.fArea = fBounds;
155 fBuffer.fArea = fBounds;
166 buffer.fArea = area;
176 buffer.fData = (void *) fBuffer.ConstPixel (buffer.fArea.t,
177 buffer.fArea.l,
H A Ddng_pixel_buffer.h94 dng_rect fArea; member in class:dng_pixel_buffer
131 if (row < fArea.t || row >= fArea.b ||
132 col < fArea.l || col >= fArea.r ||
140 static_cast<int64> (row) - static_cast<int64> (fArea.t));
142 static_cast<int64> (col) - static_cast<int64> (fArea.l));
200 return fArea;
H A Ddng_misc_opcodes.cpp121 fArea.t = stream.Get_int32 ();
122 fArea.l = stream.Get_int32 ();
123 fArea.b = stream.Get_int32 ();
124 fArea.r = stream.Get_int32 ();
142 if (fArea.IsEmpty ())
154 if (!SafeInt32Sub (fArea.b, fArea.t, &height) ||
155 !SafeInt32Sub (fArea.r, fArea.l, &width) ||
169 (int) fArea
[all...]
H A Ddng_read_image.cpp863 for (int32 row = buffer.fArea.t; row < buffer.fArea.b; row++)
866 tempBuffer.fArea.t = MapRow (row);
868 tempBuffer.fArea.b = tempBuffer.fArea.t + 1;
871 buffer.fArea.l,
887 for (int32 row = buffer.fArea.t; row < buffer.fArea.b; row++)
890 tempBuffer.fArea.t = MapRow (row);
892 tempBuffer.fArea
[all...]
H A Ddng_misc_opcodes.h73 dng_rect fArea; member in class:dng_area_spec
91 : fArea (area)
104 return fArea;
H A Ddng_image_writer.cpp3039 buffer.fArea.H (),
3040 buffer.fArea.W () / xFactor,
3051 buffer.fArea.H (),
3052 buffer.fArea.W () / xFactor,
3063 buffer.fArea.H (),
3064 buffer.fArea.W () / xFactor,
3112 for (int32 row = buffer.fArea.t; row < buffer.fArea.b; row++)
3115 EncodeFPDelta ((uint8 *) buffer.DirtyPixel (row, buffer.fArea.l, buffer.fPlane),
3117 buffer.fArea
[all...]
H A Ddng_mosaic_info.cpp1041 int32 dstCol = dstBuffer.fArea.l;
1047 for (int32 dstRow = dstBuffer.fArea.t;
1048 dstRow < dstBuffer.fArea.b;
1074 dstBuffer.fArea.W (),
1089 dstBuffer.fArea.W (),
1219 dng_rect srcArea = srcBuffer.fArea;
1220 dng_rect dstArea = dstBuffer.fArea;
1903 srcBuffer.fArea = srcTile;
1904 dstBuffer.fArea = dstTile;
H A Ddng_resample.cpp700 dng_rect srcArea = srcBuffer.fArea;
701 dng_rect dstArea = dstBuffer.fArea;
H A Ddng_bad_pixels.cpp1526 tBuffer.fArea = Transpose (buffer.fArea);
H A Ddng_lens_correction.cpp1309 const dng_rect srcArea = srcBuffer.fArea;
1310 const dng_rect dstArea = dstBuffer.fArea;
H A Ddng_render.cpp994 dng_rect srcArea = srcBuffer.fArea;
995 dng_rect dstArea = dstBuffer.fArea;
H A Ddng_negative.cpp1522 buffer.fArea = area;
1526 uint32 count = buffer.fArea.H () *
/external/skia/tests/
H A DRecordTest.cpp20 AreaSummer() : fArea(0) {}
25 fArea += (int)(draw.rect.width() * draw.rect.height());
28 int area() const { return fArea; }
37 int fArea; member in class:AreaSummer
/external/skia/src/utils/
H A DSkShadowTessellator.cpp681 SkScalar fArea; member in class:SkSpotShadowTessellator
924 fArea = 0;
990 fArea += quadArea;
991 fCentroid *= SK_Scalar1 / (3 * fArea);
1118 fArea += quadArea;
/external/skia/src/codec/
H A DSkRawCodec.cpp742 buffer.fArea = dng_rect(i, 0, i + 1, width);

Completed in 6356 milliseconds