Searched defs:frexp (Results 1 - 9 of 9) sorted by relevance

/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h70 __DEVICE__ float frexp(float __arg, int *__exp) { function
H A Dtgmath.h808 // 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/
H A Dasan_win_dll_thunk.cc391 INTERCEPT_LIBRARY_FUNCTION(frexp); variable
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp44 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } function
329 static_assert((std::is_same<decltype(frexp((float)0, &ip)), float>::value), "");
330 static_assert((std::is_same<decltype(frexp((bool)0, &ip)), double>::value), "");
331 static_assert((std::is_same<decltype(frexp((unsigned short)0, &ip)), double>::value), "");
332 static_assert((std::is_same<decltype(frexp((int)0, &ip)), double>::value), "");
333 static_assert((std::is_same<decltype(frexp((unsigned int)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(frexp((long)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(frexp((unsigned long)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(frexp((long long)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(frexp((unsigne
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp46 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } function
332 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), "");
333 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), "");
338 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), "");
339 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), "");
340 static_assert((std::is_same<decltype(std::frexp((unsigne
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp374 static inline void frexp (float in, float* significand, int* exponent) function in namespace:vkt::shaderexecutor::__anon4484
2054 frexp(in0, &refOut0, &refOut1);
2074 : CommonFunctionCase (testCtx, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "frexp", shaderType)
2082 m_spec.source = "out0 = frexp(in0, out1);";
2123 frexp(easySpecialCases[caseNdx], &in0, &in1);
2148 frexp(in, &in0, &in1);
2439 addFunctionCases<FrexpCase> (this, "frexp", true, false, false, ALL_SHADERS);
/external/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp1706 static inline void frexp (float in, float* significand, int* exponent) function
1741 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "frexp", shaderType)
1749 m_spec.source = "out0 = frexp(in0, out1);";
1812 frexp(in0, &refOut0, &refOut1);
1867 frexp(easySpecialCases[caseNdx], &in0, &in1);
1892 frexp(in, &in0, &in1);
2193 addFunctionCases<FrexpCase> (this, "frexp", true, false, false, ALL_SHADERS);
/external/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) { function in namespace:llvm
1096 return APFloat(frexp(X.getIEEE(), Exp, RM), X.getSemantics());
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp12205 static T frexp(T val, glw::GLint& exp);
12431 static T frexp(T val, glw::GLint& exp) function in namespace:gl4cts::Math
12433 return ::frexp(val, &exp);
12792 * - frexp();
14111 function, "frexp", Math::frexp, variable_type /* res_type */, variable_type /* arg_type */,
15583 { "frexp", FUNCTION_FREXP },

Completed in 2522 milliseconds