Searched refs:t1 (Results 1 - 25 of 29) sorted by relevance

12

/bionic/libm/upstream-freebsd/lib/msun/src/
H A De_hypot.c33 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
34 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
57 double a,b,t1,t2,y1,y2,w; local
90 t1=0;
91 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
92 b *= t1;
93 a *= t1;
[all...]
H A De_hypotl.c51 long double a=x,b=y,t1,t2,y1,y2,w; local
85 t1=0;
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
87 b *= t1;
88 a *= t1;
101 t1 = a;
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
104 t2 = a-t1;
[all...]
H A De_hypotf.c25 float a,b,t1,t2,y1,y2,w; local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
[all...]
H A Dk_logf.h29 float hfsq,s,z,R,w,t1,t2; local
34 t1= w*(Lg2+w*Lg4);
36 R = t2+t1;
H A Dk_log.h90 double hfsq,s,z,R,w,t1,t2; local
95 t1= w*(Lg2+w*(Lg4+w*Lg6));
97 R = t2+t1;
H A De_sqrt.c100 u_int32_t r,t1,s1,ix1,q1; local
155 t1 = s1+r;
157 if((t<ix0)||((t==ix0)&&(t1<=ix1))) {
158 s1 = t1+r;
159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
161 if (ix1 < t1) ix0 -= 1;
162 ix1 -= t1;
H A De_powf.c59 float y1,t1,t2,r,s,sn,t,u,v,w; local
144 t1 = u+v;
145 GET_FLOAT_WORD(is,t1);
146 SET_FLOAT_WORD(t1,is&0xfffff000);
147 t2 = v-(t1-u);
196 t1 = (((z_h+z_l)+dp_h[k])+t);
197 GET_FLOAT_WORD(is,t1);
198 SET_FLOAT_WORD(t1,is&0xfffff000);
199 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
202 /* split up y into y1+y2 and compute (y1+y2)*(t1
[all...]
H A De_pow.c100 double y1,t1,t2,r,s,t,u,v,w; local
203 t1 = u+v;
204 SET_LOW_WORD(t1,0);
205 t2 = v-(t1-u);
251 t1 = (((z_h+z_l)+dp_h[k])+t);
252 SET_LOW_WORD(t1,0);
253 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
256 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
259 p_l = (y-y1)*t1+y*t2;
260 p_h = y1*t1;
[all...]
H A De_log.c91 double hfsq,f,s,z,R,w,t1,t2,dk; local
131 t1= w*(Lg2+w*(Lg4+w*Lg6));
134 R = t2+t1;
H A De_logf.c38 float hfsq,f,s,z,R,w,t1,t2,dk; local
77 t1= w*(Lg2+w*Lg4);
80 R = t2+t1;
H A De_lgamma_r.c111 t1 = -1.47587722994593911752e-01, /* 0xBFC2E427, 0x8DC6C509 */ variable
260 p2 = t1+w*(t4+w*(t7+w*(t10+w*t13)));
/bionic/libc/arch-mips/bionic/
H A Dmemcmp16.S39 li $t1,0
45 lhu $t1,0($a1)
47 bne $t0,$t1,done
53 subu $v0,$t0,$t1
H A D_setjmp.S54 lw t1, OFF(BASE) ; \
55 mtc1 t1, FPR ; \
/bionic/linker/arch/mips/
H A Dbegin.S51 la $t1, _DYNAMIC
52 addu $t1, $t0
56 lw $t2, 0($t1)
60 lw $s0, 4($t1)
65 lw $s1, 4($t1)
69 2: addu $t1, 8
81 lw $t1, ($s0)
82 bgez $t1, 9f
87 1: lw $t1, ($s0)
88 addu $t1,
[all...]
/bionic/libc/arch-arm/bionic/
H A Dstrcmp.S142 t1 .req ip
165 and t1, wp2, #3
169 cmp t1, #2
176 bic t1, w1, #MSB
177 cmp t1, w2, SHFT2LSB #8
185 eor t1, t1, w1
186 cmp t1, w2, SHFT2MSB #24
209 SHFT2LSB t1, w1, #24
216 SHFT2LSB t1, w
[all...]
H A Dstrcmp.a15.S527 t1 = w1 & mask; \ define
528 if (__builtin_expect(t1 != w2 RSHIFT shift, 0)) \
541 t1 = w1 RSHIFT (32 - shift); \ define
547 t1 ^= w1; \
548 if (__builtin_expect(t1 != w2 LSHIFT (32 - shift), 0)) \
550 t1 = w1 >> (32 - shift); \ define
564 unsigned t1;
575 t1 = ((unsigned) s2) & 3; define
576 if (t1 == 1)
580 else if (t1
[all...]
/bionic/libc/arch-arm/generic/bionic/
H A Dstrcmp.S142 t1 .req ip
165 and t1, wp2, #3
169 cmp t1, #2
176 bic t1, w1, #MSB
177 cmp t1, w2, SHFT2LSB #8
185 eor t1, t1, w1
186 cmp t1, w2, SHFT2MSB #24
209 SHFT2LSB t1, w1, #24
216 SHFT2LSB t1, w
[all...]
/bionic/libc/arch-mips/include/machine/
H A Dregdef.h58 #define t1 $13 macro
63 #define t1 $9 macro
/bionic/libc/arch-arm/cortex-a9/bionic/
H A Dstrcmp.S388 t1 .req ip
396 and t1, wp2, #3
400 cmp t1, #2
407 bic t1, w1, #MSB
408 cmp t1, w2, S2LOMEM #8
416 eor t1, t1, w1
417 cmp t1, w2, S2HIMEM #24
440 S2LOMEM t1, w1, #24
447 S2LOMEM t1, w
[all...]
/bionic/tests/
H A Dpthread_test.cpp110 pthread_t t1; local
111 ASSERT_EQ(0, pthread_create(&t1, NULL, SleepFn, reinterpret_cast<void*>(5)));
114 ASSERT_EQ(0, pthread_detach(t1));
115 AssertDetached(t1, true);
119 ASSERT_EQ(EINVAL, pthread_join(t1, &result));
125 pthread_t t1; local
126 ASSERT_EQ(0, pthread_create(&t1, NULL, SpinFn, &done));
130 ASSERT_EQ(0, pthread_create(&t2, NULL, JoinFn, reinterpret_cast<void*>(t1)));
135 ASSERT_EQ(0, pthread_detach(t1));
136 AssertDetached(t1, fals
154 pthread_t t1; local
228 pthread_t t1; local
335 pthread_t t1; local
[all...]
/bionic/libc/kernel/arch-mips/asm/
H A Dregdef.h35 #define t1 $9 macro
90 #define t1 $13 macro
/bionic/libc/arch-arm/krait/bionic/
H A Dstrcmp.S401 t1 .req ip
410 and t1, wp2, #3
418 S2HIMEM t1, w1, #16
420 S2LOMEM t1, t1, #16
422 cmp t1, w2, S2LOMEM #16
428 eor t1, t1, w1
429 cmp t1, w2, S2HIMEM #16
448 S2LOMEM t1, w
[all...]
/bionic/libc/arch-mips/string/
H A Dmemset.S101 andi t1,a0,2
102 beqz t1,.Lalignok
108 slti t1,a2,4 # .Laligned for 4 or more bytes
109 beqz t1,.Laligned
110 sne t1,a2,2 # one more halfword?
111 bnez t1,.Ldone
H A Dmemcpy.S74 xor t1,t0,AT
75 subu t0,t1,AT
136 lw t1,4(a1)
148 sw t1,4(a0)
158 lw t1,36(a1)
170 sw t1,36(a0)
194 lw t1,4(a1)
204 sw t1,4(a0)
285 LWHI t1,4(a1)
287 LWLO t1,
[all...]
/bionic/libc/kernel/common/linux/
H A Dwanrouter.h81 unsigned t1; member in struct:wan_x25_conf

Completed in 753 milliseconds

12