Home
last modified time | relevance | path

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

123

/openbmc/linux/rust/kernel/
H A Dinit.rs777 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>; in __pinned_init() argument
818 fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E> in pin_chain() argument
838 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
891 unsafe fn __init(self, slot: *mut T) -> Result<(), E>; in __init() argument
920 fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E> in chain() argument
939 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
957 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
976 pub const unsafe fn pin_init_from_closure<T: ?Sized, E>( in pin_init_from_closure() argument
995 pub const unsafe fn init_from_closure<T: ?Sized, E>( in init_from_closure() argument
1005 pub fn uninit<T, E>() -> impl Init<MaybeUninit<T>, E> { in uninit() argument
[all …]
/openbmc/linux/lib/crypto/
H A 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
/openbmc/qemu/target/loongarch/tcg/
H A Dvec_helper.c347 #define DO_3OP(NAME, BIT, E, DO_OP) \ argument
387 #define DO_VADDA(NAME, BIT, E) \ argument
406 #define VMINMAXI(NAME, BIT, E, DO_OP) \ argument
514 #define VMADDSUB(NAME, BIT, E, DO_OP) \ argument
624 #define VDIV(NAME, BIT, E, DO_OP) \ argument
655 #define VSAT_S(NAME, BIT, E) \ argument
675 #define VSAT_U(NAME, BIT, E) \ argument
979 #define do_vsrlr(E, T) \ argument
994 #define VSRLR(NAME, BIT, T, E) \ in do_vsrlr() argument
1013 #define VSRLRI(NAME, BIT, E) \ argument
[all …]
/openbmc/linux/rust/kernel/init/
H A D__internal.rs30 unsafe fn __init(self, slot: *mut T) -> Result<(), E> { in __init() argument
42 unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E> { in __pinned_init() argument
68 fn make_closure<F, O, E>(self, f: F) -> F in make_closure() argument
97 fn make_closure<F, O, E>(self, f: F) -> F in make_closure() argument
165 pub fn init<E>(self: Pin<&mut Self>, init: impl PinInit<T, E>) -> Result<Pin<&mut T>, E> { in init() argument
/openbmc/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
H A 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
/openbmc/linux/net/netfilter/ipset/
H A Dpfxlen.c142 #define E(a, b, c, d) \ macro
157 #define E(a, b, c, d) \ macro
/openbmc/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
/openbmc/linux/rust/kernel/sync/
H A Darc.rs184 pub fn pin_init<E>(init: impl PinInit<T, E>) -> error::Result<Self> in pin_init()
195 pub fn init<E>(init: impl Init<T, E>) -> error::Result<Self> in init()
566 pub fn init_with<E>(mut self, init: impl Init<T, E>) -> core::result::Result<UniqueArc<T>, E> { in init_with() argument
576 pub fn pin_init_with<E>( in pin_init_with() argument
/openbmc/linux/tools/perf/arch/arm64/util/
H A Dmem-events.c5 #define E(t, n, s) { .tag = t, .name = n, .sysfs_name = s } macro
/openbmc/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
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/
H A DKconfig24 config E config in choice958c7c010104""choice958c7c010204""choice958c7c010304
/openbmc/linux/tools/perf/arch/x86/util/
H A Dmem-events.c17 #define E(t, n, s) { .tag = t, .name = n, .sysfs_name = s } macro
/openbmc/linux/tools/testing/selftests/cgroup/
H A Dmemcg_protection.m20 E = 50 / 1024; variable
/openbmc/qemu/tests/tcg/hppa/
H A Dstby.c41 #define TEST(INSN, OFS, E) \ argument
/openbmc/u-boot/arch/x86/include/asm/fsp/
H A Dfsp_types.h67 #define SIGNATURE_64(A, B, C, D, E, F, G, H) \ argument
/openbmc/qemu/gdbstub/
H A Dsyscalls.c166 #define E(X) case GDB_E##X: err = E##X; break in gdb_handle_file_io() macro
/openbmc/qemu/target/m68k/
H A Dm68k-semi.c51 #define E(X) case E##X: return GDB_E##X in host_to_gdb_errno() macro
/openbmc/linux/samples/vfs/
H A Dtest-fsmount.c18 #define E(x) do { if ((x) == -1) { perror(#x); exit(1); } } while(0) macro
/openbmc/qemu/include/hw/misc/
H A Dmips_itu.h39 uint8_t E; /* Empty Bit */ member
/openbmc/qemu/target/sparc/
H A Dtranslate.c39 # define gen_helper_rdpsr(D, E) qemu_build_not_reached() argument
40 # define gen_helper_rdasr17(D, E) qemu_build_not_reached() argument
41 # define gen_helper_rett(E) qemu_build_not_reached() argument
42 # define gen_helper_power_down(E) qemu_build_not_reached() argument
43 # define gen_helper_wrpsr(E, S) qemu_build_not_reached() argument
45 # define gen_helper_clear_softint(E, S) qemu_build_not_reached() argument
46 # define gen_helper_done(E) qemu_build_not_reached() argument
47 # define gen_helper_flushw(E) qemu_build_not_reached() argument
49 # define gen_helper_rdccr(D, E) qemu_build_not_reached() argument
50 # define gen_helper_rdcwp(D, E) qemu_build_not_reached() argument
[all …]
/openbmc/linux/crypto/
H A Dkhazad.c34 u64 E[KHAZAD_ROUNDS + 1]; member
/openbmc/linux/arch/x86/crypto/
H A Dsha1_avx2_x86_64_asm.S104 .set E, REG_E define
324 .set E, D define
/openbmc/linux/drivers/gpu/drm/bridge/cadence/
H A Dcdns-mhdp8546-hdcp.h82 u8 E[DLP_E]; member

123