/third_party/glslang/Test/ |
D | hlsl.intrinsic.frexp.vert | 3 frexp(inF0, inF1); 9 frexp(inF0, inF1); 15 frexp(inF0, inF1); 21 frexp(inF0, inF1); 27 frexp(inF0, inF1);
|
D | hlsl.intrinsic.frexp.frag | 4 float r000 = frexp(inF0, inF1); 10 float2 r000 = frexp(inF0, inF1); 16 float3 r000 = frexp(inF0, inF1); 22 float4 r000 = frexp(inF0, inF1); 28 MT r000 = frexp(inF0, inF1);
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/frexp/ |
D | eabd40.wgsl.expected.glsl | 12 float sig = frexp(param_0, exp); 46 ERROR: 0:10: 'frexp' : no matching overloaded function found 61 float sig = frexp(param_0, exp); 85 ERROR: 0:10: 'frexp' : no matching overloaded function found 100 float sig = frexp(param_0, exp); 125 ERROR: 0:10: 'frexp' : no matching overloaded function found
|
D | 368997.wgsl.expected.glsl | 12 float3 sig = frexp(param_0, exp); 61 float3 sig = frexp(param_0, exp); 100 float3 sig = frexp(param_0, exp);
|
D | 3c4f48.wgsl.expected.glsl | 12 float4 sig = frexp(param_0, exp); 61 float4 sig = frexp(param_0, exp); 100 float4 sig = frexp(param_0, exp);
|
D | 4bdfc7.wgsl.expected.glsl | 12 float2 sig = frexp(param_0, exp); 61 float2 sig = frexp(param_0, exp); 100 float2 sig = frexp(param_0, exp);
|
D | 368997.wgsl | 26 // fn frexp(vec<3, f32>) -> __frexp_result_vec<3> 28 var res = frexp(vec3<f32>());
|
D | eabd40.wgsl | 26 // fn frexp(f32) -> __frexp_result 28 var res = frexp(1.0);
|
D | 3c4f48.wgsl | 26 // fn frexp(vec<4, f32>) -> __frexp_result_vec<4> 28 var res = frexp(vec4<f32>());
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Frexp.glsl | 10 result.x = frexp(value.x, exp.x); 12 result.xy = frexp(value.xy, exp.xy); 14 result.xyz = frexp(value.xyz, exp.xyz); 16 result = frexp(value, exp);
|
D | Frexp.metal | 15 float _skResult = frexp(_var0, _var1); 21 float2 _skResult = frexp(_var0, _var1); 27 float3 _skResult = frexp(_var0, _var1); 33 float4 _skResult = frexp(_var0, _var1);
|
/third_party/skia/resources/sksl/intrinsics/ |
D | Frexp.sksl | 10 result.x = frexp(value.x, exp.x); 12 result.xy = frexp(value.xy, exp.xy); 14 result.xyz = frexp(value.xyz, exp.xyz); 16 result.xyzw = frexp(value.xyzw, exp.xyzw);
|
/third_party/glslang/Test/baseResults/ |
D | hlsl.intrinsic.frexp.vert.out | 1 hlsl.intrinsic.frexp.vert 9 0:3 frexp ( temp float) 20 0:9 frexp ( temp 2-component vector of float) 32 0:15 frexp ( temp 3-component vector of float) 45 0:21 frexp ( temp 4-component vector of float) 68 0:3 frexp ( temp float) 79 0:9 frexp ( temp 2-component vector of float) 91 0:15 frexp ( temp 3-component vector of float) 104 0:21 frexp ( temp 4-component vector of float)
|
D | hlsl.intrinsic.frexp.frag.out | 1 hlsl.intrinsic.frexp.frag 13 0:4 frexp ( temp float) 27 0:10 frexp ( temp 2-component vector of float) 42 0:16 frexp ( temp 3-component vector of float) 58 0:22 frexp ( temp 4-component vector of float) 110 0:4 frexp ( temp float) 124 0:10 frexp ( temp 2-component vector of float) 139 0:16 frexp ( temp 3-component vector of float) 155 0:22 frexp ( temp 4-component vector of float)
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/ |
D | frexp.glsl | 3 ; FUNC-LABEL: {{^}}@frexp: 10 #shader fs frexp 14 gl_FragColor.x = frexp(f, gl_FragColor.y);
|
/third_party/skia/third_party/externals/spirv-cross/shaders/frag/ |
D | frexp-modf.frag | 11 float f0 = frexp(v0, e0); 12 f0 = frexp(v0 + 1.0, e0); 15 vec2 f1 = frexp(v1, e1);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders/frag/ |
D | frexp-modf.frag | 24 _16._m0 = frexp(v0, _16._m1); 28 _22._m0 = frexp(v0 + 1.0, _22._m1); 32 _35._m0 = frexp(v1, _35._m1);
|
/third_party/musl/porting/liteos_m/kernel/src/math/ |
D | frexp.c | 4 double frexp(double x, int *e) in frexp() function 11 x = frexp(x*0x1p64, e); in frexp()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | frexp.c | 4 double frexp(double x, int *e) in frexp() function 11 x = frexp(x*0x1p64, e); in frexp()
|
/third_party/musl/src/math/ |
D | frexp.c | 4 double frexp(double x, int *e) in frexp() function 11 x = frexp(x*0x1p64, e); in frexp()
|
/third_party/musl/porting/uniproton/kernel/src/math/ |
D | frexp.c | 4 double frexp(double x, int *e) in frexp() function 11 x = frexp(x*0x1p64, e); in frexp()
|
/third_party/skia/third_party/externals/tint/test/intrinsics/ |
D | frexp.wgsl.expected.glsl | 12 float sig = frexp(param_0, exp); 31 ERROR: 0:10: 'frexp' : no matching overloaded function found
|
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders/frag/ |
D | frexp-modf.frag | 24 _22._m0 = frexp(v0 + 1.0, _22._m1); 26 _35._m0 = frexp(v1, _35._m1);
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/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 …]
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
D | math_frexp_test.cpp | 25 … bool testResult = DoubleUlpCmp(g_frexpData[i].expected1, frexp(g_frexpData[i].input, &exp), 1); 40 double fraction = frexp(inputNum, &exponent);
|