Home
last modified time | relevance | path

Searched refs:sign (Results 276 - 300 of 1887) sorted by relevance

1...<<11121314151617181920>>...76

/third_party/musl/porting/liteos_m/kernel/src/math/
H A D__math_oflow.c3 double __math_oflow(uint32_t sign) in __math_oflow() argument
5 return __math_xflow(sign, 0x1p769); in __math_oflow()
H A D__math_divzerof.c3 float __math_divzerof(uint32_t sign) in __math_divzerof() argument
5 return fp_barrierf(sign ? -1.0f : 1.0f) / 0.0f; in __math_divzerof()
H A D__math_xflowf.c3 float __math_xflowf(uint32_t sign, float y) in __math_xflowf() argument
5 return eval_as_float(fp_barrierf(sign ? -y : y) * y); in __math_xflowf()
H A D__math_xflow.c3 double __math_xflow(uint32_t sign, double y) in __math_xflow() argument
5 return eval_as_double(fp_barrier(sign ? -y : y) * y); in __math_xflow()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A D__math_uflowf.c3 float __math_uflowf(uint32_t sign) in __math_uflowf() argument
5 return __math_xflowf(sign, 0x1p-95f); in __math_uflowf()
H A D__math_oflowf.c3 float __math_oflowf(uint32_t sign) in __math_oflowf() argument
5 return __math_xflowf(sign, 0x1p97f); in __math_oflowf()
H A D__math_uflow.c3 double __math_uflow(uint32_t sign) in __math_uflow() argument
5 return __math_xflow(sign, 0x1p-767); in __math_uflow()
H A D__math_oflow.c3 double __math_oflow(uint32_t sign) in __math_oflow() argument
5 return __math_xflow(sign, 0x1p769); in __math_oflow()
H A D__math_xflow.c3 double __math_xflow(uint32_t sign, double y) in __math_xflow() argument
5 return eval_as_double(fp_barrier(sign ? -y : y) * y); in __math_xflow()
H A D__math_divzerof.c3 float __math_divzerof(uint32_t sign) in __math_divzerof() argument
5 return fp_barrierf(sign ? -1.0f : 1.0f) / 0.0f; in __math_divzerof()
H A D__math_xflowf.c3 float __math_xflowf(uint32_t sign, float y) in __math_xflowf() argument
5 return eval_as_float(fp_barrierf(sign ? -y : y) * y); in __math_xflowf()
/third_party/musl/src/math/
H A D__math_uflowf.c3 float __math_uflowf(uint32_t sign) in __math_uflowf() argument
5 return __math_xflowf(sign, 0x1p-95f); in __math_uflowf()
H A D__math_oflowf.c3 float __math_oflowf(uint32_t sign) in __math_oflowf() argument
5 return __math_xflowf(sign, 0x1p97f); in __math_oflowf()
H A D__math_uflow.c3 double __math_uflow(uint32_t sign) in __math_uflow() argument
5 return __math_xflow(sign, 0x1p-767); in __math_uflow()
H A D__math_oflow.c3 double __math_oflow(uint32_t sign) in __math_oflow() argument
5 return __math_xflow(sign, 0x1p769); in __math_oflow()
H A D__math_divzerof.c3 float __math_divzerof(uint32_t sign) in __math_divzerof() argument
5 return fp_barrierf(sign ? -1.0f : 1.0f) / 0.0f; in __math_divzerof()
H A D__math_xflowf.c3 float __math_xflowf(uint32_t sign, float y) in __math_xflowf() argument
5 return eval_as_float(fp_barrierf(sign ? -y : y) * y); in __math_xflowf()
H A D__math_xflow.c3 double __math_xflow(uint32_t sign, double y) in __math_xflow() argument
5 return eval_as_double(fp_barrier(sign ? -y : y) * y); in __math_xflow()
/third_party/musl/porting/uniproton/kernel/src/math/
H A D__math_uflowf.c3 float __math_uflowf(uint32_t sign) in __math_uflowf() argument
5 return __math_xflowf(sign, 0x1p-95f); in __math_uflowf()
H A D__math_oflowf.c3 float __math_oflowf(uint32_t sign) in __math_oflowf() argument
5 return __math_xflowf(sign, 0x1p97f); in __math_oflowf()
H A D__math_uflow.c3 double __math_uflow(uint32_t sign) in __math_uflow() argument
5 return __math_xflow(sign, 0x1p-767); in __math_uflow()
H A D__math_oflow.c3 double __math_oflow(uint32_t sign) in __math_oflow() argument
5 return __math_xflow(sign, 0x1p769); in __math_oflow()
H A D__math_xflowf.c3 float __math_xflowf(uint32_t sign, float y) in __math_xflowf() argument
5 return eval_as_float(fp_barrierf(sign ? -y : y) * y); in __math_xflowf()
H A D__math_xflow.c3 double __math_xflow(uint32_t sign, double y) in __math_xflow() argument
5 return eval_as_double(fp_barrier(sign ? -y : y) * y); in __math_xflow()
/third_party/python/Objects/
H A Dfloatobject.c657 /* ensure the remainder has the same sign as the denominator */ in float_rem()
665 it has the same sign as the denominator. */ in float_rem()
684 /* ensure the remainder has the same sign as the denominator */ in _float_div_mod()
693 it has the same sign as the denominator. */ in _float_div_mod()
704 /* div is zero - get the same sign as the true quotient */ in _float_div_mod()
705 *floordiv = copysign(0.0, vx / wx); /* zero w/ sign of vx/wx */ in _float_div_mod()
785 * both cases, we need to add the appropriate sign if w is in float_pow()
805 /* use correct sign if iw is odd */ in float_pow()
967 int decpt, sign; in double_round() local
973 buf = _Py_dg_dtoa(x, 3, ndigits, &decpt, &sign, in double_round()
2072 unsigned char sign; PyFloat_Pack2() local
2178 unsigned char sign; PyFloat_Pack4() local
2286 unsigned char sign; PyFloat_Pack8() local
2415 unsigned char sign; PyFloat_Unpack2() local
2479 unsigned char sign; PyFloat_Unpack4() local
2558 unsigned char sign; PyFloat_Unpack8() local
[all...]

Completed in 5 milliseconds

1...<<11121314151617181920>>...76