/third_party/boost/libs/geometry/doc/src/examples/arithmetic/ |
D | dot_product.cpp | 26 double dp1,dp2,dp3,dp4; in BOOST_GEOMETRY_REGISTER_BOOST_ARRAY_CS() local 31 dp1 = bg::dot_product(point1, point2); in BOOST_GEOMETRY_REGISTER_BOOST_ARRAY_CS() 33 std::cout << "Dot Product 1: "<< dp1 << std::endl; in BOOST_GEOMETRY_REGISTER_BOOST_ARRAY_CS()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_clip_line.c | 72 c->reg.dp1 = brw_vec1_grf(i, 4); in brw_clip_line_alloc_regs() 184 brw_MOV(p, c->reg.dp1, deref_1f(temp_ptr, 0)); in clip_and_emit_line() 195 brw_DP4(p, vec4(c->reg.dp1), deref_4f(vtx1, hpos_offset), c->reg.plane_equation); in clip_and_emit_line() 199 brw_CMP(p, brw_null_reg(), BRW_CONDITIONAL_L, vec1(c->reg.dp1), brw_imm_f(0.0f)); in clip_and_emit_line() 216 brw_ADD(p, c->reg.t, c->reg.dp1, negate(c->reg.dp0)); in clip_and_emit_line() 218 brw_MUL(p, c->reg.t, c->reg.t, c->reg.dp1); in clip_and_emit_line() 239 brw_ADD(p, c->reg.t, c->reg.dp0, negate(c->reg.dp1)); in clip_and_emit_line()
|
D | brw_clip.h | 57 struct brw_reg dp0, dp1; member
|
/third_party/boost/libs/multiprecision/example/ |
D | numeric_limits_snips.cpp | 215 double dp1 = d+1; in BOOST_AUTO_TEST_CASE() local 216 std::cout << d << "\n" << dp1 << std::endl; in BOOST_AUTO_TEST_CASE() 219 std::cout << dp1 - d << std::endl; // 1 in BOOST_AUTO_TEST_CASE() 227 double dp1 = d+1; in BOOST_AUTO_TEST_CASE() local 228 std::cout << d << "\n" << dp1 << std::endl; in BOOST_AUTO_TEST_CASE() 231 std::cout << dp1 - d << std::endl; // 0 !!! in BOOST_AUTO_TEST_CASE()
|
/third_party/mesa3d/src/mesa/tnl/ |
D | t_vb_cliptmp.h | 87 const GLfloat dp1 = CLIP_DOTPROD( v1, A, B, C, D ); \ 89 const GLboolean neg_dp1 = dp1 < 0.0f; \ 102 GLfloat t = dp1 / (dp1 - dp0); \ 105 GLfloat t = dp0 / (dp0 - dp1); \
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | resize_bilinear_impl.cu | 71 const float dp1 = h_beta * w_beta * grad; in ResizeBilinearGrad() local 76 atomicAdd(&interim[output_start + (h_low * output_w) + w_low], dp1); in ResizeBilinearGrad() 104 const float dp1 = h_beta * w_beta * grad; in ResizeBilinearGrad() local 109 atomicAdd(&output[output_start + (h_low * output_w) + w_low], dp1); in ResizeBilinearGrad()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_clip.c | 598 const float dp1 = getclipdist(clipper, v1, plane_idx); in do_clip_line() local 600 if (util_is_inf_or_nan(dp0) || util_is_inf_or_nan(dp1)) in do_clip_line() 603 if (dp1 < 0.0F) { in do_clip_line() 604 float t = dp1 / (dp1 - dp0); in do_clip_line() 609 float t = dp0 / (dp0 - dp1); in do_clip_line()
|
/third_party/ffmpeg/libswscale/ |
D | vscale.c | 86 int dp1 = chrSliceY - desc->dst->plane[1].sliceY; in chr_planar_vscale() local 90 uint8_t **dst1 = desc->dst->plane[1].line + dp1; in chr_planar_vscale() 191 int dp1 = chrSliceY - desc->dst->plane[1].sliceY; in any_vscale() local 200 desc->dst->plane[1].line[dp1], in any_vscale()
|
/third_party/boost/libs/parameter/test/ |
D | preprocessor_eval_cat_no_spec.cpp | 479 test::D dp1( in main() local 496 dp1.evaluate_m( in main() 513 dp1( in main()
|
/third_party/skia/third_party/externals/tint/test/bug/tint/ |
D | 949.wgsl.expected.glsl | 45 vec3 dp1 = vec3(0.0f, 0.0f, 0.0f); 55 dp1 = ddx(x_133); 66 dp1perp = cross(x_149, dp1);
|
D | 949.wgsl.expected.hlsl | 28 float3 dp1 = float3(0.0f, 0.0f, 0.0f); 38 dp1 = ddx(x_133); 49 dp1perp = cross(x_149, dp1);
|
D | 949.wgsl.expected.spvasm | 56 OpName %dp1 "dp1" 316 %dp1 = OpVariable %_ptr_Function_v3float Function %22 327 OpStore %dp1 %74 342 %91 = OpLoad %v3float %dp1
|
D | 949.wgsl.expected.wgsl | 66 var dp1 : vec3<f32>; 76 dp1 = dpdx(x_133); 87 let x_150 : vec3<f32> = dp1;
|
D | 949.wgsl.expected.msl | 55 float3 dp1 = 0.0f; 65 dp1 = dfdx(x_133); 76 float3 const x_150 = dp1;
|
D | 949.wgsl | 67 var dp1 : vec3<f32>; 77 dp1 = dpdx(x_133); 88 let x_150 : vec3<f32> = dp1;
|
/third_party/ffmpeg/libavfilter/ |
D | vf_vectorscope.c | 437 uint16_t *dp1 = dst[1]; in vectorscope16() local 579 dp1[pos] = s->tint[0]; in vectorscope16() 637 uint8_t *dp1 = dst[1]; in vectorscope8() local 775 dp1[pos] = s->tint[0]; in vectorscope8()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
D | ShaderCore.hpp | 275 void dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
|
D | VertexProgram.cpp | 187 case Shader::OPCODE_DP1: dp1(d, s0, s1); break; in program()
|
D | PixelProgram.cpp | 211 case Shader::OPCODE_DP1: dp1(d, s0, s1); break; in applyShader()
|
D | ShaderCore.cpp | 1005 void ShaderCore::dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1) in dp1() function in sw::ShaderCore
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatTest.java | 3923 Date d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3949 dp1 = fmt.parse(s1); in Test6880() 3952 if (!dp1.equals(dexp1)) { in Test6880() 3953 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | DateFormatTest.java | 3839 Date d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3865 dp1 = fmt.parse(s1); in Test6880() 3868 if (!dp1.equals(dexp1)) { in Test6880() 3869 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | dtfmttst.cpp | 3841 UDate d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3875 dp1 = fmt->parse(s1, status); in Test6880() 3882 if (dp1 != dexp1) { in Test6880() 3883 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmInstructionTests.cpp | 16427 const double dp1 (1.0 - dp2); in calc() local 16428 const double dpe (eta2 * dp1); in calc() 16483 const fp16type dp1 (1.0 - dp2.asDouble()); in calc() local 16484 const fp16type dpe (eta2.asDouble() * dp1.asDouble()); in calc()
|
/third_party/boost/libs/parameter/doc/ |
D | reference.rst | 6331 D dp1(
|