/sysdeps/ieee754/flt-32/ |
A D | sincosf_poly.h | 38 x4 = x2 * x2; in sincosf_poly() 39 x3 = x2 * x; in sincosf_poly() 40 c2 = p->c3 + x2 * p->c4; in sincosf_poly() 41 s1 = p->s2 + x2 * p->s3; in sincosf_poly() 48 c1 = p->c0 + x2 * p->c1; in sincosf_poly() 49 x5 = x3 * x2; in sincosf_poly() 50 x6 = x4 * x2; in sincosf_poly() 68 x3 = x * x2; in sinf_poly() 71 x7 = x3 * x2; in sinf_poly() 78 x4 = x2 * x2; in sinf_poly() [all …]
|
A D | s_sincosf.c | 47 double x2 = x * x; in SINCOSF_FUNC() local 53 math_force_eval ((float)x2); in SINCOSF_FUNC() 59 sincosf_poly (x, x2, p, 0, sinp, cosp); in SINCOSF_FUNC()
|
A D | s_cosf.c | 47 double x2 = x * x; in COSF_FUNC() local 52 return sinf_poly (x, x2, p, 1); in COSF_FUNC()
|
A D | e_powf.c | 174 float_t x2 = x * x; in __powf() local 177 x2 = -x2; in __powf() 184 return iy & 0x80000000 ? 1 / x2 : x2; in __powf()
|
/sysdeps/x86/fpu/ |
A D | sincosf_poly.h | 59 v2df_t vx2x2 = { x2, x2 }; in sincosf_poly() 60 v2df_t vxx2 = { x, x2 }; in sincosf_poly() 74 double c1 = p->c0 + x2 * p->c1; in sincosf_poly() 86 sinf_poly (double x, double x2, const sincos_t *p, int n) in sinf_poly() argument 92 x3 = x * x2; in sinf_poly() 93 s1 = p->s2c3[0] + x2 * p->s3c4[0]; in sinf_poly() 95 x7 = x3 * x2; in sinf_poly() 102 x4 = x2 * x2; in sinf_poly() 103 c2 = p->s2c3[1] + x2 * p->s3c4[1]; in sinf_poly() 104 c1 = p->c0 + x2 * p->c1; in sinf_poly() [all …]
|
A D | sfp-machine.h | 52 # define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument 63 "%1" ((USItype) (x2)), \ 69 # define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument 76 : "%0" ((USItype) (x2)), \ 82 # define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ argument 93 "1" ((USItype) (x2)), \ 99 # define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument 106 : "0" ((USItype) (x2)), \ 112 # define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i) \ argument 118 "+&r" ((USItype) (x2)), \
|
/sysdeps/unix/sysv/linux/aarch64/ |
A D | swapcontext.S | 46 mov x2, sp 47 str x2, [x0, oSP] 51 add x2, x0, #oEXTENSION 56 str w3, [x2, #oHEAD + oMAGIC] 58 str w3, [x2, #oHEAD + oSIZE] 61 add x3, x2, #oV0 + 8 * SZVREG 67 add x3, x2, #oFPSR 76 add x2, x2, #FPSIMD_CONTEXT_SIZE 78 str xzr, [x2, #oHEAD + oMAGIC] 79 str xzr, [x2, #oHEAD + oSIZE] [all …]
|
A D | getcontext.S | 54 mov x2, sp 55 str x2, [x0, oSP] 62 add x2, x0, #oEXTENSION 67 str w3, [x2, #oHEAD + oMAGIC] 69 str w3, [x2, #oHEAD + oSIZE] 72 add x3, x2, #oV0 + 8 * SZVREG 78 add x3, x2, oFPSR 87 add x2, x2, #FPSIMD_CONTEXT_SIZE 89 str xzr, [x2, #oHEAD + oMAGIC] 90 str xzr, [x2, #oHEAD + oSIZE]
|
A D | setcontext.S | 45 mov x2, #0 84 ldr x2, [x0, oSP] 85 mov sp, x2 91 add x2, x0, #oEXTENSION 95 ldr w1, [x2, #oHEAD + oMAGIC] 100 add x3, x2, #oV0 + 8 * SZVREG 106 add x3, x2, oFPSR 117 ldp x2, x3, [x0, oX0 + 2 * SZREG]
|
A D | clone.S | 44 mov x11, x2 56 mov x0, x2 /* flags */ 58 mov x2, x4 /* ptid */
|
A D | syscall.S | 32 mov x1, x2 33 mov x2, x3
|
A D | sysdep.h | 199 # define LOAD_ARGS_3(x0, x1, x2) \ argument 200 long _x2tmp = (long) (x2); \ 203 # define LOAD_ARGS_4(x0, x1, x2, x3) \ argument 205 LOAD_ARGS_3 (x0, x1, x2) \ 207 # define LOAD_ARGS_5(x0, x1, x2, x3, x4) \ argument 209 LOAD_ARGS_4 (x0, x1, x2, x3) \ 211 # define LOAD_ARGS_6(x0, x1, x2, x3, x4, x5) \ argument 213 LOAD_ARGS_5 (x0, x1, x2, x3, x4) \ 215 # define LOAD_ARGS_7(x0, x1, x2, x3, x4, x5, x6)\ argument 217 LOAD_ARGS_6 (x0, x1, x2, x3, x4, x5) \
|
/sysdeps/sparc/sparc32/ |
A D | sfp-machine.h | 73 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument 80 : "%rJ" ((USItype)(x2)), \ 88 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ argument 95 : "%rJ" ((USItype)(x2)), \ 117 "%rJ" ((USItype)(x2)), \ 142 "%rJ" ((USItype)(x2)), \ 153 #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0) __FP_FRAC_SUB_3(x2,x1,x0,x2,x1,x0,y2,y1,y0) argument 155 #define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0) __FP_FRAC_SUB_4(x3,x2,x1,x0,x3,x2,x1,x0,y3,y2,y1,y… argument 157 #define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i) \ argument 163 "=&r" ((USItype)(x2)), \ [all …]
|
/sysdeps/sparc/sparc64/multiarch/ |
A D | memcpy-niagara2.S | 51 faligndata %x1, %x2, %f2; \ 52 faligndata %x2, %x3, %f4; \ 67 fsrc2 %x2, %f4; 71 fsrc2 %x2, %f4; \ 76 fsrc2 %x2, %f4; \ 82 fsrc2 %x2, %f4; \ 89 fsrc2 %x2, %f4; \ 97 fsrc2 %x2, %f4; \ 111 LOAD(ldd, base + 0x10, %x2); 115 LOAD(ldd, base + 0x10, %x2); \ [all …]
|
/sysdeps/x86_64/ |
A D | tst-auditmod3a.c | 8 audit_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, in audit_test() argument 15 || memcmp (&xmm, &x2, sizeof (xmm)) in audit_test()
|
A D | tst-auditmod10a.c | 26 audit_test (__m512i x0, __m512i x1, __m512i x2, __m512i x3, in audit_test() argument 40 if (memcmp (&zmm, &x2, sizeof (zmm))) in audit_test()
|
A D | tst-auditmod4a.c | 9 audit_test (__m256i x0, __m256i x1, __m256i x2, __m256i x3, in audit_test() argument 23 if (memcmp (&ymm, &x2, sizeof (ymm))) in audit_test()
|
A D | tst-auditmod5a.c | 8 audit_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, in audit_test() argument 22 if (memcmp (&xmm, &x2, sizeof (xmm))) in audit_test()
|
A D | tst-auditmod6a.c | 8 audit_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, in audit_test() argument 22 if (memcmp (&xmm, &x2, sizeof (xmm))) in audit_test()
|
A D | tst-avx512mod.c | 9 avx512_test (__m512i x0, __m512i x1, __m512i x2, __m512i x3, in avx512_test() argument 23 if (memcmp (&zmm, &x2, sizeof (zmm))) in avx512_test()
|
A D | tst-avxmod.c | 9 avx_test (__m256i x0, __m256i x1, __m256i x2, __m256i x3, in avx_test() argument 23 if (memcmp (&ymm, &x2, sizeof (ymm))) in avx_test()
|
A D | tst-ssemod.c | 8 sse_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, in sse_test() argument 22 if (memcmp (&xmm, &x2, sizeof (xmm))) in sse_test()
|
/sysdeps/aarch64/ |
A D | dl-trampoline.S | 62 stp x2, x3, [sp, #48] 63 cfi_rel_offset (x2, 48) 110 ldp x2, x3, [sp, #48] 177 stp x2, x3, [x29, #OFFSET_RG + DL_OFFSET_RG_X0 + 16*1] 178 cfi_rel_offset (x2, OFFSET_RG + DL_OFFSET_RG_X0 + 16*1 + 0) 219 ldr x2, [x29, #OFFSET_LR] /* load saved LR */ 234 ldp x2, x3, [x29, #OFFSET_RG + DL_OFFSET_RG_X0 + 16*1] 273 mov x2, ip0 280 ldp x2, x3, [x29, #OFFSET_RG + DL_OFFSET_RG_X0 + 16*1] 294 add x2, x29, #OFFSET_RG
|
/sysdeps/ieee754/ldbl-96/ |
A D | s_fma.c | 64 long double x2 = x - x1; in __fma() local 66 long double m2 = (((x1 * y1 - m1) + x1 * y2) + x2 * y1) + x2 * y2; in __fma()
|
/sysdeps/ieee754/dbl-64/ |
A D | e_asin.c | 48 double x2,xx,res1,p,t,res,r,cor,cc,y,c,z; in __ieee754_asin() local 64 x2 = x*x; in __ieee754_asin() 65 t = (((((f6*x2 + f5)*x2 + f4)*x2 + f3)*x2 + f2)*x2 + f1)*(x2*x); in __ieee754_asin() 192 double x2,xx,res1,p,t,res,r,cor,cc,y,c,z; in libm_alias_finite() local 204 x2 = x*x; in libm_alias_finite() 205 t = (((((f6*x2 + f5)*x2 + f4)*x2 + f3)*x2 + f2)*x2 + f1)*(x2*x); in libm_alias_finite()
|