Searched refs:frexp (Results 1 – 7 of 7) sorted by relevance
/hardware/google/gfxstream/third-party/glm/include/glm/detail/ |
D | func_common.inl | 748 GLM_FUNC_QUALIFIER genType frexp(genType x, int & exp) function 750 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559 || GLM_UNRESTRICTED_GENTYPE, "'frexp' on… 752 return std::frexp(x, &exp); 756 GLM_FUNC_QUALIFIER tvec1<T, P> frexp(tvec1<T, P> const & x, tvec1<int, P> & exp) function 758 …GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559 || GLM_UNRESTRICTED_GENTYPE, "'frexp' only acc… 760 return tvec1<T, P>(std::frexp(x.x, &exp.x)); 764 GLM_FUNC_QUALIFIER tvec2<T, P> frexp(tvec2<T, P> const & x, tvec2<int, P> & exp) function 766 …GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559 || GLM_UNRESTRICTED_GENTYPE, "'frexp' only acc… 769 frexp(x.x, exp.x), 770 frexp(x.y, exp.y)); [all …]
|
D | func_common.hpp | 407 GLM_FUNC_DECL genType frexp(genType const & x, genIType & exp);
|
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | astcenc_mathlib.h | 386 static inline float frexp(float v, int* expo) in frexp() function
|
D | astcenc_vecmathlib.h | 504 static ASTCENC_SIMD_INLINE vfloat4 frexp(vfloat4 a, vint4& exp) in frexp() function 523 vfloat4 mant = frexp(a, exp); in float_to_lns()
|
D | stb_image_write.h | 647 float normalize = (float) frexp(maxcomp, &exponent) * 256.0f/maxcomp; in stbiw__linear_to_rgbe()
|
/hardware/google/gfxstream/third-party/stb/include/stb/ |
D | stb_image_write.h | 647 float normalize = (float) frexp(maxcomp, &exponent) * 256.0f/maxcomp; in stbiw__linear_to_rgbe()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | spirvenv.adoc | 2372 | code:frexp()
|