/linux-6.14.4/rust/kernel/ |
D | init.rs | 859 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 …]
|
D | types.rs | 367 pub fn try_ffi_init<E>( in try_ffi_init() argument
|
/linux-6.14.4/lib/crypto/ |
D | sha1.c | 57 #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.rs | 31 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/ |
D | errname.c | 16 #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
|
D | locking-selftest.c | 301 #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/ |
D | rpc_global_enums.h | 220 # define E(RPC) NV_VGPU_MSG_EVENT_##RPC, macro 224 E(FIRST_EVENT = 0x1000) // 0x1000 enumerator
|
/linux-6.14.4/net/netfilter/ipset/ |
D | pfxlen.c | 142 #define E(a, b, c, d) \ macro 157 #define E(a, b, c, d) \ macro
|
/linux-6.14.4/tools/testing/selftests/bpf/progs/ |
D | btf_dump_test_case_namespacing.c | 24 enum E { enum 28 typedef enum E E; typedef
|
D | test_global_func9.c | 23 enum E { enum
|
/linux-6.14.4/rust/kernel/alloc/ |
D | kbox.rs | 310 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/ |
D | mem-events.c | 6 #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/ |
D | mem-events.c | 6 #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/ |
D | mem-events.c | 10 #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/ |
D | futex_bench.c | 18 #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/ |
D | arc.rs | 714 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/ |
D | memcg_protection.m | 20 E = 50 / 1024; variable
|
/linux-6.14.4/rust/kernel/list/ |
D | arc.rs | 183 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/ |
D | test-fsmount.c | 18 #define E(x) do { if ((x) == -1) { perror(#x); exit(1); } } while(0) macro
|
/linux-6.14.4/arch/x86/crypto/ |
D | sha1_avx2_x86_64_asm.S | 104 .set E, REG_E define 324 .set E, D define
|
/linux-6.14.4/crypto/ |
D | khazad.c | 34 u64 E[KHAZAD_ROUNDS + 1]; member
|
D | anubis.c | 48 u32 E[ANUBIS_MAX_ROUNDS + 1][4]; member
|
/linux-6.14.4/drivers/net/wan/ |
D | farsync.c | 492 #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/ |
D | cdns-mhdp8546-hdcp.h | 82 u8 E[DLP_E]; member
|
/linux-6.14.4/drivers/gpu/drm/nouveau/nvkm/engine/gr/ |
D | gm107.c | 350 int E = -1, X; in gm107_gr_init_bios() local
|