Home
last modified time | relevance | path

Searched defs:frexp (Results 1 – 25 of 56) sorted by relevance

123

/external/cronet/tot/third_party/libc++/src/include/__cxx03/__math/
Dexponential_functions.h45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… in frexp() function
48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function
52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() function
57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() function
/external/cronet/stable/third_party/libc++/src/include/__cxx03/__math/
Dexponential_functions.h45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… in frexp() function
48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function
52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() function
57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() function
/external/cronet/tot/third_party/libc++/src/include/__math/
Dexponential_functions.h45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… in frexp() function
48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function
52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() function
57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() function
/external/cronet/stable/third_party/libc++/src/include/__math/
Dexponential_functions.h45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… in frexp() function
48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() function
52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() function
57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() function
/external/rust/android-crates-io/crates/libm/src/math/
Dfrexp.rs1 pub fn frexp(x: f64) -> (f64, i32) { in frexp() function
Dmod.rs137 mod frexp; module
/external/musl/src/math/
Dfrexp.c4 double frexp(double x, int *e) in frexp() function
/external/trusty/musl/src/math/
Dfrexp.c4 double frexp(double x, int *e) in frexp() function
/external/llvm-libc/src/__support/FPUtil/
DManipulationFunctions.h32 LIBC_INLINE T frexp(T x, int &exp) { in frexp() function
/external/cronet/stable/third_party/llvm-libc/src/src/__support/FPUtil/
DManipulationFunctions.h32 LIBC_INLINE T frexp(T x, int &exp) { in frexp() function
/external/cronet/tot/third_party/llvm-libc/src/src/__support/FPUtil/
DManipulationFunctions.h32 LIBC_INLINE T frexp(T x, int &exp) { in frexp() function
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_common.inl748 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/sdv/vsomeip/third_party/boost/container_hash/include/boost/container_hash/detail/
Dhash_float.hpp148 boost::hash_detail::call_frexp<T> frexp; in float_hash_impl2() local
/external/clang/lib/Headers/
D__clang_cuda_cmath.h70 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
/external/libcxx/include/
Dmath.h929 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/cronet/tot/third_party/llvm-libc/src/src/math/nvptx/
Dnvptx.h89 LIBC_INLINE double frexp(double x, int *i) { return __nv_frexp(x, i); } in frexp() function
/external/pytorch/torch/_inductor/runtime/
Dtriton_helpers.py395 def frexp(x): function
/external/cronet/stable/third_party/llvm-libc/src/src/math/nvptx/
Dnvptx.h89 LIBC_INLINE double frexp(double x, int *i) { return __nv_frexp(x, i); } in frexp() function
/external/llvm-libc/src/math/nvptx/
Dnvptx.h89 LIBC_INLINE double frexp(double x, int *i) { return __nv_frexp(x, i); } in frexp() function
/external/pytorch/torch/_inductor/
Dloop_body.py520 def frexp(self, value_proxy): member in LoopBodyBlock.__init__.CaptureIndexing
Ddependencies.py708 def frexp(self, x): member in FreeUnbackedSymbolsOpsHandler
Dops_handler.py381 def frexp(self, x0: T): member in OpsHandler
762 def frexp(x) -> Tuple[None, None]: member in NoopHandler
800 def frexp(x): member in MockHandler
/external/trusty/musl/include/
Dtgmath.h238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
/external/musl/include/
Dtgmath.h238 #define frexp(x,y) __tg_real_2_1(frexp, (x), (y)) macro
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp45 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function

123