Home
last modified time | relevance | path

Searched refs:frexp (Results 1 – 25 of 120) sorted by relevance

12345

/external/llvm/test/CodeGen/AMDGPU/
Dllvm.amdgcn.frexp.exp.ll6 declare i32 @llvm.amdgcn.frexp.exp.f32(float) #0
7 declare i32 @llvm.amdgcn.frexp.exp.f64(double) #0
12 %frexp.exp = call i32 @llvm.amdgcn.frexp.exp.f32(float %src)
13 store i32 %frexp.exp, i32 addrspace(1)* %out
21 %frexp.exp = call i32 @llvm.amdgcn.frexp.exp.f32(float %fabs.src)
22 store i32 %frexp.exp, i32 addrspace(1)* %out
31 %frexp.exp = call i32 @llvm.amdgcn.frexp.exp.f32(float %fneg.fabs.src)
32 store i32 %frexp.exp, i32 addrspace(1)* %out
39 %frexp.exp = call i32 @llvm.amdgcn.frexp.exp.f64(double %src)
40 store i32 %frexp.exp, i32 addrspace(1)* %out
[all …]
Dllvm.amdgcn.frexp.mant.ll6 declare float @llvm.amdgcn.frexp.mant.f32(float) #0
7 declare double @llvm.amdgcn.frexp.mant.f64(double) #0
12 %frexp.mant = call float @llvm.amdgcn.frexp.mant.f32(float %src)
13 store float %frexp.mant, float addrspace(1)* %out
21 %frexp.mant = call float @llvm.amdgcn.frexp.mant.f32(float %fabs.src)
22 store float %frexp.mant, float addrspace(1)* %out
31 %frexp.mant = call float @llvm.amdgcn.frexp.mant.f32(float %fneg.fabs.src)
32 store float %frexp.mant, float addrspace(1)* %out
39 %frexp.mant = call double @llvm.amdgcn.frexp.mant.f64(double %src)
40 store double %frexp.mant, double addrspace(1)* %out
[all …]
/external/llvm/test/Transforms/InstCombine/
Damdgcn-intrinsics.ll55 ; llvm.amdgcn.frexp.mant
58 declare float @llvm.amdgcn.frexp.mant.f32(float) nounwind readnone
59 declare double @llvm.amdgcn.frexp.mant.f64(double) nounwind readnone
65 %val = call float @llvm.amdgcn.frexp.mant.f32(float undef)
72 %val = call double @llvm.amdgcn.frexp.mant.f64(double undef)
79 %val = call float @llvm.amdgcn.frexp.mant.f32(float 0.0)
86 %val = call double @llvm.amdgcn.frexp.mant.f64(double 0.0)
94 %val = call float @llvm.amdgcn.frexp.mant.f32(float -0.0)
101 %val = call double @llvm.amdgcn.frexp.mant.f64(double -0.0)
108 %val = call float @llvm.amdgcn.frexp.mant.f32(float 1.0)
[all …]
/external/bison/m4/
Dfrexp.m41 # frexp.m4 serial 14
13 AC_CACHE_CHECK([whether frexp() can be used with libm],
22 [[int e; return frexp (x, &e) > 0;]])],
46 [Define if the frexp() function is available and works.])
63 dnl Set REPLACE_FREXP here because the system may have frexp in libm.
68 [Define if the frexp() function is available in libc.])
72 dnl Test whether frexp() can be used without linking with libm.
76 AC_CACHE_CHECK([whether frexp() can be used without linking with libm],
83 [[int e; return frexp (x, &e) > 0;]])],
89 dnl Test whether frexp() works also on denormalized numbers (this fails e.g. on
[all …]
Dprintf-frexp.m41 # printf-frexp.m4 serial 5
17 [Define if the frexp function is available in libc.])
/external/deqp/external/vulkancts/mustpass/1.0.2/src/
Dtest-issues.txt18 dEQP-VK.glsl.builtin.function.common.frexp.float_highp_vertex
19 dEQP-VK.glsl.builtin.function.common.frexp.vec2_highp_vertex
20 dEQP-VK.glsl.builtin.function.common.frexp.vec3_highp_vertex
21 dEQP-VK.glsl.builtin.function.common.frexp.vec4_highp_vertex
/external/deqp/android/cts/master/src/
Dvk-test-issues.txt18 dEQP-VK.glsl.builtin.function.common.frexp.float_highp_vertex
19 dEQP-VK.glsl.builtin.function.common.frexp.vec2_highp_vertex
20 dEQP-VK.glsl.builtin.function.common.frexp.vec3_highp_vertex
21 dEQP-VK.glsl.builtin.function.common.frexp.vec4_highp_vertex
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixExponential.h216 using std::frexp;
226 frexp(l1norm / maxnorm, &squarings);
240 using std::frexp;
254 frexp(l1norm / maxnorm, &squarings);
273 using std::frexp;
290 frexp(l1norm / maxnorm, &squarings);
310 frexp(l1norm / maxnorm, &squarings);
329 frexp(l1norm / maxnorm, &squarings);
/external/libxml2/win32/VC10/
Dconfig.h64 double val = frexp (d, &expon); in isinf()
81 double val = frexp (d, &expon); in isnan()
/external/libxml2/include/
Dwin32config.h65 double val = frexp (d, &expon); in isinf()
82 double val = frexp (d, &expon); in isnan()
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_common.inl907 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),
[all …]
/external/autotest/client/site_tests/graphics_dEQP/expectations/skylake/
Dgles31-master.Flaky.bz2 ... GLES31.functional.shaders.builtin_functions.common.frexp.float_lowp_fragment 21dEQP-GLES31.functional.shaders ...
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h95 __DEVICE__ double frexp(double, int *);
96 __DEVICE__ float frexp(float, int *);
213 using ::frexp;
/external/bison/lib/
Dfrexpl.c27 return frexp (x, expptr); in frexpl()
Dgnulib.mk423 EXTRA_DIST += frexp.c
425 EXTRA_libbison_a_SOURCES += frexp.c
432 EXTRA_DIST += frexp.c frexpl.c
434 EXTRA_libbison_a_SOURCES += frexp.c frexpl.c
1350 libbison_a_SOURCES += printf-frexp.c
1352 EXTRA_DIST += printf-frexp.h
1360 EXTRA_DIST += printf-frexp.c printf-frexpl.h
1362 EXTRA_libbison_a_SOURCES += printf-frexp.c
Dfrexp.c48 # define FUNC frexp
Dprintf-frexp.c57 # define FREXP frexp
/external/compiler-rt/test/asan/TestCases/
Dfrexp_interceptor.cc12 double y = frexp(x, exp); in main()
/external/ltp/testcases/misc/math/float/
Dfloat_exp_log.c35 {FUNC_FREXP, 50, frexp, "frexp", "frexp_inp.ref", "frexp_out.ref",
Dthread_code.c128 (void)frexp(r, &pr); /* for computed */ in check_error()
129 (void)frexp(x, &px); /* for difference */ in check_error()
130 (void)frexp(e, &pe); /* for dexected */ in check_error()
/external/clang/test/CodeGenOpenCL/
Dbuiltins-amdgcn.cl154 // CHECK: call float @llvm.amdgcn.frexp.mant.f32
161 // CHECK: call double @llvm.amdgcn.frexp.mant.f64
168 // CHECK: call i32 @llvm.amdgcn.frexp.exp.f32
175 // CHECK: call i32 @llvm.amdgcn.frexp.exp.f64
/external/ltp/testcases/misc/math/float/exp_log/
Dgenfrexp.c54 tabR[i] = frexp(Val, &(tabRI[i])); in create_Result_file()
/external/llvm/include/llvm/ADT/
DAPFloat.h521 friend APFloat frexp(const APFloat &X, int &Exp, roundingMode);
657 APFloat frexp(const APFloat &Val, int &Exp, APFloat::roundingMode RM);
/external/mesa3d/src/mesa/main/
Dquerymatrix.c163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp); in _es_QueryMatrixxOES()
/external/deqp/framework/delibs/debase/
DdeMath.c117 double fract = frexp(x, &tmpExp); in deFractExp()

12345