Home
last modified time | relevance | path

Searched refs:frexp (Results 1 - 25 of 72) sorted by relevance

123

/third_party/musl/porting/liteos_m/kernel/src/math/
H A Dfrexp.c4 double frexp(double x, int *e) in frexp() function
11 x = frexp(x*0x1p64, e); in frexp()
H A Dfrexpl.c6 return frexp(x, e); in frexpl()
/third_party/musl/src/math/
H A Dfrexp.c4 double frexp(double x, int *e) in frexp() function
11 x = frexp(x*0x1p64, e); in frexp()
H A Dfrexpl.c6 return frexp(x, e); in frexpl()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dfrexp.c4 double frexp(double x, int *e) in frexp() function
11 x = frexp(x*0x1p64, e); in frexp()
H A Dfrexpl.c6 return frexp(x, e); in frexpl()
/third_party/musl/porting/uniproton/kernel/src/math/
H A Dfrexp.c4 double frexp(double x, int *e) in frexp() function
11 x = frexp(x*0x1p64, e); in frexp()
H A Dfrexpl.c6 return frexp(x, e); in frexpl()
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_frexp_test.cpp17 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the frexp interface.
25 bool testResult = DoubleUlpCmp(g_frexpData[i].expected1, frexp(g_frexpData[i].input, &exp), 1); in HWTEST_F()
40 double fraction = frexp(inputNum, &exponent); in HWTEST_F()
/third_party/ltp/testcases/misc/math/float/
H A Dthread_code.c128 (void)frexp(r, &pr); /* for computed */ in check_error()
129 (void)frexp(x, &px); /* for difference */ in check_error()
130 (void)frexp(e, &pe); /* for dexected */ in check_error()
222 /* frexp case: compares mantissa and exponent to expected datas */
H A Dfloat_exp_log.c35 {FUNC_FREXP, 50, frexp, "frexp", "frexp_inp.ref", "frexp_out.ref",
/third_party/musl/libc-test/src/api/
H A Dtgmath.c151 #ifdef frexp in f()
152 {double r = frexp(x,&i);} in f()
154 #error no frexp(x,y) in f()
/third_party/ffmpeg/libavcodec/
H A Dmpegaudiodec_common_tablegen.h61 fm = frexp(f, &e); in mpegaudiodec_common_tableinit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPFloat.h451 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
585 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
681 friend DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, roundingMode);
1203 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode RM);
1225 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
1227 return APFloat(frexp(X.U.IEEE, Exp, RM), X.getSemantics()); in frexp()
1229 return APFloat(frexp(X.U.Double, Exp, RM), X.getSemantics()); in frexp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h462 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
594 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
1077 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode RM);
1095 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
1096 return APFloat(frexp(X.getIEEE(), Exp, RM), X.getSemantics()); in frexp()
/third_party/musl/porting/uniproton/kernel/include/
H A Dtgmath.h175 #undef frexp macro
238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtgmath.h175 #undef frexp macro
238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
/third_party/musl/include/
H A Dtgmath.h175 #undef frexp macro
238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
/third_party/musl/libc-test/src/math/
H A Dfrexp.c6 #include "sanity/frexp.h"
7 #include "special/frexp.h"
27 y = frexp(p->x, &yi); in main()
31 printf("%s:%d: bad fp exception: %s frexp(%a)=%a,%lld, want %s", in main()
38 printf("%s:%d: %s frexp(%a) want %a,%lld got %a,%d ulperr %.3f = %a + %a\n", in main()
/third_party/mesa3d/src/mesa/main/
H A Dquerymatrix.c109 normalizedFraction = (GLfloat)frexp(matrix[i], &exp); in _mesa_QueryMatrixxOES()
/third_party/ltp/testcases/misc/math/float/exp_log/
H A Dgenfrexp.c54 tabR[i] = frexp(Val, &(tabRI[i])); in create_Result_file()
/third_party/skia/src/sksl/
H A DSkSLIntrinsicList.h47 SKSL_INTRINSIC(frexp) \
/third_party/skia/src/utils/
H A DSkFloatToDecimal.cpp118 (void)std::frexp(value, &binaryExponent);
/third_party/vk-gl-cts/framework/delibs/debase/
H A DdeMath.c117 double fract = frexp(x, &tmpExp); in deFractExp()
/third_party/astc-encoder/Source/
H A Dastcenc_mathlib.h396 static inline float frexp(float v, int* expo) in frexp() function

Completed in 13 milliseconds

123