Home
last modified time | relevance | path

Searched refs:ddx (Results 1 – 25 of 46) sorted by relevance

12

/external/skia/tests/sksl/intrinsics/
DDFdx.hlsl20 if (ddx(_10_testInputs.x) == 0.0f)
22 float2 _40 = ddx(_10_testInputs.xy);
32 float3 _51 = ddx(_10_testInputs.xyz);
42 float4 _63 = ddx(_10_testInputs);
52 float2 _72 = sign(ddx(_24.xx));
62 float2 _83 = sign(ddx(_24.yy));
72 float2 _92 = sign(ddx(_24));
DFwidth.hlsl20 if (ddx(_10_testInputs.x) == 0.0f)
22 float2 _40 = ddx(_10_testInputs.xy);
32 float3 _51 = ddx(_10_testInputs.xyz);
42 float4 _63 = ddx(_10_testInputs);
DSampleGrad.hlsl18 return t.SampleGrad(_t_sampler, _25, ddx(_25), ddy(_25) * _34_u_skRTFlip.y.xx);
/external/skia/bench/
DInterpBench.cpp152 double ddx = dx; in performTest() local
155 tmp = SkDoubleToFixed(ffx); dst[i + 0] = TILE(tmp, count); ffx += ddx; in performTest()
156 tmp = SkDoubleToFixed(ffx); dst[i + 1] = TILE(tmp, count); ffx += ddx; in performTest()
157 tmp = SkDoubleToFixed(ffx); dst[i + 2] = TILE(tmp, count); ffx += ddx; in performTest()
158 tmp = SkDoubleToFixed(ffx); dst[i + 3] = TILE(tmp, count); ffx += ddx; in performTest()
/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_sample.c313 LLVMValueRef ddmax[3] = { NULL }, ddx[3] = { NULL }, ddy[3] = { NULL }; in lp_build_rho() local
326 ddx[i] = lp_build_mul(coord_bld, floatdim, derivs->ddx[i]); in lp_build_rho()
328 ddx[i] = lp_build_mul(coord_bld, ddx[i], ddx[i]); in lp_build_rho()
333 tmpx = lp_build_abs(coord_bld, derivs->ddx[i]); in lp_build_rho()
340 rho_xvec = lp_build_add(coord_bld, ddx[0], ddx[1]); in lp_build_rho()
343 rho_xvec = lp_build_add(coord_bld, rho_xvec, ddx[2]); in lp_build_rho()
1736 LLVMValueRef ima, imahalf, tmp, ddx[3], ddy[3]; in lp_build_cube_lookup() local
1765 ddx[0] = lp_build_ddx(coord_bld, s); in lp_build_cube_lookup()
1766 ddx[1] = lp_build_ddx(coord_bld, t); in lp_build_cube_lookup()
1767 ddx[2] = lp_build_ddx(coord_bld, r); in lp_build_cube_lookup()
[all …]
Dlp_bld_sample.h63 LLVMValueRef ddx[3]; member
/external/llvm/test/CodeGen/X86/
D2009-08-14-Win64MemoryIndirectArg.ll37 %ddx = fmul <4 x float> %texDiffDX, %dimensionsPtr ; <<4 x float>> [#uses=2]
39 %ddxSquared = fmul <4 x float> %ddx, %ddx ; <<4 x float>> [#uses=3]
/external/skia/tools/viewer/
DFitCubicToCircleSlide.cpp110 auto [x, dx, ddx] = eval_cubic(cubicX, T); in find_max_error_T()
113 double ddError = 2*(x*ddx + y*ddy + dx*dx + dy*dy); in find_max_error_T()
243 auto [x, dx, ddx] = eval_cubic(X.data(), kMaxErrorT); in onChar()
/external/tensorflow/tensorflow/core/ops/
Darray_grad_test.cc678 auto ddx = StridedSliceGradGrad(x_shape, start, stop, strides, dy, dx[0], in TEST() local
681 test::ExpectClose(ddx[4], dy); in TEST()
705 auto ddx = StridedSliceGradGrad(x_shape, start, stop, strides, dy, dx[0], in TEST() local
708 test::ExpectClose(ddx[4], dy); in TEST()
733 auto ddx = StridedSliceGradGrad(x_shape, start, stop, strides, dy, dx[0], in TEST() local
736 test::ExpectClose(ddx[4], dy); in TEST()
761 auto ddx = StridedSliceGradGrad(x_shape, start, stop, strides, dy, dx[0], in TEST() local
764 test::ExpectClose(ddx[4], dy); in TEST()
/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emittexinstruction.cpp152 …emit_instruction(new AluInstruction(op2_mul_ieee, tex_src.ddx.reg_i(i), {tex_src.ddx.reg_i(i), hal… in emit_cube_txd()
163 TexInstruction *irgh = new TexInstruction(TexInstruction::set_gradient_h, empty_dst, tex_src.ddx, in emit_cube_txd()
456 TexInstruction *irgh = new TexInstruction(TexInstruction::set_gradient_h, empty_dst, src.ddx, in emit_tex_txd()
894 src.ddx = vec_from_nir_with_fetch_constant(instr.src[i].src, in get_inputs()
897 sfn_log << SfnLog::tex << src.ddx << "\n"; in get_inputs()
Dsfn_emittexinstruction.h49 GPRVector ddx; member
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.intrinsics.negative.comp13 // ddx(inF0); // expected error: only valid in pixel stage
70 // ddx(inF0); // only valid in pixel stage
112 // ddx(inF0); // only valid in pixel stage
157 // ddx(inF0); // only valid in pixel stage
Dhlsl.intrinsics.frag38 float r017 = ddx(inF0);
118 float2 r017 = ddx(inF0);
202 float3 r017 = ddx(inF0);
283 float4 r016 = ddx(inF0);
361 MT r011 = ddx(inF0); \
Dhlsl.intrinsics.negative.vert29 // ddx(inF0); // expected error: only valid in pixel stage
92 // ddx(inF0); // only valid in pixel stage
136 // ddx(inF0); // only valid in pixel stage
183 // ddx(inF0); // only valid in pixel stage
/external/deqp-deps/glslang/Test/
Dhlsl.intrinsics.negative.comp13 // ddx(inF0); // expected error: only valid in pixel stage
70 // ddx(inF0); // only valid in pixel stage
112 // ddx(inF0); // only valid in pixel stage
157 // ddx(inF0); // only valid in pixel stage
Dhlsl.intrinsics.frag38 float r017 = ddx(inF0);
118 float2 r017 = ddx(inF0);
202 float3 r017 = ddx(inF0);
283 float4 r016 = ddx(inF0);
361 MT r011 = ddx(inF0); \
Dhlsl.intrinsics.negative.vert29 // ddx(inF0); // expected error: only valid in pixel stage
92 // ddx(inF0); // only valid in pixel stage
136 // ddx(inF0); // only valid in pixel stage
183 // ddx(inF0); // only valid in pixel stage
/external/autotest/client/site_tests/graphics_GLBench/
Dcontrol52 - *fragement shader to test ddx and ddy
Dcontrol.hwqual56 - *fragement shader to test ddx and ddy
Dcontrol.bvt59 - *fragement shader to test ddx and ddy
/external/mesa3d/docs/relnotes/
D20.1.8.rst79 - intel/fs: Don't copy-propagate stride=0 sources into ddx/ddy
D18.3.4.rst87 - intel/compiler: do not copy-propagate strided regions to ddx/ddy
D18.2.8.rst90 - intel/compiler: do not copy-propagate strided regions to ddx/ddy
/external/libxkbcommon/test/data/keycodes/
Dxfree86355 // Other codes never generated. The XFree86 ddx never generates
/external/ImageMagick/PerlMagick/t/reference/read/
Dinput_cmyk.miff28 …43Q3+9P5U5jGqGpCyCW8e81*E*!+"4:"��ä��ä��ã��Ħ��ĥ������á��á��������������ddx�;;d�KKT�\TJ��J6��6…

12