Home
last modified time | relevance | path

Searched refs:dp1 (Results 1 – 22 of 22) sorted by relevance

/third_party/uboot/u-boot-2020.01/lib/efi_selftest/
Defi_selftest_devicepath_util.c94 struct efi_device_path *dp1; in execute() local
114 dp1 = dpu->duplicate_device_path(NULL); in execute()
115 if (dp1) { in execute()
120 dp1 = dpu->append_device_path(NULL, NULL); in execute()
121 if (!dp1) { in execute()
125 len = dpu->get_device_path_size(dp1); in execute()
131 ret = boottime->free_pool(dp1); in execute()
137 ret = create_single_node_device_path(21, &dp1); in execute()
144 dp3 = dpu->append_device_path(dp1, dp2); in execute()
149 if (dp3 == dp1 || dp3 == dp2) { in execute()
[all …]
Defi_selftest_devicepath.c44 static u8 *dp1; variable
86 (void **)&dp1); in setup()
110 boottime->copy_mem(dp1, &vendor_node, in setup()
132 boottime->copy_mem(dp1 + sizeof(struct efi_device_path_vendor), in setup()
142 dp1); in setup()
196 dp1); in teardown()
229 if (dp1) { in teardown()
230 ret = boottime->free_pool(dp1); in teardown()
/third_party/boost/libs/geometry/doc/src/examples/arithmetic/
Ddot_product.cpp26 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/boost/libs/multiprecision/example/
Dnumeric_limits_snips.cpp215 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/uboot/u-boot-2020.01/lib/efi_loader/
Defi_device_path.c280 struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1, in efi_dp_append() argument
285 if (!dp1 && !dp2) { in efi_dp_append()
288 } else if (!dp1) { in efi_dp_append()
291 ret = efi_dp_dup(dp1); in efi_dp_append()
294 unsigned sz1 = efi_dp_size(dp1); in efi_dp_append()
299 memcpy(p, dp1, sz1); in efi_dp_append()
/third_party/ffmpeg/libswscale/
Dvscale.c86 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/
Dpreprocessor_eval_cat_no_spec.cpp479 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/
D949.wgsl.expected.hlsl28 float3 dp1 = float3(0.0f, 0.0f, 0.0f);
38 dp1 = ddx(x_133);
49 dp1perp = cross(x_149, dp1);
D949.wgsl.expected.glsl45 vec3 dp1 = vec3(0.0f, 0.0f, 0.0f);
55 dp1 = ddx(x_133);
66 dp1perp = cross(x_149, dp1);
D949.wgsl.expected.spvasm56 OpName %dp1 "dp1"
316 %dp1 = OpVariable %_ptr_Function_v3float Function %22
327 OpStore %dp1 %74
342 %91 = OpLoad %v3float %dp1
D949.wgsl67 var dp1 : vec3<f32>;
77 dp1 = dpdx(x_133);
88 let x_150 : vec3<f32> = dp1;
D949.wgsl.expected.msl55 float3 dp1 = 0.0f;
65 dp1 = dfdx(x_133);
76 float3 const x_150 = dp1;
D949.wgsl.expected.wgsl66 var dp1 : vec3<f32>;
76 dp1 = dpdx(x_133);
87 let x_150 : vec3<f32> = dp1;
/third_party/uboot/u-boot-2020.01/include/
Defi_loader.h528 struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
/third_party/ffmpeg/libavfilter/
Dvf_vectorscope.c437 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/
DShaderCore.hpp275 void dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
DVertexProgram.cpp187 case Shader::OPCODE_DP1: dp1(d, s0, s1); break; in program()
DPixelProgram.cpp211 case Shader::OPCODE_DP1: dp1(d, s0, s1); break; in applyShader()
DShaderCore.cpp1005 void ShaderCore::dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1) in dp1() function in sw::ShaderCore
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DDateFormatTest.java3839 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/
Ddtfmttst.cpp3764 UDate d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local
3798 dp1 = fmt->parse(s1, status); in Test6880()
3805 if (dp1 != dexp1) { in Test6880()
3806 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
/third_party/boost/libs/parameter/doc/
Dreference.rst6331 D dp1(