/external/u-boot/lib/efi_selftest/ |
D | efi_selftest_devicepath_util.c | 94 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 …]
|
D | efi_selftest_devicepath.c | 44 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()
|
/external/jemalloc/test/integration/ |
D | allocated.c | 17 uint64_t *ap0, *ap1, *dp0, *dp1; in thd_start() local 79 sz = sizeof(dp1); in thd_start() 80 mallctl("thread.deallocatedp", (void *)&dp1, &sz, NULL, 0); in thd_start() 81 assert_u64_eq(*dp1, d1, in thd_start() 84 assert_ptr_eq(dp0, dp1, in thd_start()
|
/external/jemalloc_new/test/integration/ |
D | allocated.c | 16 uint64_t *ap0, *ap1, *dp0, *dp1; in thd_start() local 82 sz = sizeof(dp1); in thd_start() 83 mallctl("thread.deallocatedp", (void *)&dp1, &sz, NULL, 0); in thd_start() 84 assert_u64_eq(*dp1, d1, in thd_start() 87 assert_ptr_eq(dp0, dp1, in thd_start()
|
/external/eigen/blas/f2c/ |
D | drotmg.c | 37 doublereal du, dp1, dp2, dq1, dq2, dh11, dh12, dh21, dh22; in drotmg_() local 117 dp1 = *dd1 * *dx1; in drotmg_() 119 dq1 = dp1 * *dx1; in drotmg_() 125 dh12 = dp2 / dp1; in drotmg_() 149 dh11 = dp1 / dp2; in drotmg_()
|
/external/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
|
/external/clang/test/SemaCXX/ |
D | overload-call.cpp | 23 double* dp1 = g(iv, fv, fv); in test_g() local 45 double* dp1 = i(lv); in test_i() local 72 double* dp1 = k(L"foo"); in test_k() local 85 double* dp1 = l("foo"); in test_l() local 109 double* dp1 = n(fa); in test_n() local 128 double* dp1 = o(PromotesToUnsignedIntValue); in test_o() local 161 double* dp1 = multiparm(sv, sv, sv); in test_multiparm() local
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateDayPeriodChart.java | 72 for (DayPeriod dp1 : periods) { in main() 74 int comp = dp1.compareTo(dp2); in main() 76 minimalPairs.put(dp2, dp1, locale, Boolean.TRUE); in main() 78 minimalPairs.put(dp1, dp2, locale, Boolean.TRUE); in main()
|
/external/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); \
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/ |
D | atomics-sm60.ll | 5 define void @test(double* %dp0, double addrspace(1)* %dp1, double addrspace(3)* %dp3, double %d) { 9 %r2 = call double @llvm.nvvm.atomic.load.add.f64.p1f64(double addrspace(1)* %dp1, double %d)
|
/external/u-boot/lib/efi_loader/ |
D | efi_device_path.c | 278 struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1, in efi_dp_append() argument 283 if (!dp1 && !dp2) { in efi_dp_append() 286 } else if (!dp1) { in efi_dp_append() 289 ret = efi_dp_dup(dp1); in efi_dp_append() 292 unsigned sz1 = efi_dp_size(dp1); in efi_dp_append() 297 memcpy(p, dp1, sz1); in efi_dp_append()
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
D | draw_pipe_clip.c | 628 const float dp1 = getclipdist(clipper, v1, plane_idx); in do_clip_line() local 630 if (util_is_inf_or_nan(dp0) || util_is_inf_or_nan(dp1)) in do_clip_line() 633 if (dp1 < 0.0F) { in do_clip_line() 634 float t = dp1 / (dp1 - dp0); in do_clip_line() 639 float t = dp0 / (dp0 - dp1); in do_clip_line()
|
/external/testng/src/test/java/test/dataprovider/ |
D | DuplicateDataProviderSampleTest.java | 13 public Object[] dp1() { in dp1() method in DuplicateDataProviderSampleTest
|
D | IndicesTest.java | 9 public Object[][] dp1() { in dp1() method in IndicesTest
|
/external/testng/src/test/java/test/inject/ |
D | InjectDataProviderTest.java | 20 public Object[][] dp1() { in dp1() method in InjectDataProviderTest
|
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
D | p9-0x.cpp | 44 double *dp1 = first_arg<>(dp); in test_explicit_spec_extension() local
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-ldp.ll | 290 %dp1 = bitcast i8* %bp1p1 to i64* 291 %tmp1 = load i64, i64* %dp1, align 1 313 %dp1 = bitcast i8* %bp1p1 to i32* 314 %tmp1 = load i32, i32* %dp1, align 1
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | arm64-ldp.ll | 313 %dp1 = bitcast i8* %bp1p1 to i64* 314 %tmp1 = load i64, i64* %dp1, align 1 336 %dp1 = bitcast i8* %bp1p1 to i32* 337 %tmp1 = load i32, i32* %dp1, align 1
|
/external/u-boot/include/ |
D | efi_loader.h | 353 struct efi_device_path *efi_dp_append(const struct efi_device_path *dp1,
|
/external/swiftshader/src/Pipeline/ |
D | ShaderCore.hpp | 279 void dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.hpp | 279 void dp1(Vector4f &dst, const Vector4f &src0, const Vector4f &src1);
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DateFormatTest.java | 3835 Date d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3861 dp1 = fmt.parse(s1); in Test6880() 3864 if (!dp1.equals(dexp1)) { in Test6880() 3865 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|
/external/icu/icu4c/source/test/intltest/ |
D | dtfmttst.cpp | 3769 UDate d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3803 dp1 = fmt->parse(s1, status); in Test6880() 3810 if (dp1 != dexp1) { in Test6880() 3811 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | DateFormatTest.java | 3838 Date d1, d2, dp1, dp2, dexp1, dexp2; in Test6880() local 3864 dp1 = fmt.parse(s1); in Test6880() 3867 if (!dp1.equals(dexp1)) { in Test6880() 3868 errln("FAIL: Failed to parse " + s1 + " parsed: " + dp1 + " expected: " + dexp1); in Test6880()
|