Searched refs:d1 (Results 1 - 25 of 299) sorted by relevance

1234567891011>>

/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/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 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}}
/external/openssl/ssl/
H A Dd1_lib.c97 DTLS1_STATE *d1; local
100 if ((d1=OPENSSL_malloc(sizeof *d1)) == NULL) return (0);
101 memset(d1,0, sizeof *d1);
103 /* d1->handshake_epoch=0; */
105 d1->unprocessed_rcds.q=pqueue_new();
106 d1->processed_rcds.q=pqueue_new();
107 d1->buffered_messages = pqueue_new();
108 d1
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieIdentityComparator.java55 String d1 = c1.getDomain();
56 if (d1 == null) {
57 d1 = "";
63 res = d1.compareToIgnoreCase(d2);
/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/valgrind/main/none/tests/arm/
H A Dneon64.c617 TESTINSN_imm("vmov.i16 d1", d1, 0x7);
631 TESTINSN_imm("vmvn.i16 d1", d1, 0x7);
658 TESTINSN_un("vmvn d0, d1", d0, d1, i32, 24);
663 TESTINSN_un("vmov d0, d1", d0, d1, i32, 24);
668 TESTINSN_un("vmov d0, d1", d0, d1, i
[all...]
H A Dneon64.stdout.exp4 vmov.i16 d1, #0x7 :: Qd 0x00070007 0x00070007
5 vmov.i16 d1, #0x7 :: Qd 0x00070007 0x00070007
29 vmvn.i16 d1, #0x7 :: Qd 0xfff8fff8 0xfff8fff8
30 vmvn.i16 d1, #0x7 :: Qd 0xfff8fff8 0xfff8fff8
74 vmvn d0, d1 :: Qd 0xffffffe7 0xffffffe7 Qm (i32)0x00000018
75 vmvn d0, d1 :: Qd 0xeae2e6e2 0xebe3e0e3 Qm (i32)0x00000018
81 vmov d0, d1 :: Qd 0x00000018 0x00000018 Qm (i32)0x00000018
82 vmov d0, d1 :: Qd 0x151d191d 0x141c1f1c Qm (i32)0x00000018
88 vmov d0, d1 :: Qd 0x07070707 0x07070707 Qm (i8)0x00000007
89 vmov d0, d1
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DDateTest.java61 Date d1 = new Date(70, 0, 1); // the epoch + local time
64 Date d2 = new Date(0 + d1.getTimezoneOffset() * 60 * 1000);
66 assertTrue("Created incorrect date", d1.equals(d2));
80 Date d1 = new Date(70, 0, 1, 1, 1);
83 Date d2 = new Date(0 + d1.getTimezoneOffset() * 60 * 1000 + 60 * 60
86 assertTrue("Created incorrect date", d1.equals(d2));
96 Date d1 = new Date(70, 0, 1, 1, 1, 1);
99 Date d2 = new Date(0 + d1.getTimezoneOffset() * 60 * 1000 + 60 * 60
102 assertTrue("Created incorrect date", d1.equals(d2));
119 Date d1
[all...]
/external/clang/test/CodeGenCXX/
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;
/external/llvm/test/MC/ARM/
H A Dneon-vswp.s3 vswp d1, d2
6 @ CHECK: vswp d1, d2 @ encoding: [0x02,0x10,0xb2,0xf3]
/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/skia/third_party/glu/libtess/
H A Dgeom.c210 void __gl_edgeIntersect( GLUvertex *o1, GLUvertex *d1, argument
213 /* Given edges (o1,d1) and (o2,d2), compute their point of intersection.
228 if( ! VertLeq( o1, d1 )) { Swap( o1, d1 ); }
230 if( ! VertLeq( o1, o2 )) { Swap( o1, o2 ); Swap( d1, d2 ); }
232 if( ! VertLeq( o2, d1 )) {
234 v->s = (o2->s + d1->s) / 2;
235 } else if( VertLeq( d1, d2 )) {
236 /* Interpolate between o2 and d1 */
237 z1 = EdgeEval( o1, o2, d1 );
[all...]
/external/libvpx/vp8/encoder/x86/
H A Ddct_sse2.asm87 psubw xmm3, xmm1 ;c1 d1 c1 d1 c1 d1 c1 d1
89 psllw xmm3, 3 ;c1 <<= 3 d1 <<= 3
95 pmaddwd xmm3, XMMWORD PTR[GLOBAL(_5352_2217)] ;c1*2217 + d1*5352
96 pmaddwd xmm4, XMMWORD PTR[GLOBAL(_2217_neg5352)];d1*2217 - c1*5352
100 psrad xmm3, 12 ;(c1 * 2217 + d1 * 5352 + 14500)>>12
101 psrad xmm4, 12 ;(d1 * 2217 - c1 * 5352 + 7500)>>12
124 psubw xmm3, xmm2 ;c1 c1 c1 c1 d1 d
[all...]
H A Ddct_mmx.asm71 psubw mm5, mm3 ; d1 = 0 - 3
86 ; interleave c1, d1
87 movq mm1, mm5 ; d1
88 punpcklwd mm1, mm4 ; c1 d1
89 punpckhwd mm5, mm4 ; c1 d1
94 pmaddwd mm1, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
95 pmaddwd mm4, MMWORD PTR[GLOBAL (_5352_2217)] ; c1*2217 + d1*5352
97 pmaddwd mm3, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
98 pmaddwd mm5, MMWORD PTR[GLOBAL(_2217_neg5352)] ; d1*2217 - c1*5352
105 psrad mm1, 12 ; (c1 * 2217 + d1 * 535
[all...]
/external/libvpx/vp8/common/
H A Didctllm.c31 int a1, b1, c1, d1; local
49 d1 = temp1 + temp2;
51 op[shortpitch*0] = a1 + d1;
52 op[shortpitch*3] = a1 - d1;
75 d1 = temp1 + temp2;
78 op[0] = (a1 + d1 + 4) >> 3;
79 op[3] = (a1 - d1 + 4) >> 3;
136 int a1, b1, c1, d1; local
146 d1 = ip[0] - ip[12];
149 op[4] = c1 + d1;
[all...]
/external/openssl/crypto/des/
H A Dcfb_enc.c75 register DES_LONG d0,d1,v0,v1; local
104 c2ln(in,d0,d1,n);
107 d1^=ti[1];
108 l2cn(d0,d1,out,n);
115 { v0=d0; v1=d1; }
123 l2c(d1,iv);
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
151 c2ln(in,d0,d1,n);
158 { v0=d0; v1=d1; }
166 l2c(d1,i
[all...]
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;
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_ikbdinterrupt.S47 moveml d0-d1/a0-a1,sp@
49 moveml d0-d1/a0-a1,sp@-
110 moveml sp@,d0-d1/a0-a1
115 moveml sp@+,d0-d1/a0-a1
184 moveml d0-d1/a0,sp@
186 moveml d0-d1/a0,sp@-
244 moveb d0,d1
247 andl #0x7f,d1
250 moveb d0,a0@(0,d1:l)
252 andw #0x7f,d1
[all...]
H A DSDL_ataric2p.S71 movel a0@+,d1
76 d1 = e7e6e5e4e3e2e1e0 f7f6f5f4f3f2f1f0 g7g6g5g4g3g2g1g0 h7h6h5h4h3h2h1h0
80 movel d1,d7
86 eorl d7,d1
106 eorl d1,d7
108 eorl d7,d1
113 d1 = a3a2a1a0e3e2e1e0 i3i2i1i0m3m2m1m0 c3c2c1c0g3g2g1g0 k3k2k1k0o3o2o1o0
122 movel a0@+,d1
127 d1 = e7e6e5e4e3e2e1e0 f7f6f5f4f3f2f1f0 g7g6g5g4g3g2g1g0 h7h6h5h4h3h2h1h0
131 movel d1,d
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_it.S148 movew _SDL_MintAudio_numbuf,d1
149 eorl #1,d1
150 movew d1,_SDL_MintAudio_numbuf
184 movel _SDL_MintAudio_audiosize,d1
191 lea a1@(d1:l),a2
223 moveml d0-d1/a0-a1,sp@
225 moveml d0-d1/a0-a1,sp@-
247 movew _SDL_MintAudio_numbuf,d1
248 eorl #1,d1
249 movew d1,_SDL_MintAudio_numbu
[all...]

Completed in 516 milliseconds

1234567891011>>