/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord.cc | 418 // nodes to account for the size increase. The append region address will be 419 // written to region and the actual size increase will be written to size. 420 static inline bool PrepareAppendRegion(CordRep* root, char** region, in PrepareAppendRegion() argument 425 *region = span.data(); in PrepareAppendRegion() 438 *region = nullptr; in PrepareAppendRegion() 446 *region = nullptr; in PrepareAppendRegion() 459 *region = dst->flat()->Data() + in_use; in PrepareAppendRegion() 465 void Cord::InlineRep::GetAppendRegion(char** region, size_t* size, in GetAppendRegion() argument 474 *region = data_.as_chars() + sz; in GetAppendRegion() 484 if (PrepareAppendRegion(rep, region, siz in GetAppendRegion() 678 char* region; AppendArray() local [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/pipeline/ |
H A D | rs_paint_filter_canvas.cpp | 315 void RSPaintFilterCanvasBase::DrawRegion(const Drawing::Region& region) in DrawRegion() argument 320 (*iter)->DrawRegion(region); in DrawRegion() 325 canvas_->DrawRegion(region); in DrawRegion() 607 void RSPaintFilterCanvasBase::ClipRegion(const Region& region, ClipOp op) in ClipRegion() argument 612 (*iter)->ClipRegion(region, op); in ClipRegion() 617 canvas_->ClipRegion(region, op); in ClipRegion()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/ |
H A D | rs_paint_filter_canvas_test.cpp | 482 Drawing::Region region; in HWTEST_F() local 483 paintFilterCanvas_->DrawRegion(region); in HWTEST_F() 775 Drawing::Region region; in HWTEST_F() local 776 paintFilterCanvas_->ClipRegion(region, Drawing::ClipOp::DIFFERENCE); in HWTEST_F() 1615 Drawing::Region region; in HWTEST_F() local 1616 filterCanvas->PushDirtyRegion(region); in HWTEST_F()
|
/foundation/multimedia/image_framework/frameworks/kits/js/common/pixelmap_ndk/ |
H A D | pixelmap_native.cpp | 607 Image_ErrorCode OH_PixelmapNative_Crop(OH_PixelmapNative *pixelmap, Image_Region *region) in OH_PixelmapNative_Crop() argument 609 if (pixelmap == nullptr || region == nullptr || !pixelmap->GetInnerPixelmap()) { in OH_PixelmapNative_Crop() 613 rect.left = static_cast<int32_t>(region->x); in OH_PixelmapNative_Crop() 614 rect.top = static_cast<int32_t>(region->y); in OH_PixelmapNative_Crop() 615 rect.width = static_cast<int32_t>(region->width); in OH_PixelmapNative_Crop() 616 rect.height = static_cast<int32_t>(region->height); in OH_PixelmapNative_Crop()
|
/third_party/skia/src/gpu/v1/ |
H A D | Device.cpp | 277 void Device::onAsRgnClip(SkRegion* region) const { in onAsRgnClip() 279 // Assume wide open and then perform intersect/difference operations reducing the region in onAsRgnClip() 280 region->setRect(bounds); in onAsRgnClip() 293 region->op(tmp, (SkRegion::Op) e.fOp); in onAsRgnClip() 552 void Device::drawRegion(const SkRegion& region, const SkPaint& paint) { in drawRegion() argument 557 region.getBoundaryPath(&path); in drawRegion() 570 region, GrStyle(paint)); in drawRegion()
|
/third_party/skia/tests/ |
H A D | ClipStackTest.cpp | 768 static void set_region_to_stack(const SkClipStack& stack, const SkIRect& bounds, SkRegion* region) { in set_region_to_stack() argument 769 region->setRect(bounds); in set_region_to_stack() 786 region->op(elemRegion, element->isReplaceOp() ? SkRegion::kReplace_Op in set_region_to_stack() 809 SkRegion region; in test_invfill_diff_bug() local 810 set_region_to_stack(stack, {0, 0, 50, 30}, ®ion); in test_invfill_diff_bug() 812 REPORTER_ASSERT(reporter, region.isEmpty()); in test_invfill_diff_bug()
|
H A D | SerializationTest.cpp | 79 static void Write(SkWriteBuffer& writer, const SkRegion* region) { in Write() 80 writer.writeRegion(*region); in Write() 82 static void Read(SkReadBuffer& reader, SkRegion* region) { in Read() 83 reader.readRegion(region); in Read() 564 // Test region serialization in DEF_TEST() 566 SkRegion region; in DEF_TEST() local 567 TestObjectSerialization(®ion, reporter); in DEF_TEST()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_bufmgr.c | 168 struct drm_i915_gem_memory_class_instance region; member 976 regions[nregions++] = bufmgr->vram.region; in alloc_fresh_bo() 977 regions[nregions++] = bufmgr->sys.region; in alloc_fresh_bo() 980 regions[nregions++] = bufmgr->vram.region; in alloc_fresh_bo() 983 regions[nregions++] = bufmgr->sys.region; in alloc_fresh_bo() 2347 bufmgr->sys.region.memory_class = devinfo->mem.sram.mem_class; in iris_bufmgr_get_meminfo() 2348 bufmgr->sys.region.memory_instance = devinfo->mem.sram.mem_instance; in iris_bufmgr_get_meminfo() 2351 bufmgr->vram.region.memory_class = devinfo->mem.vram.mem_class; in iris_bufmgr_get_meminfo() 2352 bufmgr->vram.region.memory_instance = devinfo->mem.vram.mem_instance; in iris_bufmgr_get_meminfo()
|
/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 558 SkRegion region; in make_fuzz_imageFilter() local 562 fuzz->next(®ion, &innerMin, &outerMax, &useCropRect); in make_fuzz_imageFilter() 567 return SkImageFilters::AlphaThreshold(region, innerMin, outerMax, std::move(input), in make_fuzz_imageFilter() 1173 SkRegion region; 1175 fuzz->next(®ion); 1177 canvas->clipRegion(region, (SkClipOp)op); 1209 SkRegion region; 1210 fuzz->next(®ion); 1211 canvas->drawRegion(region, paint);
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | UtilsVk.cpp | 2689 VkBufferImageCopy region = {}; in stencilBlitResolveNoShaderExport() local 2690 region.bufferOffset = 0; in stencilBlitResolveNoShaderExport() 2691 region.bufferRowLength = bufferRowLengthInUints * sizeof(uint32_t); in stencilBlitResolveNoShaderExport() 2692 region.bufferImageHeight = params.blitArea.height; in stencilBlitResolveNoShaderExport() 2693 region.imageSubresource.aspectMask = VK_IMAGE_ASPECT_STENCIL_BIT; in stencilBlitResolveNoShaderExport() 2694 region.imageSubresource.mipLevel = in stencilBlitResolveNoShaderExport() 2696 region.imageSubresource.baseArrayLayer = depthStencilRenderTarget->getLayerIndex(); in stencilBlitResolveNoShaderExport() 2697 region.imageSubresource.layerCount = 1; in stencilBlitResolveNoShaderExport() 2698 region.imageOffset.x = params.blitArea.x; in stencilBlitResolveNoShaderExport() 2699 region in stencilBlitResolveNoShaderExport() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/DartARM32/ |
H A D | assembler_arm.cc | 2024 void Process(const MemoryRegion ®ion, intptr_t position) { 2027 ProcessARMv6(region, position); 2030 ProcessARMv7(region, position); 2035 void ProcessARMv6(const MemoryRegion ®ion, intptr_t position) { 2036 const int32_t mov = region.Load<int32_t>(position); 2037 const int32_t or1 = region.Load<int32_t>(position + 1 * Instr::kInstrSize); 2038 const int32_t or2 = region.Load<int32_t>(position + 2 * Instr::kInstrSize); 2039 const int32_t or3 = region.Load<int32_t>(position + 3 * Instr::kInstrSize); 2040 const int32_t bx = region.Load<int32_t>(position + 4 * Instr::kInstrSize); 2047 const int32_t dest = region [all...] |
/device/soc/rockchip/common/hardware/display/src/display_device/ |
H A D | hdi_layer.h | 149 virtual int32_t SetLayerDirtyRegion(IRect *region);
|
/device/soc/rockchip/rk3399/hardware/display/src/display_device/ |
H A D | hdi_layer.h | 147 virtual int32_t SetLayerDirtyRegion(IRect *region);
|
/foundation/ai/intelligent_voice_framework/frameworks/native/ |
H A D | enroll_intell_voice_engine.cpp | 70 engine_->SetParameter("area=" + config.region); in Init()
|
/foundation/ability/ability_runtime/frameworks/simulator/common/include/ |
H A D | options.h | 82 std::string region; member
|
/foundation/arkui/ace_engine/adapter/preview/entrance/ |
H A D | ace_ability.h | 60 std::string region = "CN"; member
|
/foundation/graphic/graphic_surface/interfaces/inner_api/surface/ |
H A D | window.h | 44 int fenceFd, Region region);
|
H A D | external_window.h | 81 * @brief indicates a dirty region where content is updated.
486 * @param region Indicates a dirty region where content is updated.
492 int fenceFd, Region region);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/platform/ohos/overdraw/ |
H A D | rs_canvas_listener.h | 56 virtual void DrawRegion(const Drawing::Region& region) {}; in DrawRegion() argument
|
H A D | rs_gpu_overdraw_canvas_listener.h | 54 void DrawRegion(const Drawing::Region& region) override;
|
H A D | rs_cpu_overdraw_canvas_listener.h | 23 #include "utils/region.h" 55 void DrawRegion(const Drawing::Region& region) override;
|
H A D | rs_listened_canvas.h | 49 void DrawRegion(const Drawing::Region& region) override;
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | uldnames.h | 201 * Returns the display name of the provided region code. 203 * @param region the region code whose display name to return 213 const char *region,
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | uldnames.h | 201 * Returns the display name of the provided region code. 203 * @param region the region code whose display name to return 213 const char *region,
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | tznames.h | 216 * Returns the reference zone ID for the given meta zone ID for the region. 218 * Note: Each meta zone must have a reference zone associated with a special region "001" (world). 219 * Some meta zones may have region specific reference zone IDs other than the special region 220 * "001". When a meta zone does not have any region specific reference zone IDs, this method 221 * return the reference zone ID for the special region "001" (world). 224 * @param region The region. 226 * region. If the meta zone is unknown or the implementation does not support meta zones, "bogus" state 231 virtual UnicodeString& getReferenceZoneID(const UnicodeString& mzID, const char* region, UnicodeStrin [all...] |