Home
last modified time | relevance | path

Searched refs:resizer (Results 1 – 7 of 7) 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 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 Domap3isp.rst46 - OMAP3 ISP resizer
H A Dfimc.rst12 space converter, image resizer and rotator. It's also capable of capturing
/linux/drivers/media/platform/rockchip/rkisp1/
H A DMakefile8 rkisp1-resizer.o \
/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()