Home
last modified time | relevance | path

Searched refs:exp2 (Results 1 – 25 of 380) sorted by relevance

12345678910>>...16

/third_party/optimized-routines/math/test/testcases/directed/
Dexp2.tst1 ; Directed test cases for exp2
6 func=exp2 op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
7 func=exp2 op1=fff80000.00000001 result=7ff80000.00000001 errno=0
8 func=exp2 op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i
9 func=exp2 op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i
10 func=exp2 op1=7ff00000.00000000 result=7ff00000.00000000 errno=0
11 func=exp2 op1=fff00000.00000000 result=00000000.00000000 errno=0
12 func=exp2 op1=7fefffff.ffffffff result=7ff00000.00000000 errno=ERANGE status=ox
13 func=exp2 op1=ffefffff.ffffffff result=00000000.00000000 errno=ERANGE status=ux
14 func=exp2 op1=00000000.00000000 result=3ff00000.00000000 errno=0
[all …]
/third_party/skia/resources/sksl/intrinsics/
DExp2.sksl6 return (exp2(inputVal.x) == expected.x &&
7 exp2(inputVal.xy) == expected.xy &&
8 exp2(inputVal.xyz) == expected.xyz &&
9 exp2(inputVal.xyzw) == expected.xyzw &&
10 exp2(constVal.x) == expected.x &&
11 exp2(constVal.xy) == expected.xy &&
12 exp2(constVal.xyz) == expected.xyz &&
13 exp2(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/slowstrconv/
Dslowstrconv.go83 exp2 := int32(0)
103 exp2--
107 exp2++
117 ret.F16 = uint16(h.pack(exp2, 5, 10))
120 ret.F32 = uint32(h.pack(exp2, 8, 23))
123 ret.F64 = uint64(h.pack(exp2, 11, 52))
365 func (h *highPrecisionDecimal) pack(exp2 int32, expBits uint32, manBits uint32) uint64 {
366 exp2 += (int32(1) << (expBits - 1)) - 1
373 if e, eMax := exp2+exp2Adjustment, int32((1<<expBits)-1); e >= eMax {
381 for exp2 <= 0 {
[all …]
/third_party/skia/tests/sksl/intrinsics/
DExp2.glsl8 …return ((((((exp2(inputVal.x) == expected.x && exp2(inputVal.xy) == expected.xy) && exp2(inputVal.…
DExp2.metal18exp2(_uniforms.inputVal.x) == _uniforms.expected.x && all(exp2(_uniforms.inputVal.xy) == _uniforms…
/third_party/skia/third_party/externals/swiftshader/tests/MathUnitTests/
Dunittests.cpp73 …const int max_s = static_cast<int>(floor((max_c / exp2(exp_p - g_sharedexp_bias - g_sharedexp_mant… in RGB9E5_reference()
74 const int exp_s = static_cast<int>((max_s < exp2(g_sharedexp_mantissabits)) ? exp_p : exp_p + 1); in RGB9E5_reference()
76 …unsigned int R = static_cast<unsigned int>(floor((red_c / exp2(exp_s - g_sharedexp_bias - g_shared… in RGB9E5_reference()
77 …unsigned int G = static_cast<unsigned int>(floor((green_c / exp2(exp_s - g_sharedexp_bias - g_shar… in RGB9E5_reference()
78 …unsigned int B = static_cast<unsigned int>(floor((blue_c / exp2(exp_s - g_sharedexp_bias - g_share… in RGB9E5_reference()
/third_party/mesa3d/src/gallium/drivers/radeonsi/glsl_tests/
Dexp2.glsl3 ; FUNC-LABEL: {{^}}@exp2:
9 #shader fs exp2
13 gl_FragColor.x = exp2(f);
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_exp2_test.cpp24 bool testResult = DoubleUlpCmp(g_exp2Data[i].expected, exp2(g_exp2Data[i].input), 1);
36 EXPECT_DOUBLE_EQ(8.0, exp2(3.0));
47 EXPECT_DOUBLE_EQ(10.0, exp2(log2(10)));
/third_party/optimized-routines/math/
Dexp2.c76 exp2 (double x) in exp2() function
138 strong_alias (exp2, __exp2_finite) in strong_alias() argument
139 hidden_alias (exp2, __ieee754_exp2) in strong_alias()
141 long double exp2l (long double x) { return exp2 (x); } in strong_alias()
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/exp2/
Dd6777c.wgsl.expected.glsl5 vec2 res = exp2(vec2(0.0f, 0.0f));
35 vec2 res = exp2(vec2(0.0f, 0.0f));
55 vec2 res = exp2(vec2(0.0f, 0.0f));
Ddea523.wgsl.expected.glsl5 float res = exp2(1.0f);
35 float res = exp2(1.0f);
55 float res = exp2(1.0f);
Da9d0a7.wgsl.expected.glsl5 vec4 res = exp2(vec4(0.0f, 0.0f, 0.0f, 0.0f));
35 vec4 res = exp2(vec4(0.0f, 0.0f, 0.0f, 0.0f));
55 vec4 res = exp2(vec4(0.0f, 0.0f, 0.0f, 0.0f));
D1f8680.wgsl.expected.glsl5 vec3 res = exp2(vec3(0.0f, 0.0f, 0.0f));
35 vec3 res = exp2(vec3(0.0f, 0.0f, 0.0f));
55 vec3 res = exp2(vec3(0.0f, 0.0f, 0.0f));
Ddea523.wgsl26 // fn exp2(f32) -> f32
28 var res: f32 = exp2(1.0);
Da9d0a7.wgsl26 // fn exp2(vec<4, f32>) -> vec<4, f32>
28 var res: vec4<f32> = exp2(vec4<f32>());
D1f8680.wgsl26 // fn exp2(vec<3, f32>) -> vec<3, f32>
28 var res: vec3<f32> = exp2(vec3<f32>());
Dd6777c.wgsl26 // fn exp2(vec<2, f32>) -> vec<2, f32>
28 var res: vec2<f32> = exp2(vec2<f32>());
/third_party/optimized-routines/math/test/
Drunulp.sh42 t exp2 0 0xffff000000000000 10000
43 t exp2 0x1p-6 0x1p6 40000
44 t exp2 -0x1p-6 -0x1p6 40000
45 t exp2 633.3 733.3 10000
46 t exp2 -633.3 -777.3 10000
Dulp.c330 F1 (exp2)
336 D1 (exp2)
346 F (__s_exp2f_1u, __s_exp2f_1u, exp2, mpfr_exp2, 1, 1, f1, 0)
347 F (__s_exp2f, __s_exp2f, exp2, mpfr_exp2, 1, 1, f1, 0)
360 F (__v_exp2f_1u, v_exp2f_1u, exp2, mpfr_exp2, 1, 1, f1, 1)
361 F (__v_exp2f, v_exp2f, exp2, mpfr_exp2, 1, 1, f1, 1)
374 F (__vn_exp2f_1u, vn_exp2f_1u, exp2, mpfr_exp2, 1, 1, f1, 1)
375 F (__vn_exp2f, vn_exp2f, exp2, mpfr_exp2, 1, 1, f1, 1)
386 F (_ZGVnN4v_exp2f, Z_exp2f, exp2, mpfr_exp2, 1, 1, f1, 1)
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/
Dfunc_exponential.inl91 //exp2, ln2 = 0.69314718055994530941723212145818f
93 GLM_FUNC_QUALIFIER genType exp2(genType x) function
95 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'exp2' only accept floating-point inpu…
101 GLM_FUNC_QUALIFIER vecType<T, P> exp2(vecType<T, P> const & x) function
103 return detail::functor1<T, T, P, vecType>::call(exp2, x);
/third_party/ltp/testcases/realtime/func/pi-tests/
Dparse-testpi1.py38 exp2= re.compile(r'^Noise Thread')
42 if exp1.search(line) and exp2.search(prev_line)and exp3.search(prev_line):
Dparse-testpi2.py39 exp2= re.compile(r'^Noise Thread')
45 if exp1.search(line) and exp2.search(prev_line) and exp3.search(prev_line):
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Df.cpp62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) in exp2() function
77 return exp2(x); in f()
/third_party/skia/third_party/externals/spirv-cross/reference/opt/shaders-ue4/asm/vert/
Darray-missing-copies.asm.vert421 …_394 = MobileBasePass.MobileBasePass_Fog_ExponentialFogParameters2.z * exp2(-fast::max(-127.0, Mob…
422 …_395 = MobileBasePass.MobileBasePass_Fog_ExponentialFogParameters3.x * exp2(-fast::max(-127.0, Mob…
434exp2(-_400)) / _400) : (0.693147182464599609375 - (0.2402265071868896484375 * _400)))) + (_394 * (…
438 …BasePass_Fog_DirectionalInscatteringColor.w))) * float3(1.0 - fast::clamp(exp2(-(_428 * fast::max(…
445 …float _471 = _468 ? 1.0 : fast::max(fast::clamp(exp2(-(_428 * _393)), 0.0, 1.0), MobileBasePass.Mo…
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-ue4/asm/vert/
Darray-missing-copies.asm.vert428 …_394 = MobileBasePass.MobileBasePass_Fog_ExponentialFogParameters2.z * exp2(-fast::max(-127.0, Mob…
429 …_395 = MobileBasePass.MobileBasePass_Fog_ExponentialFogParameters3.x * exp2(-fast::max(-127.0, Mob…
443 …15625) ? ((1.0 - exp2(-_400)) / _400) : (_405 - (_407 * _400)))) + (_394 * ((abs(_417) > 0.0099999…
447 …BasePass_Fog_DirectionalInscatteringColor.w))) * float3(1.0 - fast::clamp(exp2(-(_428 * fast::max(…
454 …float _471 = _468 ? 1.0 : fast::max(fast::clamp(exp2(-(_428 * _393)), 0.0, 1.0), MobileBasePass.Mo…

12345678910>>...16