Home
last modified time | relevance | path

Searched refs:t0 (Results 1 – 14 of 14) sorted by relevance

/bionic/libc/arch-mips/bionic/
Dffs.S50 subu $t0,$0,$a0
51 and $a0,$t0
52 clz $t0,$a0
55 subu $v0,$t0
62 subu $t0,$0,$a0
63 and $a0,$t0
68 sll $t0,$a0,4 /* t0 = X * 0x00000010 */
69 or $a0,$t0 /* a0 = X * 0x00000011 */
70 sll $t0,$a0,6 /* t0 = X * 0x00000440 */
71 or $a0,$t0 /* a0 = X * 0x00000451 */
[all …]
Dmemcmp16.S38 li $t0,0
44 1: lhu $t0,0($a0)
47 bne $t0,$t1,done
53 subu $v0,$t0,$t1
Dsigsetjmp.S66 REG_L t0, (_JBLEN*REGSZ)(a0) # get "savemask"
67 bne t0, 0x0, 1f # restore signal mask?
D_setjmp.S49 mfhc1 t0, FPR ; \
50 sw t0, OFF+4(BASE) ;
53 lw t0, OFF+4(BASE) ; \
56 mthc1 t0, FPR ; \
Dsetjmp.S50 mfhc1 t0, FPR ; \
51 sw t0, OFF+4(BASE) ;
54 lw t0, OFF+4(BASE) ; \
57 mthc1 t0, FPR ; \
/bionic/linker/arch/mips/
Dbegin.S43 la $t0, 1f
45 1: subu $t0, $ra, $t0
52 addu $t1, $t0
61 addu $s0, $t0
88 addu $t1, $t0
/bionic/libc/arch-mips/string/
Dmemcpy.S72 subu t0,a0,a1
73 sra AT,t0,31
74 xor t1,t0,AT
75 subu t0,t1,AT
76 sltu AT,t0,a2
113 addu t0,a0,a2 # t0 is the "past the end" address
120 subu t9,t0,160 # t9 is the "last safe pref 30,128(a0)" address
283 LWHI t0,0(a1)
284 LWLO t0,3(a1)
304 sw t0,0(a0)
[all …]
Dmemset.S77 DBG andi t0,a0,1 # a0 must be halfword aligned
78 DBG tne t0,zero
103 addu t0,a0,a2 # t0 is the "past the end" address
127 DBG andi t0,a0,3 # a0 must be word aligned
128 DBG tne t0,zero
143 addu t0,a0,a2 # t0 is the "past the end" address
155 addu t0,a0,a2 # t0 is the "past the end" address
/bionic/libc/arch-mips/include/machine/
Dregdef.h57 #define t0 $12 /* temp registers (not saved across subroutine calls) */ macro
62 #define t0 $8 /* temp registers (not saved across subroutine calls) */ macro
/bionic/libc/kernel/arch-mips/asm/
Dregdef.h34 #define t0 $8 macro
89 #define t0 $12 macro
/bionic/libm/upstream-freebsd/lib/msun/src/
De_lgammaf_r.c43 t0 = 4.8383611441e-01, /* 0x3ef7b95e */ variable
192 p1 = t0+w*(t3+w*(t6+w*(t9 +w*t12))); /* parallel comp */ in __ieee754_lgammaf_r()
De_lgamma_r.c110 t0 = 4.83836122723810047042e-01, /* 0x3FDEF72B, 0xC8EE38A2 */ variable
259 p1 = t0+w*(t3+w*(t6+w*(t9 +w*t12))); /* parallel comp */ in __ieee754_lgamma_r()
/bionic/linker/
Dlinker.cpp1625 struct timeval t0, t1; in __linker_init_post_relocation() local
1626 gettimeofday(&t0, 0); in __linker_init_post_relocation()
1753 (((long long)t0.tv_sec * 1000000LL) + (long long)t0.tv_usec) in __linker_init_post_relocation()
/bionic/libc/tzcode/
Dlocaltime.c152 static int differ_by_repeat(time_t t1, time_t t0);
335 differ_by_repeat(const time_t t1, const time_t t0) in differ_by_repeat() argument
340 return t1 - t0 == SECSPERREPEAT; in differ_by_repeat()