Searched refs:t3 (Results 1 - 25 of 137) sorted by relevance

123456

/linux-master/scripts/
H A Dmakelst26 t3=`grep $t2 $2`
27 t4=`field 1 $t3`
/linux-master/arch/riscv/lib/
H A Dmemmove.S35 * Forward Copy: t3 - Index counter of dest
52 mv t3, a0
67 andi t5, t3, -SZREG
70 * If dest(Register t3) rounded down to the nearest naturally
78 beq t5, t3, 1f
100 sub a5, a1, t3 /* Find the difference between src and dest */
135 addi t3, t3, (2 * SZREG)
139 REG_S t2, ((0 * SZREG) - (2 * SZREG))(t3)
141 beq t3, a
[all...]
H A Dstrlen.S58 * t0, t1, t2, t3
67 li t3, SZREG
68 sub t3, t3, t2
98 bgtu t3, a0, 2f
102 li t3, -1
113 beq t1, t3, 1b
H A Dstrncmp.S65 * t0, t1, t2, t3, t4, t5, t6
83 orc.b t3, t0
84 bne t3, t5, 2f
85 orc.b t3, t1
86 bne t3, t5, 2f
/linux-master/arch/alpha/include/asm/
H A Dword-at-a-time.h42 unsigned long t1, t2, t3;
48 t3 = bits & 0xaa;
51 if (t3) t3 = 1;
52 return t1 + t2 + t3;
/linux-master/lib/crypto/mpi/
H A Dmpi-inv.c33 MPI u, v, u1, u2 = NULL, u3, v1, v2 = NULL, v3, t1, t2 = NULL, t3; local
68 t3 = mpi_copy(v);
69 t3->sign = !t3->sign;
75 t3 = mpi_copy(u);
88 mpi_rshift(t3, t3, 1);
93 mpi_rshift(t3, t3, 1);
97 } while (!mpi_test_bit(t3,
[all...]
/linux-master/arch/alpha/include/uapi/asm/
H A Dswab.h27 __u64 t0, t1, t2, t3; local
34 t3 = t2 & 0x00FF00FF; /* t3 : 0000000000CC00AA */
35 t1 = t0 + t3; /* t1 : ssssssssDDCCBBAA */
H A Dregdef.h10 #define t3 $4 macro
/linux-master/tools/perf/tests/
H A Dthread-maps-share.c14 struct thread *t1, *t2, *t3; local
37 t3 = machine__findnew_thread(machine, 0, 3);
43 leader && t1 && t2 && t3 && other);
51 TEST_ASSERT_VAL("maps don't match", maps__equal(maps, thread__maps(t3)));
69 machine__remove_thread(machine, t3);
79 thread__put(t3);
/linux-master/arch/loongarch/kernel/
H A Dmcount.S50 la.pcrel t3, ftrace_graph_return
51 PTR_L t3, t3, 0
52 bne t1, t3, ftrace_graph_caller
54 la.pcrel t3, ftrace_graph_entry
55 PTR_L t3, t3, 0
56 bne t1, t3, ftrace_graph_caller
/linux-master/arch/alpha/lib/
H A Dev67-strrchr.S42 sll t5, 8, t3 # U : 00000000ch000000
46 or t5, t3, t3 # E : 00000000chch0000
51 or t2, t3, t2 # E : 0000chchchch0000
60 cmpbge zero, t2, t3 # E : bits set iff byte == c
62 andnot t3, t4, t3 # E : clear garbage from char test
68 cmovne t3, v0, t6 # E : save previous comparisons match
72 cmovne t3, t3, t
[all...]
H A Dstrchr.S36 cmpbge zero, t1, t3 # e0 : bits set iff byte == c
37 or t2, t3, t0 # e1 : bits set iff char match or zero match
46 cmpbge zero, t1, t3 # .. e1 : bits set iff byte == c
47 or t2, t3, t0 # e0 :
53 and t0, t3, t1 # e0 : bit set iff byte was the char
57 and t0, 0xcc, t3 # .. e1 :
60 cmovne t3, 2, t3 # e0 :
62 addq t2, t3, t2 # e0 :
H A Dev67-strchr.S33 and a1, 0xff, t3 # E : 00000000000000ch
37 insbl t3, 6, a3 # U : 00ch000000000000
38 or t5, t3, a1 # E : 000000000000chch
55 cmpbge zero, t1, t3 # E : bits set iff byte == c
56 or t2, t3, t0 # E : bits set iff char match or zero match
74 cmpbge zero, t1, t3 # E : bits set iff byte == c
75 or t2, t3, t0 # E :
76 cttz t3, a2 # U0 : speculative (in case we get a match)
81 and t0, t3, t1 # E : bit set iff byte was the char
H A Dstrrchr.S38 cmpbge zero, t2, t3 # e0 : bits set iff byte == c
40 andnot t3, t4, t3 # e0 : clear garbage from char test
46 cmovne t3, v0, t6 # .. e1 : save previous comparisons match
47 cmovne t3, t3, t8 # e0 :
51 cmpbge zero, t2, t3 # e0 : bits set iff byte == c
61 and t3, t4, t3 # e0 : mask out char matches after null
62 cmovne t3, t
[all...]
/linux-master/arch/loongarch/lib/
H A Dunaligned.S35 1: ld.b t3, a0, 0
38 2: ld.bu t3, a0, 0
39 3: sll.d t3, t3, t1
40 or t2, t2, t3
/linux-master/lib/zlib_dfltcc/
H A Ddfltcc_util.h37 size_t t3 = len1 ? *len1 : 0; local
43 register size_t r3 __asm__("r3") = t3;
60 t2 = r2; t3 = r3; t4 = r4; t5 = r5;
65 *len1 = t3;
/linux-master/arch/arm/crypto/
H A Dsha512-armv4.pl76 $t3="r12";
104 ldr $t3,[sp,#$Hoff+4] @ h.hi
119 adc $Thi,$Thi,$t3 @ T += h
120 ldr $t3,[sp,#$Goff+4] @ g.hi
124 eor $t1,$t1,$t3
132 eor $t1,$t1,$t3 @ Ch(e,f,g)
133 ldr $t3,[$Ktbl,#$hi] @ K[i].hi
141 adc $Thi,$Thi,$t3 @ T += K[i]
147 ldr $t3,[sp,#$Coff+0] @ c.lo
174 and $Alo,$Alo,$t3
[all...]
H A Daes-neonbs-core.S169 y0, y1, y2, y3, t0, t1, t2, t3
172 mul_gf4 \x0, \x1, \y0, \y1, \t2, \t3
175 mul_gf4_n_gf4 \t0, \t1, \y0, \y1, \t3, \x2, \x3, \y2, \y3, \t2
182 mul_gf4_n_gf4 \t0, \t1, \y0, \y1, \t3, \x6, \x7, \y2, \y3, \t2
185 mul_gf4 \x4, \x5, \y0, \y1, \t2, \t3
193 t0, t1, t2, t3, s0, s1, s2, s3
194 veor \t3, \x4, \x6
199 veor \s3, \t3, \t0
201 vand \s2, \t3, \s0
202 vorr \t3, \t
[all...]
/linux-master/include/uapi/linux/
H A Dax25.h93 unsigned int t3, t3timer; member in struct:ax25_info_struct_deprecated
103 unsigned int t3, t3timer; member in struct:ax25_info_struct
/linux-master/arch/loongarch/power/
H A Dhibernate_asm.S39 PTR_LI t3, _PAGE_SIZE
40 PTR_ADD t3, t3, t1
46 bne t1, t3, 1b
/linux-master/drivers/tee/amdtee/
H A Damdtee_if.h63 #define TEE_PARAM_TYPES(t0, t1, t2, t3) \
64 ((t0) | ((t1) << 4) | ((t2) << 8) | ((t3) << 12))
/linux-master/arch/riscv/kernel/
H A Dcopy-unaligned.S24 REG_L t3, 7*SZREG(a1)
32 REG_S t3, 7*SZREG(a0)
56 lb t3, 7(a1)
64 sb t3, 7(a0)
H A Dmcount.S90 la t3, ftrace_graph_entry
91 REG_L t2, 0(t3)
95 la t3, ftrace_trace_function
96 REG_L t5, 0(t3)
/linux-master/arch/x86/include/asm/
H A Dsyscall_wrapper.h63 #define SYSCALL_PT_ARG6(m, t1, t2, t3, t4, t5, t6) \
64 SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5), m(t6, (regs->bp))
65 #define SYSCALL_PT_ARG5(m, t1, t2, t3, t4, t5) \
66 SYSCALL_PT_ARG4(m, t1, t2, t3, t4), m(t5, (regs->di))
67 #define SYSCALL_PT_ARG4(m, t1, t2, t3, t4) \
68 SYSCALL_PT_ARG3(m, t1, t2, t3), m(t4, (regs->si))
69 #define SYSCALL_PT_ARG3(m, t1, t2, t3) \
70 SYSCALL_PT_ARG2(m, t1, t2), m(t3, (regs->dx))
/linux-master/arch/parisc/include/asm/
H A Dchecksum.h115 unsigned long t0, t1, t2, t3; local
172 "=r" (t0), "=r" (t1), "=r" (t2), "=r" (t3)

Completed in 2614 milliseconds

123456