Lines Matching defs:SIZE
314 pub struct Bar<const SIZE: usize = 0> {
316 io: IoRaw<SIZE>,
320 impl<const SIZE: usize> Bar<SIZE> {
399 impl<const SIZE: usize> Drop for Bar<SIZE> {
405 impl<const SIZE: usize> Deref for Bar<SIZE> {
406 type Target = Io<SIZE>;
521 /// can be performed on compile time for offsets (plus the requested type size) < SIZE.
522 pub fn iomap_region_sized<'a, const SIZE: usize>(
526 ) -> impl PinInit<Devres<Bar<SIZE>>, Error> + 'a {
527 Devres::new(self.as_ref(), Bar::<SIZE>::new(self, bar, name))