Lines Matching refs:SIZE
64 const SIZE: usize; constant
68 const SIZE: usize = 256; constant
72 const SIZE: usize = 4096; constant
176 const MIN_SIZE: usize = S::SIZE;
188 pub struct Bar<const SIZE: usize = 0> {
190 io: MmioRaw<SIZE>,
194 impl<const SIZE: usize> Bar<SIZE> {
273 impl<const SIZE: usize> Drop for Bar<SIZE> {
279 impl<const SIZE: usize> Deref for Bar<SIZE> {
280 type Target = Mmio<SIZE>;
291 pub fn iomap_region_sized<'a, const SIZE: usize>( in iomap_region_sized()
295 ) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a { in iomap_region_sized() argument
296 Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name)) in iomap_region_sized()