Searched defs:d1 (Results 76 - 100 of 298) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint.cpp109 bool findIntersection(const FloatPoint& p1, const FloatPoint& p2, const FloatPoint& d1, const FloatPoint& d2, FloatPoint& intersection) argument
114 float dxLength = d2.x() - d1.x();
115 float dyLength = d2.y() - d1.y();
121 float param = ((d1.x() - p1.x()) * dyLength - (d1.y() - p1.y()) * dxLength) / denom;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Didctllm.c34 int a1, b1, c1, d1; local
52 d1 = temp1 + temp2;
54 op[shortpitch*0] = a1 + d1;
55 op[shortpitch*3] = a1 - d1;
78 d1 = temp1 + temp2;
81 op[0] = (a1 + d1 + 4) >> 3;
82 op[3] = (a1 - d1 + 4) >> 3;
144 int a1, b1, c1, d1; local
154 d1 = ip[0] - ip[12];
157 op[4] = c1 + d1;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c39 static boolean same_src_dst_reg(struct i915_full_src_register* s1, struct i915_full_dst_register* d1) argument
41 return (s1->Register.File == d1->Register.File &&
42 s1->Register.Indirect == d1->Register.Indirect &&
43 s1->Register.Dimension == d1->Register.Dimension &&
44 s1->Register.Index == d1->Register.Index);
47 static boolean same_dst_reg(struct i915_full_dst_register* d1, struct i915_full_dst_register* d2) argument
49 return (d1->Register.File == d2->Register.File &&
50 d1->Register.Indirect == d2->Register.Indirect &&
51 d1->Register.Dimension == d2->Register.Dimension &&
52 d1
55 same_src_reg(struct i915_full_src_register* d1, struct i915_full_src_register* d2) argument
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-nvptx.c149 void nvvm_math(float f1, float f2, double d1, double d2) { argument
160 double td1 = __nvvm_fmax_d(d1, d2);
162 double td2 = __nvvm_fmin_d(d1, d2);
164 double td3 = __nvvm_sqrt_rn_d(d1);
/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis-1.cpp69 X() : d(0.0), d1(1.1), d2(1.2), d3(1.3) {}
71 double d1; member in struct:X
75 printf("d = %f d1 = %f d2 = %f d3 = %f\n", d, d1,d2,d3);
H A Deh.cpp6 } d1; variable in typeref:struct:test1_D
9 throw d1;
16 // CHECK-NEXT: call void @llvm.memcpy.p0i8.p0i8.i64(i8* [[EXN2]], i8* bitcast ([[DSTAR]] @d1 to i8*), i64 8, i32 8, i1 false)
/external/clang/test/PCH/
H A Dexprs.h51 double d0, d1; variable
52 typedef typeof((&dplus)(d0, d1)) call_returning_double;
/external/clang/test/Sema/
H A Dattr-aligned.c39 char d1[__alignof__(d) == 2 ?: -1] = {0}; variable
H A Dstring-init.c27 char32_t d1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} local
/external/clang/test/SemaCXX/
H A Ddefault-assignment-operator.cpp68 D1 d1, d2; variable
71 d1 = d2;
H A Doverload-member-call.cpp24 double& d1 = g(0.0); local
30 double& d1 = g(0.0); local
34 double& d1 = g(0.0); local
51 double& d1 = xp->g(0.0); local
H A Dstring-init.cpp22 char32_t d1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}} local
/external/clang/test/SemaTemplate/
H A Dinstantiate-exception-spec-cxx11.cpp124 Derived<Exc1> d1; // ok variable
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU_kernel_bmod.h117 Scalar d1 = dense.coeff(i1); local
119 d1 -= f*a1;
121 dense.coeffRef(i1) = d1;
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c34 int a1, b1, c1, d1; local
52 d1 = temp1 + temp2;
54 op[shortpitch*0] = a1 + d1;
55 op[shortpitch*3] = a1 - d1;
78 d1 = temp1 + temp2;
81 op[0] = (a1 + d1 + 4) >> 3;
82 op[3] = (a1 - d1 + 4) >> 3;
144 int a1, b1, c1, d1; local
154 d1 = ip[0] - ip[12];
157 op[4] = c1 + d1;
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c39 static boolean same_src_dst_reg(struct i915_full_src_register* s1, struct i915_full_dst_register* d1) argument
41 return (s1->Register.File == d1->Register.File &&
42 s1->Register.Indirect == d1->Register.Indirect &&
43 s1->Register.Dimension == d1->Register.Dimension &&
44 s1->Register.Index == d1->Register.Index);
47 static boolean same_dst_reg(struct i915_full_dst_register* d1, struct i915_full_dst_register* d2) argument
49 return (d1->Register.File == d2->Register.File &&
50 d1->Register.Indirect == d2->Register.Indirect &&
51 d1->Register.Dimension == d2->Register.Dimension &&
52 d1
55 same_src_reg(struct i915_full_src_register* d1, struct i915_full_src_register* d2) argument
[all...]
/external/opencv/cv/src/
H A Dcvpgh.cpp242 int d1 = (pt3.y - pt1.y) * dx - (pt3.x - pt1.x) * dy; local
258 d1 = cvRound( d1 * dist_coeff );
262 cross_flag = (d1 ^ d2) < 0;
264 d1 = CV_IABS( d1 );
269 if( d1 >= dist_dim )
270 d1 = dist_dim - 1;
276 if( d1 > d2 ) /* make d1 <
[all...]
/external/openssl/crypto/bn/
H A Dbn_div.c187 BN_ULONG d0,d1; local
279 d1=(div_n == 1)?0:sdiv->d[div_n-2];
323 q=bn_div_3_words(wnump,d1,d0);
354 t2=(BN_ULLONG)d1*q;
363 t2 -= d1;
379 BN_UMULT_LOHI(t2l,t2h,d1,q);
381 t2l = d1 * q;
382 t2h = BN_UMULT_HIGH(d1,q);
386 t2l=LBITS(d1); t2h=HBITS(d1);
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsmtrx.c74 cmsFloat64Number d1 = a ->n[VX] - b ->n[VX]; local
78 return sqrt(d1*d1 + d2*d2 + d3*d3);
/external/yaffs2/yaffs2/
H A Dyaffs_ecc.c176 unsigned char d0, d1, d2; /* deltas */ local
179 d1 = read_ecc[1] ^ test_ecc[1];
182 if ((d0 | d1 | d2) == 0)
186 ((d1 ^ (d1 >> 1)) & 0x55) == 0x55 &&
198 d0 = d1;
199 d1 = t;
204 if (d1 & 0x80)
206 if (d1 & 0x20)
208 if (d1
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_manager_unittest.cc266 test::TestActivationDelegate d1; local
270 d1.SetWindow(w1.get());
279 d1.Clear();
286 EXPECT_EQ(1, d1.activated_count());
287 EXPECT_EQ(0, d1.lost_active_count());
288 d1.Clear();
298 EXPECT_EQ(0, d1.activated_count());
299 EXPECT_EQ(1, d1.lost_active_count());
302 d1.Clear();
309 d1
418 test::TestActivationDelegate d1; local
608 test::TestActivationDelegate d1; local
[all...]
/external/chromium_org/base/memory/
H A Ddiscardable_memory_manager_unittest.cc246 PermutationTestData(unsigned d0, unsigned d1, unsigned d2) { argument
248 ordering_[1] = d1;
/external/chromium_org/base/
H A Dtools_sanity_unittest.cc283 void RunInParallel(PlatformThread::Delegate *d1, PlatformThread::Delegate *d2) { argument
286 PlatformThread::Create(0, d1, &a);
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Ddiv.c120 BN_ULONG d0, d1; local
216 d1 = (div_n == 1) ? 0 : sdiv->d[div_n - 2];
278 t2 = (BN_ULLONG)d1 * q;
287 t2 -= d1;
303 BN_UMULT_LOHI(t2l, t2h, d1, q);
305 t2l = d1 * q;
306 t2h = BN_UMULT_HIGH(d1, q);
310 t2l = LBITS(d1);
311 t2h = HBITS(d1);
314 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Dd1_lib.c121 DTLS1_STATE *d1; local
124 if ((d1=OPENSSL_malloc(sizeof *d1)) == NULL)
129 memset(d1,0, sizeof *d1);
131 /* d1->handshake_epoch=0; */
133 d1->unprocessed_rcds.q=pqueue_new();
134 d1->processed_rcds.q=pqueue_new();
135 d1->buffered_messages = pqueue_new();
136 d1
[all...]

Completed in 374 milliseconds

1234567891011>>