Searched defs:d1 (Results 1 - 25 of 147) sorted by relevance

123456

/external/clang/test/CodeGen/
H A D2008-02-26-inline-asm-bug.c4 int d1, d2; local
5 asm("%0,%1": "=r" (d1) : "r" (d2));
H A Dx86.c12 int d1, d2; local
13 asm ("" : "=a" (d1), "=b" (d2) :
H A D2007-05-07-PaddingElements.c5 double d1; member in struct:s
/external/icu4c/test/cintltst/
H A Dcformtst.c57 UChar* myDateFormat(UDateFormat* dat, UDate d1) argument
65 resultlengthneeded=udat_format(dat, d1, NULL, resultlength, NULL, &status);
71 udat_format(dat, d1, result1, resultlength, NULL, &status);
/external/chromium/third_party/modp_b64/
H A Dmodp_b64_data.h157 static const uint32_t d1[256] = { variable
350 static const uint32_t d1[256] = { variable
/external/clang/test/CodeGenCXX/
H A Dapple-kext-linkage.C13 Derived d1; // ok local
H A Dreference-in-blocks.cpp15 A() : field(10), d1(3.14) {}
19 printf(" field = %f\n", d1);
22 double d1; member in class:A
H A Dimplicit-copy-assign-operator.cpp39 void test_D(D d1, D d2) { argument
40 d1 = d2;
H A Dcopy-assign-synthesis.cpp54 X() : d(0.0), d1(1.1), d2(1.2), d3(1.3) {}
56 double d1; member in struct:X
60 printf("d = %f d1 = %f d2 = %f d3 = %f\n", d, d1,d2,d3);
H A Dempty-classes.cpp45 D d1, d2; local
46 d2 = d1;
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp42 dummy d1 = sizeof(t1); // expected-error {{no viable conversion}} local
H A Dinstantiation-default-1.cpp16 void test_Def1(Def1<int, const int> *d1, Def1<const int, const int> *d2, argument
18 d1->foo();
/external/libffi/testsuite/libffi.call/
H A Dstruct2.c12 double d1; member in struct:__anon7327
18 ts.d1--;
51 ts2_arg.d1 = 5.55;
54 printf ("%g\n", ts2_arg.d1);
59 printf ("%g\n", ts2_result->d1);
62 CHECK(ts2_result->d1 == 5.55 - 1);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnClassifier.cpp58 // Compute d1..d3.
59 float d1 = a1 - 2 * a2 + 3 * a3; local
66 // the vector defined by (d1, d2, d3), this fixes the problem of the
69 FloatPoint3D nd(d1, d2, d3);
71 d1 = nd.x();
78 float term0 = (3 * d2 * d2 - 4 * d1 * d3);
79 float discriminant = d1 * d1 * term0;
84 // Correct for this by rounding d1..d3 and the discriminant to zero
86 d1
[all...]
H A DLoopBlinnClassifier.h58 , d1(inputD1)
66 float d1; member in struct:WebCore::LoopBlinnClassifier::Result
/external/clang/test/SemaCXX/
H A Dconstexpr-value-init.cpp28 constexpr D d1; // expected-error {{requires a user-provided default constructor}} variable
H A Dcomposite-pointer-type.cpp7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) { argument
8 if (b > d1)
10 if (d1 <= b)
14 if (d1 >= d2) // expected-error{{comparison of distinct}}
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) { argument
19 if (b == d1)
21 if (d1 == b)
25 if (d1 == d2) // expected-error{{comparison of distinct}}
H A Dlinkage-spec.cpp16 double& d1 = g(d); local
/external/libvpx/vp8/encoder/
H A Ddct.c17 int a1, b1, c1, d1; local
26 d1 = ((ip[0] - ip[3])<<3);
31 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
32 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
45 d1 = ip[0] - ip[12];
50 op[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0);
51 op[12] = (d1 * 2217 - c1 * 5352 + 51000)>>16;
67 int a1, b1, c1, d1; local
76 d1
[all...]
/external/openssl/crypto/des/
H A Dofb_enc.c71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; local
108 c2ln(in,d0,d1,n);
111 d1=(d1^vv1)&mask1;
112 l2cn(d0,d1,out,n);
133 v0=v1=d0=d1=ti[0]=ti[1]=vv0=vv1=0;
H A Dcfb64ede.c154 register DES_LONG d0,d1,v0,v1; local
173 c2ln(in,d0,d1,n);
176 d1^=ti[1];
177 l2cn(d0,d1,out,n);
184 { v0=d0; v1=d1; }
191 l2c(d1,iv);
215 c2ln(in,d0,d1,n);
222 { v0=d0; v1=d1; }
229 l2c(d1,iv);
244 d1
[all...]
/external/valgrind/main/massif/tests/
H A Dalloc-fns.c21 void d1(int n) { d2(n); } function
30 d1(400);
/external/chromium/webkit/glue/
H A Dglue_serialize_unittest.cc32 const char d1[] = "first data block"; local
33 http_body.appendData(WebData(d1, sizeof(d1)-1));
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp12.cpp85 Derived1<int> d1; local
86 d1.foo(i);
87 d1.testUnresolved(i);
/external/clang/test/Sema/
H A Dattr-aligned.c32 char d1[__alignof__(d) == 2 ?: -1] = {0}; variable

Completed in 1583 milliseconds

123456