Searched refs:df (Results 1 – 5 of 5) sorted by relevance
/picolibc-latest/newlib/libm/math/ |
D | sf_acos.c | 36 float z, p, q, r, w, s, c, df; in acosf() local 68 df = s; in acosf() 69 GET_FLOAT_WORD(idf, df); in acosf() 70 SET_FLOAT_WORD(df, idf & 0xfffff000); in acosf() 71 c = (z - df * df) / (s + df); in acosf() 76 return (float)2.0 * (df + w); in acosf()
|
D | s_acos.c | 61 __float64 z, p, q, r, w, s, c, df; in acos64() local 95 df = s; in acos64() 96 SET_LOW_WORD(df, 0); in acos64() 97 c = (z - df * df) / (s + df); in acos64() 102 return _F_64(2.0) * (df + w); in acos64()
|
/picolibc-latest/newlib/libm/ld/common/ |
D | e_acosl.c | 44 long double z,p,q,r,w,s,c,df; in acosl() local 76 df = u.e; in acosl() 77 c = (z-df*df)/(s+df); in acosl() 82 return 2.0L*(df+w); in acosl()
|
/picolibc-latest/newlib/libm/machine/spu/headers/ |
D | acosf4.h | 128 vec_float4 df = (vec_float4)spu_and((vec_uint4)s,0xFFFFF000); in _acosf4() local 129 vec_float4 c = _divf4(spu_nmsub(df,df,z),spu_add(s,df)); in _acosf4() 135 vec_float4 result1 = spu_mul(two,spu_add(df,w2)); in _acosf4()
|
/picolibc-latest/newlib/libm/test/ |
D | convert.c | 482 char *df = si->format_string; in test_sprint() local 485 while (*df) { in test_sprint() 486 switch (*df) { in test_sprint() 500 *sf++ = *df++; in test_sprint()
|