Home
last modified time | relevance | path

Searched defs:E (Results 1 – 25 of 36) sorted by relevance

12

/linux/rust/pin-init/src/
H A Dlib.rs933 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
953 pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> where F: FnOnce(Pin<&mut T>) -> Result<(), E>, pin_chain() argument
973 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1031 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1061 chain<F>(self, f: F) -> ChainInit<Self, F, T, E> where F: FnOnce(&mut T) -> Result<(), E>, chain() argument
1080 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1096 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1115 pin_init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl PinInit<T, E> pin_init_from_closure() argument
1134 init_from_closure<T: ?Sized, E>( f: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl Init<T, E> init_from_closure() argument
1146 cast_pin_init<T, U, E>(init: impl PinInit<T, E>) -> impl PinInit<U, E> cast_pin_init() argument
1162 cast_init<T, U, E>(init: impl Init<T, E>) -> impl Init<U, E> cast_init() argument
1176 uninit<T, E>() -> impl Init<MaybeUninit<T>, E> uninit() argument
1191 init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl Init<[T; N], E> where I: Init<T, E>, init_array_from_fn() argument
1234 pin_init_array_from_fn<I, const N: usize, T, E>( mut make_init: impl FnMut(usize) -> I, ) -> impl PinInit<[T; N], E> where I: PinInit<T, E>, pin_init_array_from_fn() argument
1288 pin_init_scope<T, E, F, I>(make_init: F) -> impl PinInit<T, E> where F: FnOnce() -> Result<I, E>, I: PinInit<T, E>, pin_init_scope() argument
1331 init_scope<T, E, F, I>(make_init: F) -> impl Init<T, E> where F: FnOnce() -> Result<I, E>, I: Init<T, E>, init_scope() argument
1372 __init(self, slot: *mut T) -> Result<(), E> __init() argument
1383 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
1398 write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
1403 write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
1409 write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
1419 write_pin_init<E>(self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
1691 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1695 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1702 pin_init<E>(value_init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
1710 pin_init<E>(init: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
[all...]
H A D__internal.rs121 F: FnOnce(*mut T) -> Result<InitOk, E>, in make_closure() argument
32 __init(self, slot: *mut T) -> Result<(), E> __init() argument
44 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
90 make_closure<F, E>(self, f: F) -> F where F: FnOnce(*mut Self::Datee) -> Result<InitOk, E>, make_closure() argument
191 init<E>(self: Pin<&mut Self>, init: impl PinInit<T, E>) -> Result<Pin<&mut T>, E> init() argument
[all...]
H A Dalloc.rs139 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
148 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
[all...]
/linux/rust/kernel/
H A Dinit.rs146 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self::PinnedSelf, E> in try_pin_init() argument
154 pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> error::Result<Self::PinnedSelf> where Error: From<E>, pin_init() argument
166 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError> try_init() argument
171 init<E>(init: impl Init<T, E>, flags: Flags) -> error::Result<Self> where Error: From<E>, init() argument
[all...]
H A Ddevres.rs207 Error: From<E>, in new()
429 pub unsafe fn new<'a, E>( in new() argument
434 Error: From<E>, in new()
549 pub fn register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result in register() argument
552 Error: From<E>, in register()
H A Dtypes.rs383 try_ffi_init<E>( init_func: impl FnOnce(*mut T) -> Result<(), E>, ) -> impl PinInit<Self, E> try_ffi_init() argument
414 pin_init<E>(slot: impl PinInit<T, E>) -> impl PinInit<Self, E> pin_init() argument
H A Ddma.rs439 init_at<E>(&mut self, i: usize, init: impl Init<T, E>) -> Result where Error: From<E>, init_at() argument
780 init_with_attrs<E>( dev: &device::Device<Bound>, gfp_flags: kernel::alloc::Flags, dma_attrs: Attrs, init: impl Init<T, E>, ) -> Result<Self> where Error: From<E>, init_with_attrs() argument
787 init_with_attrs<E>( dev: &device::Device<Bound>, gfp_flags: kernel::alloc::Flags, dma_attrs: Attrs, init: impl Init<T, E>, ) -> Result<Self> where Error: From<E>, init_with_attrs() argument
805 init<E>( dev: &device::Device<Bound>, gfp_flags: kernel::alloc::Flags, init: impl Init<T, E>, ) -> Result<Self> where Error: From<E>, init() argument
811 init<E>( dev: &device::Device<Bound>, gfp_flags: kernel::alloc::Flags, init: impl Init<T, E>, ) -> Result<Self> where Error: From<E>, init() argument
H A Drevocable.rs85 new<E>(data: impl PinInit<T, E>) -> impl PinInit<Self, E> new() argument
/linux/lib/
H A Derrname.c16 #define E(err) [err + BUILD_BUG_ON_ZERO(err <= 0 || err > 300)] = "-" #err macro
177 #define E(err) [err - 512 + BUILD_BUG_ON_ZERO(err < 512 || err > 550)] = "-" #err macro
/linux/net/netfilter/ipset/
H A Dpfxlen.c142 #define E(a, b, c, d) \ macro
157 #define E(a, b, c, d) \ macro
/linux/rust/zerocopy-derive/
H A Drepr.rs382 fn try_from_raw_reprs<'a, E, R: TryFrom<RawRepr, Error = FromRawReprError<E>>>( in try_from_raw_reprs() argument
384 ) -> Result<Option<Spanned<R>>, Spanned<FromRawReprsError<E>>> { in try_from_raw_reprs()
631 pub(super) fn try_from<E, U>( in try_from()
653 fn try_with_or<E, F: FnOnce() -> Result<T, E>>(f: F, err: E) -> Result<Self, E> in try_with_or()
663 fn try_with_or<E, F: FnOnce() -> Result<T, E>>(f: F, _err: E) -> Result<Self, E> { in try_with_or() argument
673 fn try_with_or<E, F: FnOnce() -> Result<T, E>>(_f: F, err: E) -> Result<Self, E> { in try_with_or() argument
/linux/tools/testing/selftests/bpf/progs/
H A Dbtf_dump_test_case_namespacing.c24 enum E { enum
28 typedef enum E E; typedef
H A Dtest_global_func9.c23 enum E { enum
/linux/rust/kernel/alloc/
H A Dkbox.rs336 pin_slice<Func, Item, E>( mut init: Func, len: usize, flags: Flags, ) -> Result<Pin<Box<[T], A>>, E> where Func: FnMut(usize) -> Item, Item: PinInit<T, E>, E: From<AllocError>, pin_slice() argument
439 write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> write_init() argument
448 write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> write_pin_init() argument
465 try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E> where E: From<AllocError>, try_pin_init() argument
473 try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, try_init() argument
[all...]
/linux/tools/perf/arch/powerpc/util/
H A Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/perf/arch/arm64/util/
H A Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/perf/arch/x86/util/
H A Dmem-events.c10 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux/tools/testing/selftests/powerpc/benchmarks/
H A Dfutex_bench.c18 #define futex(A, B, C, D, E, F) syscall(__NR_futex, A, B, C, D, E, F) argument
/linux/tools/testing/selftests/cgroup/
H A Dmemcg_protection.m20 E = 50 / 1024; variable
/linux/rust/kernel/list/
H A Darc.rs183 pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, pin_init() argument
194 init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> where E: From<AllocError>, init() argument
/linux/samples/vfs/
H A Dtest-fsmount.c18 #define E(x) do { if ((x) == -1) { perror(#x); exit(1); } } while(0) macro
/linux/lib/crypto/x86/
H A Dsha1-avx2-asm.S101 .set E, REG_E define
321 .set E, D define
/linux/drivers/gpu/drm/bridge/cadence/
H A Dcdns-mhdp8546-hdcp.h82 u8 E[DLP_E]; member
/linux/rust/zerocopy/src/pointer/
H A Dptr.rs932 pub(crate) unsafe fn try_with_unchecked<U, J, E, F>( in try_with_unchecked() argument
940 F: FnOnce(Ptr<'a, T, I>) -> Result<Ptr<'a, U, J>, E>, in try_with_unchecked() argument
982 pub fn try_with<U, J, E, F>(self, f: F) -> Result<Ptr<'a, U, J>, E::Mapped> in try_with() argument
987 F: FnOnce(Ptr<'a, T, I>) -> Result<Ptr<'a, U, J>, E>, in try_with() argument
/linux/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dgm107.c350 int E = -1, X; in gm107_gr_init_bios() local

12