Home
last modified time | relevance | path

Searched +defs:a +defs:out (Results 1 – 25 of 130) sorted by relevance

123456

/linux-6.15/arch/x86/crypto/
H A Dcurve25519-x86_64.c19 static __always_inline u64 eq_mask(u64 a, u64 b) in eq_mask()
28 static __always_inline u64 gte_mask(u64 a, u64 b) in gte_mask()
43 static inline u64 add_scalar(u64 *out, const u64 *f1, u64 f2) in add_scalar()
75 static inline void fadd(u64 *out, const u64 *f1, const u64 *f2) in fadd()
116 static inline void fsub(u64 *out, const u64 *f1, const u64 *f2) in fsub()
670 static inline void fsqr(u64 *out, const u64 *f, u64 *tmp) in fsqr()
781 static inline void fsqr2(u64 *out, const u64 *f, u64 *tmp) in fsqr2()
984 u64 *a = tmp1; in point_add_and_double() local
1032 u64 *a = tmp1; in point_double() local
1131 u64 *a; in finv() local
[all …]
/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dtest_core_reloc_nesting.c13 char out[256]; member
17 int a; member
27 struct core_reloc_nesting_substruct a; member
28 } a; member
40 struct core_reloc_nesting *out = (void *)&data.out; in test_core_nesting() local
H A Dtest_core_reloc_flavors.c13 char out[256]; member
17 int a; member
26 int a; member
38 int a; member
51 struct core_reloc_flavors *out = (void *)&data.out; in test_core_flavors() local
H A Dtest_core_reloc_misc.c13 char out[256]; member
17 int a, b, c; member
32 int a; member
44 struct core_reloc_misc_output *out = (void *)&data.out; in test_core_misc() local
H A Dtest_core_reloc_arrays.c13 char out[256]; member
31 int a[5]; member
44 struct core_reloc_arrays_output *out = (void *)&data.out; in test_core_arrays() local
45 int *a; in test_core_arrays() local
H A Dtest_core_reloc_ptr_as_arr.c13 char out[256]; member
17 int a; member
26 struct core_reloc_ptr_as_arr *out = (void *)&data.out; in test_core_ptr_as_arr() local
H A Dtest_core_reloc_primitives.c13 char out[256]; member
22 char a; member
35 struct core_reloc_primitives *out = (void *)&data.out; in test_core_primitives() local
H A Dtest_core_reloc_mods.c13 char out[256]; member
17 int a, b, c, d, e, f, g, h; member
35 int a; member
60 struct core_reloc_mods_output *out = (void *)&data.out; in test_core_mods() local
H A Dtest_core_reloc_existence.c13 char out[256]; member
34 int a; member
45 struct core_reloc_existence_output *out = (void *)&data.out; in test_core_existence() local
/linux-6.15/crypto/
H A Dtwofish_generic.c40 #define G1(a) \ argument
53 #define ENCROUND(n, a, b, c, d) \ argument
60 #define DECROUND(n, a, b, c, d) \ argument
95 static void twofish_encrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in twofish_encrypt()
100 u32 a, b, c, d; in twofish_encrypt() local
130 static void twofish_decrypt(struct crypto_tfm *tfm, u8 *out, const u8 *in) in twofish_decrypt()
135 u32 a, b, c, d; in twofish_decrypt() local
H A Daegis128-neon-inner.c182 static uint8x16_t vqtbl1q_u8(uint8x16_t a, uint8x16_t b) in vqtbl1q_u8()
193 static uint8x16_t vqtbx1q_u8(uint8x16_t v, uint8x16_t a, uint8x16_t b) in vqtbx1q_u8()
248 void *out = dst; in crypto_aegis128_encrypt_chunk_neon() local
294 void *out = dst; in crypto_aegis128_decrypt_chunk_neon() local
H A Dmd4.c63 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
64 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s)) argument
65 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s)) argument
69 u32 a, b, c, d; in md4_transform() local
184 static int md4_final(struct shash_desc *desc, u8 *out) in md4_final()
/linux-6.15/lib/crypto/
H A Dsha256.c64 #define SHA256_ROUND(i, a, b, c, d, e, f, g, h) do { \ argument
74 u32 a, b, c, d, e, f, g, h; in sha256_transform() local
140 static void __sha256_final(struct sha256_state *sctx, u8 *out, int digest_size) in __sha256_final()
146 void sha256_final(struct sha256_state *sctx, u8 *out) in sha256_final()
152 void sha224_final(struct sha256_state *sctx, u8 *out) in sha224_final()
158 void sha256(const u8 *data, unsigned int len, u8 *out) in sha256()
H A Darc4.c24 u32 a = ctx->S[i]; in arc4_setkey() local
37 void arc4_crypt(struct arc4_ctx *ctx, u8 *out, const u8 *in, unsigned int len) in arc4_crypt()
40 u32 x, y, a, b; in arc4_crypt() local
/linux-6.15/arch/x86/lib/
H A Diomem.c70 char *out = to; in unrolled_memcpy_fromio() local
79 volatile char __iomem *out = to; in unrolled_memcpy_toio() local
87 static void unrolled_memset_io(volatile void __iomem *a, int b, size_t c) in unrolled_memset_io()
114 void memset_io(volatile void __iomem *a, int b, size_t c) in memset_io()
/linux-6.15/tools/perf/util/
H A Dmem-events.c23 #define E(t, n, s, l, a) { .tag = t, .name = n, .event_name = s, .ldlat = l, .aux_event = a } argument
333 int perf_mem__tlb_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__tlb_scnprintf()
417 static int perf_mem__op_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__op_scnprintf()
441 int perf_mem__lvl_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__lvl_scnprintf()
523 int perf_mem__snp_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__snp_scnprintf()
565 int perf_mem__lck_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__lck_scnprintf()
583 int perf_mem__blk_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_mem__blk_scnprintf()
606 int perf_script__meminfo_scnprintf(char *out, size_t sz, const struct mem_info *mem_info) in perf_script__meminfo_scnprintf()
659 #define P(a, b) PERF_MEM_##a##_##b in c2c_decode_stats() argument
/linux-6.15/fs/smb/common/
H A Dcifs_arc4.c27 u32 a = ctx->S[i]; in cifs_arc4_setkey() local
40 void cifs_arc4_crypt(struct arc4_ctx *ctx, u8 *out, const u8 *in, unsigned int len) in cifs_arc4_crypt()
43 u32 x, y, a, b; in cifs_arc4_crypt() local
H A Dcifs_md4.c51 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument
52 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (u32)0x5A827999,s)) argument
53 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (u32)0x6ED9EBA1,s)) argument
57 u32 a, b, c, d; in md4_transform() local
172 int cifs_md4_final(struct md4_ctx *mctx, u8 *out) in cifs_md4_final()
/linux-6.15/fs/bcachefs/
H A Dalloc_background.c87 static void bch2_alloc_unpack_v1(struct bkey_alloc_unpacked *out, in bch2_alloc_unpack_v1()
101 static int bch2_alloc_unpack_v2(struct bkey_alloc_unpacked *out, in bch2_alloc_unpack_v2()
134 static int bch2_alloc_unpack_v3(struct bkey_alloc_unpacked *out, in bch2_alloc_unpack_v3()
244 struct bch_alloc_v4 a; in bch2_alloc_v4_validate() local
338 void bch2_alloc_to_text(struct printbuf *out, struct bch_fs *c, struct bkey_s_c k) in bch2_alloc_to_text()
370 void __bch2_alloc_to_v4(struct bkey_s_c k, struct bch_alloc_v4 *out) in __bch2_alloc_to_v4()
439 struct bkey_s_c_alloc_v4 a; in bch2_alloc_to_v4_mut_inlined() local
1152 const struct bch_alloc_v4 *a; in bch2_check_alloc_key() local
1685 const struct bch_alloc_v4 *a; in bch2_check_alloc_to_lru_ref() local
1833 struct bkey_i_alloc_v4 *a; in bch2_discard_one_bucket() local
[all …]
/linux-6.15/arch/x86/include/asm/
H A Datomic64_32.h52 #define __alternative_atomic64(f, g, out, in, clobbers...) \ argument
61 #define __alternative_atomic64(f, g, out, in, clobbers...) \ argument
75 #define alternative_atomic64(f, out, in, clobbers...) \ argument
158 s64 a; in arch_atomic64_inc_return() local
169 s64 a; in arch_atomic64_dec_return() local
212 static __always_inline int arch_atomic64_add_unless(atomic64_t *v, s64 a, s64 u) in arch_atomic64_add_unless()
/linux-6.15/samples/connector/
H A Ducon.c38 #define ulog(f, a...) fprintf(stdout, f, ##a) argument
40 #define ulog(f, a...) do {} while (0) argument
105 FILE *out; in main() local
/linux-6.15/drivers/platform/chrome/
H A Dcros_ec_sensorhub_ring.c136 static void cros_ec_sensor_ring_median_swap(s64 *a, s64 *b) in cros_ec_sensor_ring_median_swap()
423 struct cros_ec_sensors_ring_sample *out) in cros_ec_sensor_ring_process_event()
433 s64 a = in->timestamp; in cros_ec_sensor_ring_process_event() local
743 struct cros_ec_sensors_ring_sample *out; in cros_ec_sensor_ring_spread_add_legacy() local
802 struct cros_ec_sensors_ring_sample *out, *last_out; in cros_ec_sensorhub_ring_handler() local
/linux-6.15/include/uapi/linux/
H A Dcxl_mem.h55 #define ___C(a, b) CXL_MEM_COMMAND_ID_##a argument
56 #define ___DEPRECATED(a, b) CXL_MEM_DEPRECATED_ID_##a argument
61 #define ___C(a, b) { b } argument
62 #define ___DEPRECATED(a, b) { "Deprecated " b } argument
79 #define ___C(a, b) (0) argument
80 #define ___DEPRECATED(a, b) (1) argument
230 } out; member
/linux-6.15/net/ax25/
H A Dax25_addr.c46 char *ax2asc(char *buf, const ax25_address *a) in ax2asc()
114 int ax25cmp(const ax25_address *a, const ax25_address *b) in ax25cmp()
284 void ax25_digi_invert(const ax25_digi *in, ax25_digi *out) in ax25_digi_invert()
/linux-6.15/lib/
H A Ddecompress_unxz.c184 static bool memeq(const void *a, const void *b, size_t size) in memeq()
261 unsigned char *out, long *in_used, in unxz()
408 unsigned char *out, long out_size, in __decompress()

123456