Home
last modified time | relevance | path

Searched refs:resizer (Results 1 – 14 of 14) sorted by relevance

/linux/rust/kernel/
H A Did_pool.rs176 pub fn shrink(&mut self, mut resizer: PoolResizer) { in shrink()
185 if updated.num_ids > resizer.new.len() { in shrink()
189 resizer.new.copy_and_extend(&self.map); in shrink()
190 self.map = resizer.new; in shrink()
212 pub fn grow(&mut self, mut resizer: PoolResizer) { in grow()
216 if resizer.new.len() <= self.capacity() { in grow()
220 resizer.new.copy_and_extend(&self.map); in grow()
221 self.map = resizer.new; in grow()
/linux/Documentation/admin-guide/media/
H A Dmali-c55.rst67 - `mali_c55 resizer fr`: The Full-Resolution pipe resizer
68 - `mali_c55 resizer ds`: The Downscale pipe resizer
128 8192x8192, and this is reflected in the ISP and resizer subdevice's .set_fmt()
131 **mali-c55 resizer fr**
132 The `mali-c55 resizer fr` subdevice has two _sink_ pads to reflect the different
206 media-ctl -l "'mali-c55 resizer fr':1->'mali-c55 fr':0[1]"
207 media-ctl -l "'mali-c55 resizer ds':1->'mali-c55 ds':0[1]"
214 source, ISP and resizer subdevices and set the FR resizer's routing to select
215 processed data. The media bus format on the resizer's source pad will be either
220 In this example we target RGB565 output, so select RGB121212_1X36 as the resizer
[all …]
H A Drkisp1.rst75 Those are resizer entities for the mainpath and the selfpath. Those entities
81 case the resizer of the mainpath is set to 'bypass' mode - it just forward the
89 connected to the sensor and on source pad 2 connected to the resizer entities.
177 The resizer's sink pad `rkisp1_resizer_selfpath` should be configured to format
181 The source pad of the resizer, `rkisp1_resizer_selfpath:1` is configured to
182 format `YUYV8_2X8/900x800`. That means that the resizer first crop a window
200 Note that the resizer and capture entities will always report
H A Dmali-c55-graph.dot9 …n00000007 [label="{{<port0> 0 | <port2> 2} | mali-c55 resizer fr\n/dev/v4l-subdev2 | {<port1> 1}}"…
11 …n0000000b [label="{{<port0> 0} | mali-c55 resizer ds\n/dev/v4l-subdev3 | {<port1> 1}}", shape=Mrec…
H A Dc3-isp.rst59 - 3 `c3-isp-resizer` sub-devices - the ISP resizers
67 Each `c3-isp-resizer` sub-device is linked to a capture video device node where
H A Domap3isp.rst46 - OMAP3 ISP resizer
H A Dfimc.rst12 space converter, image resizer and rotator. It's also capable of capturing
H A Dimx.rst686 near the IC resizer limit of 1024x1024, and combined with planar
/linux/drivers/media/platform/amlogic/c3/isp/
H A DMakefile8 c3-isp-resizer.o
/linux/drivers/media/platform/arm/mali-c55/
H A DMakefile7 mali-c55-resizer.o \
/linux/drivers/media/platform/rockchip/rkisp1/
H A DMakefile8 rkisp1-resizer.o \
H A Drkisp1-dev.c384 struct media_entity *resizer = in rkisp1_create_links() local
391 resizer, RKISP1_RSZ_PAD_SINK, in rkisp1_create_links()
396 ret = media_create_pad_link(resizer, RKISP1_RSZ_PAD_SRC, in rkisp1_create_links()
/linux/Documentation/translations/zh_CN/video4linux/
H A Domap3isp.txt66 OMAP3 ISP resizer
/linux/drivers/android/binder/
H A Dprocess.rs855 let resizer = grow_request.realloc(GFP_KERNEL)?; in insert_or_update_handle() localVariable
858 refs.handle_is_present.grow(resizer); in insert_or_update_handle()