Home
last modified time | relevance | path

Searched refs:Bounds (Results 1 - 25 of 30) sorted by relevance

12

/third_party/skia/src/core/
H A DSkRecordDraw.cpp194 fSaveStack.push_back({ 0, Bounds::MakeEmpty(), nullptr, fCTM }); in FillBounds()
218 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
219 typedef SkRect Bounds; typedef in SkRecords::FillBounds
222 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const { in adjustAndMap()
243 return Bounds::MakeEmpty(); in adjustAndMap()
252 Bounds bounds; // Bounds of everything in the block.
307 PaintMayAffectTransparentBlack(paint) ? fCullRect : Bounds::MakeEmpty(); in pushSaveBlock()
355 Bounds popSaveBlock() { in popSaveBlock()
378 void popControl(const Bounds
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_image.h136 // Bounds for this image.
187 const dng_rect & Bounds () const in Bounds() function in dng_image
196 return Bounds ().Size (); in Size()
203 return Bounds ().W (); in Width()
210 return Bounds ().H (); in Height()
332 SetConstant (value, Bounds ()); in SetConstant_uint8()
347 SetConstant_uint16 (value, Bounds ()); in SetConstant_uint16()
362 SetConstant_int16 (value, Bounds ()); in SetConstant_int16()
377 SetConstant_uint32 (value, Bounds ()); in SetConstant_uint32()
400 SetConstant_real32 (value, Bounds ()); in SetConstant_real32()
[all...]
H A Ddng_opcodes.cpp280 fDstImage.Bounds ()); in SrcArea()
288 fDstImage.Bounds ()); in SrcTileSize()
302 fDstImage.Bounds ()); in ProcessArea()
320 fDstImage.Bounds (), in Start()
364 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ()); in Apply()
376 if (modifiedBounds == image->Bounds ()) in Apply()
379 dstImage.Reset (host.Make_dng_image (image->Bounds (), in Apply()
465 fImage.Bounds (), in Start()
493 fImage.Bounds ()); in Process()
538 dng_rect modifiedBounds = ModifiedBounds (image->Bounds ()); in Apply()
[all...]
H A Ddng_negative.cpp1483 dng_pixel_buffer buffer (image.Bounds (), 0, image.Planes (),
1515 image.Bounds ());
1655 fUnitCell = dng_point (Min_int32 (kTileSize, fImage.Bounds ().H ()),
1656 Min_int32 (kTileSize, fImage.Bounds ().W ()));
1673 fTilesAcross = (fImage.Bounds ().W () + fUnitCell.h - 1) / fUnitCell.h;
1674 fTilesDown = (fImage.Bounds ().H () + fUnitCell.v - 1) / fUnitCell.v;
1698 int32 colIndex = (tile.l - fImage.Bounds ().l) / fUnitCell.h;
1699 int32 rowIndex = (tile.t - fImage.Bounds ().t) / fUnitCell.v;
1701 DNG_ASSERT (tile.l == fImage.Bounds ().l + colIndex * fUnitCell.h &&
1702 tile.t == fImage.Bounds ()
[all...]
H A Ddng_simple_image.cpp60 AutoPtr<dng_simple_image> result (new dng_simple_image (Bounds (), in Clone()
66 Bounds (), in Clone()
H A Ddng_host.cpp540 srcImage.Bounds (), in ResampleImage()
541 dstImage.Bounds (), in ResampleImage()
H A Ddng_jpeg_image.cpp177 fImageSize = image.Bounds ().Size (); in Encode()
207 image.Bounds ().Size () == negative.OriginalDefaultFinalSize (); in Encode()
H A Ddng_tile_iterator.cpp45 area & image.Bounds ()); in dng_tile_iterator()
H A Ddng_lens_correction.cpp1057 const dng_rect bounds = srcImage.Bounds ();
1249 srcTileSize = SrcArea (fDstImage.Bounds ()).Size ();
1271 const dng_rect_real64 bounds (fSrcImage.Bounds ());
1660 AutoPtr<dng_image> dstImage (host.Make_dng_image (image->Bounds (),
1676 image->Bounds ());
1850 AutoPtr<dng_image> dstImage (host.Make_dng_image (image->Bounds (),
1866 image->Bounds ());
H A Ddng_ifd.h254 dng_rect Bounds () const in Bounds() function in dng_ifd
H A Ddng_validate.cpp339 Max_uint32 (previewImage->Bounds ().W (), in dng_validate()
340 previewImage->Bounds ().H ()) <= 256) in dng_validate()
H A Ddng_image_writer.cpp4055 cinfo.image_width = image.Bounds ().W (); in EncodeJPEGPreview()
4056 cinfo.image_height = image.Bounds ().H (); in EncodeJPEGPreview()
4108 dng_pixel_buffer buffer (image.Bounds (), 0, image.Planes (), ttByte, in EncodeJPEGPreview()
5394 ifd.fImageWidth = image.Bounds ().W (); in WriteTIFFWithProfile()
5395 ifd.fImageLength = image.Bounds ().H (); in WriteTIFFWithProfile()
5810 uint32 thisArea = imagePreview->fImage->Bounds ().W () * in WriteDNG()
5811 imagePreview->fImage->Bounds ().H (); in WriteDNG()
6660 maskInfo->fImageWidth = negative.RawTransparencyMask ()->Bounds ().W (); in WriteDNG()
6661 maskInfo->fImageLength = negative.RawTransparencyMask ()->Bounds ().H (); in WriteDNG()
H A Ddng_image.cpp726 if (r != Bounds ()) in Trim()
H A Ddng_utils.cpp735 host.PerformAreaTask (task, dstImage.Bounds ()); in LimitFloatBitDepth()
H A Ddng_mosaic_info.cpp1871 dng_tile_iterator iter1 (dstImage, dstImage.Bounds ());
1948 dng_rect bounds = dstImage.Bounds ();
H A Ddng_render.cpp1313 tempImage->Bounds (), in Render()
1318 srcBounds = tempImage->Bounds (); in Render()
1335 dstImage->Bounds ()); in Render()
/third_party/gn/src/base/numerics/
H A Dsafe_conversions_impl.h238 template <typename Dst, typename Src, template <typename> class Bounds>
272 static constexpr Dst max() { return Adjust(Bounds<Dst>::max()); }
273 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); }
279 class Bounds,
298 class Bounds,
303 Bounds,
309 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
320 template <typename Dst, typename Src, template <typename> class Bounds>
323 Bounds,
328 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
[all...]
/third_party/node/deps/v8/src/base/
H A Dsafe_conversions_impl.h242 template <typename Dst, typename Src, template <typename> class Bounds>
274 static constexpr Dst max() { return Adjust(Bounds<Dst>::max()); }
275 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); }
278 template <typename Dst, typename Src, template <typename> class Bounds,
294 template <typename Dst, typename Src, template <typename> class Bounds,
296 struct DstRangeRelationToSrcRangeImpl<Dst, Src, Bounds, DstSign, SrcSign,
300 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
311 template <typename Dst, typename Src, template <typename> class Bounds>
313 Dst, Src, Bounds, INTEGER_REPRESENTATION_SIGNED,
316 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
[all...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dsafe_conversions_impl.h253 template <typename Dst, typename Src, template <typename> class Bounds>
285 static constexpr Dst max() { return Adjust(Bounds<Dst>::max()); }
286 static constexpr Dst lowest() { return Adjust(Bounds<Dst>::lowest()); }
293 class Bounds,
309 class Bounds,
312 struct DstRangeRelationToSrcRangeImpl<Dst, Src, Bounds, DstSign, SrcSign, NUMERIC_RANGE_CONTAINED>
317 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
327 template <typename Dst, typename Src, template <typename> class Bounds>
330 Bounds,
337 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
[all...]
/third_party/typescript/tests/baselines/reference/
H A DmappedTypeConstraints2.js30 interface Bounds {
36 [K in keyof T as T[K] extends number | undefined ? K : never]: Bounds;
99 interface Bounds {
104 [K in keyof T as T[K] extends number | undefined ? K : never]: Bounds;
/third_party/mesa3d/src/hgl/
H A DGLView.cpp132 if (!dest || !dest->Bounds().IsValid()) in CopyPixelsOut()
145 if (!source || !source->Bounds().IsValid()) in CopyPixelsIn()
186 fBounds = Bounds(); in AttachedToWindow()
205 glViewport(0, 0, Bounds().IntegerWidth(), Bounds().IntegerHeight()); in AttachedToWindow()
207 fRenderer->FrameResized(Bounds().IntegerWidth(), in AttachedToWindow()
208 Bounds().IntegerHeight()); in AttachedToWindow()
251 fBounds = Bounds(); in FrameResized()
/third_party/mesa3d/src/gallium/frontends/hgl/
H A Dbitmap_wrapper.cpp58 uint32 w = bb->Bounds().IntegerWidth() + 1; in get_bitmap_size()
59 uint32 h = bb->Bounds().IntegerHeight() + 1; in get_bitmap_size()
/third_party/mesa3d/src/gallium/targets/haiku-softpipe/
H A DSoftwareRenderer.cpp55 width = bmp->Bounds().IntegerWidth() + 1; in RasBuf32()
56 height = bmp->Bounds().IntegerHeight() + 1; in RasBuf32()
148 BRect b = view->Bounds(); in SoftwareRenderer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp482 LoopBounds Bounds(BlockInfo, MTM.Loops);
485 Bounds.Downward = false;
486 Bounds.Visited.clear();
487 for (auto I : inverse_post_order_ext(MBB, Bounds)) {
503 Bounds.Downward = true;
504 Bounds.Visited.clear();
505 for (auto I : post_order_ext(MBB, Bounds)) {
/third_party/mesa3d/src/egl/drivers/haiku/
H A Degl_haiku.cpp103 surface->gl = new BGLView(win->Bounds(), "OpenGL", B_FOLLOW_ALL_SIDES, 0, in haiku_create_window_surface()

Completed in 27 milliseconds

12