Lines Matching refs:t1
35 srl $t1,$a0,23
36 andi $t1,$t1,0xff /* get the e */
38 subu $t1,$t2,$t1 /* t1=127+15-e */
39 blez $t1,0f /* t1<=0? */
43 subu $t1,$t1,1
44 srl $v0,$t2,$t1
45 sltiu $t3,$t1,32 /* t3=1 if t1<32, else t3=0. t1>=32 means the float value is too small. */
51 or $t1,$a0,$zero /* a0=0? */
52 movz $v0,$zero,$t1
56 lui $t1,0x8000
57 and $v0,$a0,$t1 /* keep only the sign bit */
58 li $t1,0x7fffffff
59 movz $v0,$t1,$t0 /* positive, maximum value */