Home
last modified time | relevance | path

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

12

/linux/rust/pin-init/src/
H A Dlib.rs933 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>; in __pinned_init() argument
953 fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> in pin_chain() argument
973 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
1031 unsafe fn __init(self, slot: *mut T) -> Result<(), E>; in __init() argument
1061 fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E> in chain() argument
1080 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
1096 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
1115 pub const unsafe fn pin_init_from_closure<T: ?Sized, E>( in pin_init_from_closure() argument
1134 pub const unsafe fn init_from_closure<T: ?Sized, E>( in init_from_closure() argument
1146 pub const unsafe fn cast_pin_init<T, U, E>(init: impl PinInit<T, E>) -> impl PinInit<U, E> { in cast_pin_init() argument
[all …]
H A D__internal.rs32 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
44 __pinned_init(self, slot: *mut T) -> Result<(), E> __pinned_init() argument
71 make_closure<F, O, E>(self, f: F) -> F where F: FnOnce(*mut Self::Datee) -> Result<O, E>, make_closure() argument
101 make_closure<F, O, E>(self, f: F) -> F where F: FnOnce(*mut Self::Datee) -> Result<O, E>, make_closure() argument
171 init<E>(self: Pin<&mut Self>, init: impl PinInit<T, E>) -> Result<Pin<&mut T>, E> init() argument
[all...]
H A Dalloc.rs139 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() argument
148 fn write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> { in write_pin_init() argument
/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 fn pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> error::Result<Self::PinnedSelf> in pin_init() argument
166 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in 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.rs148 new<'a, E>( dev: &'a Device<Bound>, data: impl PinInit<T, E> + 'a, ) -> impl PinInit<Self, Error> + 'a where T: 'a, Error: From<E>, new() argument
371 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
374 register<T, E>(dev: &Device<Bound>, data: impl PinInit<T, E>, flags: Flags) -> Result where T: Send + 'static, Error: From<E>, register() argument
H A Dtypes.rs383 pub fn try_ffi_init<E>( in try_ffi_init() argument
414 fn pin_init<E>(slot: impl PinInit<T, E>) -> impl PinInit<Self, E> { in pin_init() argument
H A Drevocable.rs85 pub fn new<E>(data: impl PinInit<T, E>) -> impl PinInit<Self, E> { in new() argument
/linux/lib/crypto/
H A Dsha1.c61 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
67 #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
68 #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E ) argument
69 #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E ) argument
70 T_40_59(t,A,B,C,D,E) global() argument
71 T_60_79(t,A,B,C,D,E) global() argument
93 __u32 A, B, C, D, E; sha1_transform() local
[all...]
/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/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 pub fn pin_slice<Func, Item, E>( in pin_slice() argument
439 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() argument
448 fn write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> { in write_pin_init() argument
465 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E> in try_pin_init() argument
473 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in try_init() argument
/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 pub fn pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Self, E> in pin_init() argument
194 pub fn init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in 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/net/wan/
H A Dfarsync.c492 #define FST_RDB(C, E) (readb((C)->mem + WIN_OFFSET(E))) argument
493 #define FST_RDW(C, E) (readw((C)->mem + WIN_OFFSET(E))) argument
494 #define FST_RDL(C, E) (readl((C)->mem + WIN_OFFSET(E))) argument
496 #define FST_WRB(C, E, B) (writeb((B), (C)->mem + WIN_OFFSET(E))) argument
497 #define FST_WRW(C, E, W) (writew((W), (C)->mem + WIN_OFFSET(E))) argument
498 #define FST_WRL(C, E, L) (writel((L), (C)->mem + WIN_OFFSET(E))) argument
/linux/drivers/gpu/drm/bridge/cadence/
H A Dcdns-mhdp8546-hdcp.h82 u8 E[DLP_E]; member
/linux/drivers/gpu/drm/nouveau/nvkm/engine/gr/
H A Dgm107.c350 int E = -1, X; in gm107_gr_init_bios() local
/linux/drivers/mtd/devices/
H A Dslram.c53 #define E(fmt, args...) printk(KERN_NOTICE fmt, ## args) macro

12