| /external/rust/crates/libm/src/math/ |
| D | frexp.rs | 1 pub fn frexp(x: f64) -> (f64, i32) { in frexp() function
|
| D | mod.rs | 137 mod frexp; module
|
| /external/musl/src/math/ |
| D | frexp.c | 4 double frexp(double x, int *e) in frexp() function
|
| /external/oboe/samples/RhythmGame/third_party/glm/detail/ |
| D | func_common.inl | 748 GLM_FUNC_QUALIFIER genType frexp(genType x, int & exp) function 756 GLM_FUNC_QUALIFIER tvec1<T, P> frexp(tvec1<T, P> const & x, tvec1<int, P> & exp) function 764 GLM_FUNC_QUALIFIER tvec2<T, P> frexp(tvec2<T, P> const & x, tvec2<int, P> & exp) function 774 GLM_FUNC_QUALIFIER tvec3<T, P> frexp(tvec3<T, P> const & x, tvec3<int, P> & exp) function 785 GLM_FUNC_QUALIFIER tvec4<T, P> frexp(tvec4<T, P> const & x, tvec4<int, P> & exp) function
|
| /external/cronet/buildtools/third_party/libc++/trunk/include/ |
| D | math.h | 778 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT {return __built… in frexp() function 781 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function 785 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT {return __built… in frexp() function 791 frexp(_A1 __x, int* __e) _NOEXCEPT {return __builtin_frexp((double)__x, __e);} in frexp() function
|
| /external/clang/lib/Headers/ |
| D | __clang_cuda_cmath.h | 70 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
|
| D | tgmath.h | 823 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
|
| /external/libcxx/include/ |
| D | math.h | 929 inline _LIBCPP_INLINE_VISIBILITY float frexp(float __lcpp_x, int* __lcpp_e) _NOEXCEPT {… in frexp() function 930 inline _LIBCPP_INLINE_VISIBILITY long double frexp(long double __lcpp_x, int* __lcpp_e) _NOEXCEPT {… in frexp() function 936 frexp(_A1 __lcpp_x, int* __lcpp_e) _NOEXCEPT {return ::frexp((double)__lcpp_x, __lcpp_e);} in frexp() function
|
| /external/musl/include/ |
| D | tgmath.h | 238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
|
| /external/libcxx/test/std/depr/depr.c.headers/ |
| D | math_h.pass.cpp | 45 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
|
| /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| D | APFloat.h | 1095 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
|
| /external/cronet/buildtools/third_party/libc++/trunk/test/std/numerics/c.math/ |
| D | cmath.pass.cpp | 46 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
|
| /external/libcxx/test/std/numerics/c.math/ |
| D | cmath.pass.cpp | 47 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
| D | APFloat.h | 1225 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { in frexp() function
|
| /external/cronet/buildtools/third_party/libc++/trunk/test/std/depr/depr.c.headers/ |
| D | math_h.pass.cpp | 46 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
|
| /external/ComputeLibrary/include/half/ |
| D | half.hpp | 1675 static half frexp(half arg, int *exp) in frexp() function 2618 inline half frexp(half arg, int *exp) { return functions::frexp(arg, exp); } in frexp() function 2619 inline half frexp(expr arg, int *exp) { return functions::frexp(arg, exp); } in frexp() function
|
| /external/armnn/third-party/half/ |
| D | half.hpp | 1677 static half frexp(half arg, int *exp) in frexp() function 2620 inline half frexp(half arg, int *exp) { return functions::frexp(arg, exp); } in frexp() function 2621 inline half frexp(expr arg, int *exp) { return functions::frexp(arg, exp); } in frexp() function
|
| /external/mesa3d/src/panfrost/bifrost/ |
| D | compiler.h | 339 enum bi_frexp_op frexp; member
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
| D | APFloat.cpp | 3905 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM) { in frexp() function 4478 DoubleAPFloat frexp(const DoubleAPFloat &Arg, int &Exp, in frexp() function
|
| /external/llvm/unittests/ADT/ |
| D | APFloatTest.cpp | 3036 TEST(APFloatTest, frexp) { in TEST() argument
|
| /external/llvm/lib/Support/ |
| D | APFloat.cpp | 3993 APFloat llvm::frexp(const APFloat &Val, int &Exp, APFloat::roundingMode RM) { in frexp() function in llvm
|
| /external/deqp/modules/gles31/functional/ |
| D | es31fShaderCommonFunctionTests.cpp | 1666 static inline void frexp (float in, float* significand, int* exponent) in frexp() function
|
| /external/compiler-rt/lib/msan/tests/ |
| D | msan_test.cc | 2267 TEST(MemorySanitizer, frexp) { in TEST() argument
|
| /external/deqp/external/openglcts/modules/gl/ |
| D | gl4cGPUShaderFP64Tests.cpp | 12408 static T frexp(T val, glw::GLint& exp) in frexp() function
|
| /external/angle/src/compiler/translator/ |
| D | SymbolTable_ESSL_autogen.cpp | 98 constexpr const ImmutableString frexp("frexp"); variable
|