Symbol: t5
arch/arm64/include/asm/assembler.h
526
.macro copy_page dest:req src:req t1:req t2:req t3:req t4:req t5:req t6:req t7:req t8:req
arch/loongarch/include/asm/stackframe.h
103
cfi_st t5, PT_R17, \docfi
arch/loongarch/include/asm/stackframe.h
222
cfi_ld t5, PT_R17, \docfi
arch/riscv/include/asm/compat.h
106
cregs->t5 = (compat_ulong_t) regs->t5;
arch/riscv/include/asm/compat.h
143
regs->t5 = (unsigned long) cregs->t5;
arch/riscv/include/asm/compat.h
69
compat_ulong_t t5;
arch/riscv/include/asm/ftrace.h
151
unsigned long t5;
arch/riscv/include/asm/kvm_host.h
139
unsigned long t5;
arch/riscv/include/asm/ptrace.h
48
unsigned long t5;
arch/riscv/include/uapi/asm/ptrace.h
56
unsigned long t5;
arch/riscv/kernel/asm-offsets.c
126
OFFSET(PT_T5, pt_regs, t5);
arch/riscv/kernel/asm-offsets.c
170
OFFSET(KVM_ARCH_GUEST_T5, kvm_vcpu_arch, guest_context.t5);
arch/riscv/kernel/asm-offsets.c
207
OFFSET(KVM_ARCH_HOST_T5, kvm_vcpu_arch, host_context.t5);
arch/riscv/kernel/asm-offsets.c
524
DEFINE(FREGS_T5, offsetof(struct __arch_ftrace_regs, t5));
arch/riscv/kernel/kgdb.c
199
{DBG_REG_T5, GDB_SIZEOF_REG, offsetof(struct pt_regs, t5)},
arch/riscv/kernel/process.c
97
regs->t5, regs->t6, get_active_shstk(current));
arch/riscv/kernel/ptrace.c
480
REG_OFFSET_NAME(t5),
arch/s390/include/asm/stacktrace.h
128
#define CALL_LARGS_5(t1, a1, t2, a2, t3, a3, t4, a4, t5, a5) \
arch/s390/include/asm/stacktrace.h
130
long arg5 = (long)(t5)(a5)
arch/x86/include/asm/syscall_wrapper.h
63
#define SYSCALL_PT_ARG6(m, t1, t2, t3, t4, t5, t6) \
arch/x86/include/asm/syscall_wrapper.h
64
SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5), m(t6, (regs->bp))
arch/x86/include/asm/syscall_wrapper.h
65
#define SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5) \
arch/x86/include/asm/syscall_wrapper.h
66
SYSCALL_PT_ARG4(m, t1, t2, t3, t4), m(t5, (regs->di))
crypto/ecc.c
1134
u64 t5[ECC_MAX_DIGITS];
crypto/ecc.c
1144
vli_mod_mult_fast(t5, x1, t4, curve);
crypto/ecc.c
1178
vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
crypto/ecc.c
1180
vli_mod_sub(z1, z1, t5, curve_prime, ndigits);
crypto/ecc.c
1182
vli_mod_sub(t5, t5, z1, curve_prime, ndigits);
crypto/ecc.c
1184
vli_mod_mult_fast(x1, x1, t5, curve);
crypto/ecc.c
1235
u64 t5[ECC_MAX_DIGITS];
crypto/ecc.c
1240
vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
crypto/ecc.c
1242
vli_mod_square_fast(t5, t5, curve);
crypto/ecc.c
1244
vli_mod_mult_fast(x1, x1, t5, curve);
crypto/ecc.c
1246
vli_mod_mult_fast(x2, x2, t5, curve);
crypto/ecc.c
1250
vli_mod_square_fast(t5, y2, curve);
crypto/ecc.c
1253
vli_mod_sub(t5, t5, x1, curve_prime, ndigits);
crypto/ecc.c
1255
vli_mod_sub(t5, t5, x2, curve_prime, ndigits);
crypto/ecc.c
1261
vli_mod_sub(x2, x1, t5, curve_prime, ndigits);
crypto/ecc.c
1267
vli_set(x2, t5, ndigits);
crypto/ecc.c
1278
u64 t5[ECC_MAX_DIGITS];
crypto/ecc.c
1285
vli_mod_sub(t5, x2, x1, curve_prime, ndigits);
crypto/ecc.c
1287
vli_mod_square_fast(t5, t5, curve);
crypto/ecc.c
1289
vli_mod_mult_fast(x1, x1, t5, curve);
crypto/ecc.c
1291
vli_mod_mult_fast(x2, x2, t5, curve);
crypto/ecc.c
1293
vli_mod_add(t5, y2, y1, curve_prime, ndigits);
crypto/ecc.c
1316
vli_mod_square_fast(t7, t5, curve);
crypto/ecc.c
1322
vli_mod_mult_fast(t6, t6, t5, curve);
lib/zlib_dfltcc/dfltcc_util.h
43
size_t t5 = len2 ? *len2 : 0;
lib/zlib_dfltcc/dfltcc_util.h
49
register size_t r5 __asm__("r5") = t5;
lib/zlib_dfltcc/dfltcc_util.h
64
t2 = r2; t3 = r3; t4 = r4; t5 = r5;
lib/zlib_dfltcc/dfltcc_util.h
97
*len2 = t5;
tools/lib/bpf/usdt.c
1559
{ "t5", offsetof(struct user_regs_struct, t5) },
tools/testing/selftests/bpf/prog_tests/btf_dump.c
485
double t5 = -5.678912;
tools/testing/selftests/bpf/prog_tests/btf_dump.c
506
ASSERT_OK(btf_dump_data(btf, d, "test_double", NULL, 0, &t5, 8, str,
tools/testing/selftests/bpf/progs/test_core_reloc_type_id.c
70
func_proto_typedef t5 = 0;
tools/testing/selftests/kvm/include/riscv/processor.h
107
unsigned long t5;
tools/testing/selftests/kvm/lib/riscv/processor.c
270
core.regs.t5 = vcpu_get_reg(vcpu, RISCV_CORE_REG(regs.t5));
tools/testing/selftests/kvm/lib/riscv/processor.c
298
core.regs.t3, core.regs.t4, core.regs.t5, core.regs.t6);
tools/testing/selftests/kvm/riscv/get-reg-list.c
888
KVM_REG_RISCV | KVM_REG_SIZE_ULONG | KVM_REG_RISCV_CORE | KVM_REG_RISCV_CORE_REG(regs.t5),