/third_party/skia/tests/sksl/intrinsics/ |
D | Inversesqrt.metal | 19 …rsqrt(_uniforms.inputVal.x) == _uniforms.expected.x && all(rsqrt(_uniforms.inputVal.xy) == _unifor…
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/inverseSqrt/ |
D | 84407e.wgsl.expected.glsl | 7 float res = rsqrt(1.0f); 34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 44 float res = rsqrt(1.0f); 61 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 71 float res = rsqrt(1.0f); 89 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
|
D | b197b1.wgsl.expected.glsl | 7 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f)); 34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 45 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f)); 62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 73 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f)); 91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
|
D | 8f2bd2.wgsl.expected.glsl | 7 vec2 res = rsqrt(vec2(0.0f, 0.0f)); 34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 45 vec2 res = rsqrt(vec2(0.0f, 0.0f)); 62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 73 vec2 res = rsqrt(vec2(0.0f, 0.0f)); 91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
|
D | c22347.wgsl.expected.glsl | 7 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 45 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found 73 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
|
D | 84407e.wgsl.expected.hlsl | 2 float res = rsqrt(1.0f);
|
D | 84407e.wgsl.expected.msl | 9 float res = rsqrt(1.0f);
|
D | c22347.wgsl.expected.msl | 9 float4 res = rsqrt(float4());
|
D | 8f2bd2.wgsl.expected.hlsl | 2 float2 res = rsqrt(float2(0.0f, 0.0f));
|
D | b197b1.wgsl.expected.msl | 9 float3 res = rsqrt(float3());
|
D | 8f2bd2.wgsl.expected.msl | 9 float2 res = rsqrt(float2());
|
D | c22347.wgsl.expected.hlsl | 2 float4 res = rsqrt(float4(0.0f, 0.0f, 0.0f, 0.0f));
|
D | b197b1.wgsl.expected.hlsl | 2 float3 res = rsqrt(float3(0.0f, 0.0f, 0.0f));
|
/third_party/glslang/Test/ |
D | hlsl.intrinsics.vert | 45 rsqrt(inF0); 119 rsqrt(inF0); 189 rsqrt(inF0); 259 rsqrt(inF0); 314 rsqrt(inF0); \
|
D | hlsl.intrinsics.frag | 73 float r050 = rsqrt(inF0); 161 float2 r056 = rsqrt(inF0); 243 float3 r057 = rsqrt(inF0); 324 float4 r057 = rsqrt(inF0); 385 MT r035 = rsqrt(inF0); \
|
/third_party/skia/tests/ |
D | MathTest.cpp | 255 static void test_rsqrt(skiatest::Reporter* reporter, RSqrtFn rsqrt) { in test_rsqrt() argument 262 float estimate = rsqrt(input); in test_rsqrt() 272 float estimate = rsqrt(input); in test_rsqrt() 282 float estimate = rsqrt(input); in test_rsqrt()
|
/third_party/astc-encoder/Source/ |
D | astcenc_compress_symbolic.cpp | 1135 rg_cov *= astc::rsqrt(astc::max(rr_var * gg_var, 1e-30f)); in prepare_block_statistics() 1136 rb_cov *= astc::rsqrt(astc::max(rr_var * bb_var, 1e-30f)); in prepare_block_statistics() 1137 ra_cov *= astc::rsqrt(astc::max(rr_var * aa_var, 1e-30f)); in prepare_block_statistics() 1138 gb_cov *= astc::rsqrt(astc::max(gg_var * bb_var, 1e-30f)); in prepare_block_statistics() 1139 ga_cov *= astc::rsqrt(astc::max(gg_var * aa_var, 1e-30f)); in prepare_block_statistics() 1140 ba_cov *= astc::rsqrt(astc::max(bb_var * aa_var, 1e-30f)); in prepare_block_statistics()
|
D | astcenc_mathlib.h | 361 static inline float rsqrt(float v) in rsqrt() function
|
/third_party/skia/third_party/externals/tint/docs/ |
D | translations.md | 77 | inverseSqrt | GLSLstd450InverseSqrt | rsqrt | rsqrt |
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MicroMipsInstrFPU.td | 266 def RSQRT_S_MM : MMRel, ABSS_FT<"rsqrt.s", FGR32Opnd, FGR32Opnd, 269 def RSQRT_D32_MM : MMRel, ABSS_FT<"rsqrt.d", AFGR64Opnd, AFGR64Opnd, 275 def RSQRT_D64_MM : MMRel, ABSS_FT<"rsqrt.d", FGR64Opnd, FGR64Opnd,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/src/third_party/ffx_spd/ |
D | ffx_a.h | 1139 AF1 ARsqF1(AF1 x){return rsqrt(x);} in ARsqF1() 1140 AF2 ARsqF2(AF2 x){return rsqrt(x);} in ARsqF2() 1141 AF3 ARsqF3(AF3 x){return rsqrt(x);} in ARsqF3() 1142 AF4 ARsqF4(AF4 x){return rsqrt(x);} in ARsqF4() 1274 AH1 ARsqH1(AH1 x){return rsqrt(x);} in ARsqH1() 1275 AH2 ARsqH2(AH2 x){return rsqrt(x);} in ARsqH2() 1276 AH3 ARsqH3(AH3 x){return rsqrt(x);} in ARsqH3() 1277 AH4 ARsqH4(AH4 x){return rsqrt(x);} in ARsqH4() 1325 AD1 ARsqD1(AD1 x){return rsqrt(x);} in ARsqD1() 1326 AD2 ARsqD2(AD2 x){return rsqrt(x);} in ARsqD2() [all …]
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-hlsl-no-opt/frag/ |
D | fp16.invalid.desktop.frag | 108 res = rsqrt(v4);
|
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl-no-opt/frag/ |
D | fp16.desktop.invalid.frag | 111 res = rsqrt(v4);
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | ext_inst.opencl_test.cpp | 156 CASE1(Rsqrt, rsqrt),
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | ext_inst.opencl_test.cpp | 156 CASE1(Rsqrt, rsqrt),
|