HomeSort by relevance Sort by last modified time
    Searched defs:frexp (Results 1 - 13 of 13) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexp.c 18 * x = frexp(arg,&exp);
22 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
55 __weak_reference(frexp, frexpl);
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_frexp.c 20 * x = frexp(arg,&exp);
24 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 70 __DEVICE__ float frexp(float __arg, int *__exp) { function
tgmath.h 808 // frexp
816 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);}
822 #undef frexp macro
823 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 391 INTERCEPT_LIBRARY_FUNCTION(frexp); variable
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 1706 static inline void frexp (float in, float* significand, int* exponent) function
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 45 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } function
330 static_assert((std::is_same<decltype(frexp((float)0, &ip)), float>::value), "");
331 static_assert((std::is_same<decltype(frexp((bool)0, &ip)), double>::value), "");
332 static_assert((std::is_same<decltype(frexp((unsigned short)0, &ip)), double>::value), "");
333 static_assert((std::is_same<decltype(frexp((int)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(frexp((unsigned int)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(frexp((long)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(frexp((unsigned long)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(frexp((long long)0, &ip)), double>::value), "");
338 static_assert((std::is_same<decltype(frexp((unsigned long long)0, &ip)), double>::value), "")
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 47 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } function
333 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), "");
334 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), "");
338 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), "");
339 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), "");
340 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), "");
341 static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), "")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
APFloat.h 435 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
568 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
664 friend DoubleAPFloat frexp(const DoubleAPFloat &X, int &Exp, roundingMode);
1205 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { function in namespace:llvm
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APFloat.h 462 friend IEEEFloat frexp(const IEEEFloat &X, int &Exp, roundingMode);
594 IEEEFloat frexp(const IEEEFloat &Val, int &Exp, IEEEFloat::roundingMode RM);
1095 inline APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM) { function in namespace:llvm
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 374 static inline void frexp (float in, float* significand, int* exponent) function in namespace:vkt::shaderexecutor::__anon19113
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 75 static native FrexpResult frexp(float x); method in class:CoreMathVerifier
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cGPUShaderFP64Tests.cpp 12431 static T frexp(T val, glw::GLint& exp) function in namespace:gl4cts::Math
    [all...]

Completed in 2119 milliseconds