Home
last modified time | relevance | path

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

12

/linux-6.14.4/rust/kernel/
Dinit.rs859 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>; in __pinned_init() argument
901 fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> in pin_chain() argument
921 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
971 unsafe fn __init(self, slot: *mut T) -> Result<(), E>; in __init() argument
1000 fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E> in chain() argument
1019 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
1035 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
1054 pub const unsafe fn pin_init_from_closure<T: ?Sized, E>( in pin_init_from_closure() argument
1073 pub const unsafe fn init_from_closure<T: ?Sized, E>( in init_from_closure() argument
1083 pub fn uninit<T, E>() -> impl Init<MaybeUninit<T>, E> { in uninit() argument
[all …]
Dtypes.rs367 pub fn try_ffi_init<E>( in try_ffi_init() argument
/linux-6.14.4/lib/crypto/
Dsha1.c57 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
63 #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
64 #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
65 #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
66 #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D,… argument
67 #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E ) argument
89 __u32 A, B, C, D, E; in sha1_transform() local
/linux-6.14.4/rust/kernel/init/
D__internal.rs31 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
43 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
70 fn make_closure<F, O, E>(self, f: F) -> F in make_closure() argument
100 fn make_closure<F, O, E>(self, f: F) -> F in make_closure() argument
170 pub fn init<E>(self: Pin<&mut Self>, init: impl PinInit<T, E>) -> Result<Pin<&mut T>, E> { in init() argument
/linux-6.14.4/lib/
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
Dlocking-selftest.c301 #define E() \ macro
527 #define E() \ macro
559 #define E() \ macro
592 #define E() \ macro
625 #define E() \ macro
658 #define E() \ macro
691 #define E() \ macro
729 #define E() \ macro
762 #define E() \ macro
/linux-6.14.4/drivers/gpu/drm/nouveau/include/nvrm/535.113.01/nvidia/kernel/inc/vgpu/
Drpc_global_enums.h220 # define E(RPC) NV_VGPU_MSG_EVENT_##RPC, macro
224 E(FIRST_EVENT = 0x1000) // 0x1000 enumerator
/linux-6.14.4/net/netfilter/ipset/
Dpfxlen.c142 #define E(a, b, c, d) \ macro
157 #define E(a, b, c, d) \ macro
/linux-6.14.4/tools/testing/selftests/bpf/progs/
Dbtf_dump_test_case_namespacing.c24 enum E { enum
28 typedef enum E E; typedef
Dtest_global_func9.c23 enum E { enum
/linux-6.14.4/rust/kernel/alloc/
Dkbox.rs310 fn write_init<E>(mut self, init: impl Init<T, E>) -> Result<Self::Initialized, E> { in write_init() argument
319 fn write_pin_init<E>(mut self, init: impl PinInit<T, E>) -> Result<Pin<Self::Initialized>, E> { in write_pin_init() argument
336 fn try_pin_init<E>(init: impl PinInit<T, E>, flags: Flags) -> Result<Pin<Self>, E> in try_pin_init() argument
344 fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E> in try_init() argument
/linux-6.14.4/tools/perf/arch/arm64/util/
Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux-6.14.4/tools/perf/arch/powerpc/util/
Dmem-events.c6 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux-6.14.4/tools/perf/arch/x86/util/
Dmem-events.c10 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } macro
/linux-6.14.4/tools/testing/selftests/powerpc/benchmarks/
Dfutex_bench.c18 #define futex(A, B, C, D, E, F) syscall(__NR_futex, A, B, C, D, E, F) argument
/linux-6.14.4/rust/kernel/sync/
Darc.rs714 pub fn init_with<E>(mut self, init: impl Init<T, E>) -> core::result::Result<UniqueArc<T>, E> { in init_with() argument
724 pub fn pin_init_with<E>( in pin_init_with() argument
/linux-6.14.4/tools/testing/selftests/cgroup/
Dmemcg_protection.m20 E = 50 / 1024; variable
/linux-6.14.4/rust/kernel/list/
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-6.14.4/samples/vfs/
Dtest-fsmount.c18 #define E(x) do { if ((x) == -1) { perror(#x); exit(1); } } while(0) macro
/linux-6.14.4/arch/x86/crypto/
Dsha1_avx2_x86_64_asm.S104 .set E, REG_E define
324 .set E, D define
/linux-6.14.4/crypto/
Dkhazad.c34 u64 E[KHAZAD_ROUNDS + 1]; member
Danubis.c48 u32 E[ANUBIS_MAX_ROUNDS + 1][4]; member
/linux-6.14.4/drivers/net/wan/
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-6.14.4/drivers/gpu/drm/bridge/cadence/
Dcdns-mhdp8546-hdcp.h82 u8 E[DLP_E]; member
/linux-6.14.4/drivers/gpu/drm/nouveau/nvkm/engine/gr/
Dgm107.c350 int E = -1, X; in gm107_gr_init_bios() local

12