Lines Matching refs:frexp
907 GLM_FUNC_QUALIFIER genType frexp function
915 "'frexp' only accept floating-point inputs");
917 return std::frexp(x, exp);
921 GLM_FUNC_QUALIFIER detail::tvec2<T, P> frexp function
929 "'frexp' only accept floating-point inputs");
932 frexp(x.x, exp.x),
933 frexp(x.y, exp.y));
937 GLM_FUNC_QUALIFIER detail::tvec3<T, P> frexp function
945 "'frexp' only accept floating-point inputs");
948 frexp(x.x, exp.x),
949 frexp(x.y, exp.y),
950 frexp(x.z, exp.z));
954 GLM_FUNC_QUALIFIER detail::tvec4<T, P> frexp function
962 "'frexp' only accept floating-point inputs");
965 frexp(x.x, exp.x),
966 frexp(x.y, exp.y),
967 frexp(x.z, exp.z),
968 frexp(x.w, exp.w));
980 "'frexp' only accept floating-point inputs");