Searched defs:v0 (Results 1 - 25 of 64) sorted by relevance

123

/external/clang/test/Sema/
H A D2010-05-31-palignr.c16 vSInt16 v0; local
17 v0 = *vdtbl;
18 v0 = _mm_alignr_epi8(v0, v0, i); // expected-error {{argument to '__builtin_ia32_palignr128' must be a constant integer}}
H A Dms_class_layout.cpp45 double v0; member in struct:BaseStruct
125 // CHECK-NEXT: 0 | double v0
154 // CHECK-NEXT: 0 | double v0
/external/openssl/crypto/des/
H A Dcfb64enc.c70 register DES_LONG v0,v1; local
83 c2l(iv,v0); ti[0]=v0;
87 v0=ti[0]; l2c(v0,iv);
88 v0=ti[1]; l2c(v0,iv);
103 c2l(iv,v0); ti[0]=v0;
107 v0
[all...]
H A Dofb64ede.c71 register DES_LONG v0,v1; local
81 c2l(iv,v0);
83 ti[0]=v0;
86 l2c(v0,dp);
92 /* ti[0]=v0; */
95 v0=ti[0];
99 l2c(v0,dp);
108 /* v0=ti[0];
111 l2c(v0,iv);
114 v0
[all...]
H A Dofb64enc.c69 register DES_LONG v0,v1,t; local
79 c2l(iv,v0);
81 ti[0]=v0;
84 l2c(v0,dp);
101 v0=ti[0];
104 l2c(v0,iv);
107 t=v0=v1=ti[0]=ti[1]=0;
H A Dofb_enc.c71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; local
97 c2l(iv,v0);
99 ti[0]=v0;
103 ti[0]=v0;
116 { v0=v1; v1=vv0; }
118 { v0=vv0; v1=vv1; }
121 v0=((v1>>(num-32))|(vv0<<(64-num)))&0xffffffffL;
126 v0=((v0>>num)|(v1<<(32-num)))&0xffffffffL;
131 l2c(v0,i
[all...]
H A Dcfb64ede.c72 register DES_LONG v0,v1; local
85 c2l(iv,v0);
88 ti[0]=v0;
91 v0=ti[0];
95 l2c(v0,iv);
111 c2l(iv,v0);
114 ti[0]=v0;
117 v0=ti[0];
121 l2c(v0,iv);
132 v0
154 register DES_LONG d0,d1,v0,v1; local
[all...]
H A Dcfb_enc.c75 register DES_LONG d0,d1,v0,v1; local
94 c2l(iv,v0);
101 ti[0]=v0;
113 { v0=v1; v1=d0; }
115 { v0=d0; v1=d1; }
120 l2c(v0,iv);
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
134 v0=sh[0], v1=sh[1];
137 c2l(iv,v0);
148 ti[0]=v0;
[all...]
/external/clang/test/CodeGen/
H A Ddebug-info.c6 struct { typeof(0) f0; } v0; local
/external/clang/test/SemaTemplate/
H A Dexplicit-instantiation.cpp7 int v0; // expected-note{{refers here}} variable
8 template int v0; // expected-error{{does not refer}} variable
H A Dinstantiate-function-1.cpp145 U f(T value, U v0, U v1, U v2) { argument
147 case 0: return v0;
/external/iptables/include/linux/netfilter/
H A Dxt_string.h23 } v0; member in union:xt_string_info::__anon5396
/external/openssl/crypto/bf/
H A Dbf_cfb64.c70 register BF_LONG v0,v1,t; local
83 n2l(iv,v0); ti[0]=v0;
103 n2l(iv,v0); ti[0]=v0;
118 v0=v1=ti[0]=ti[1]=t=c=cc=0;
H A Dbf_ofb64.c69 register BF_LONG v0,v1,t; local
79 n2l(iv,v0);
81 ti[0]=v0;
84 l2n(v0,dp);
101 v0=ti[0];
104 l2n(v0,iv);
107 t=v0=v1=ti[0]=ti[1]=0;
/external/openssl/crypto/rc2/
H A Drc2cfb64.c71 register unsigned long v0,v1,t; local
84 c2l(iv,v0); ti[0]=v0;
104 c2l(iv,v0); ti[0]=v0;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
H A Drc2ofb64.c70 register unsigned long v0,v1,t; local
80 c2l(iv,v0);
82 ti[0]=v0;
85 l2c(v0,dp);
102 v0=ti[0];
105 l2c(v0,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
/external/skia/src/core/
H A DSkClampRange.cpp55 void SkClampRange::init(SkFixed fx0, SkFixed dx0, int count, int v0, int v1) { argument
58 fV0 = v0;
/external/skia/tests/
H A DClampRangeTest.cpp28 static int classify_value(SkFixed fx, int v0, int v1) { argument
30 return v0;
/external/stlport/test/unit/
H A Diter_test.cpp135 bool v0 = *i1; local
140 CPPUNIT_ASSERT(( *i1 == v1 && *i2 == v0 ));
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnLocalTriangulator.cpp250 void LoopBlinnLocalTriangulator::addTriangle(Vertex* v0, Vertex* v1, Vertex* v2) argument
253 m_triangles[m_numberOfTriangles++].setVertices(v0, v1, v2);
263 bool LoopBlinnLocalTriangulator::isSharedEdge(Vertex* v0, Vertex* v1)
269 if (tri->contains(v0) && tri->nextVertex(v0, true) == v1)
271 if (tri->contains(v1) && tri->nextVertex(v1, true) == v0)
/external/skia/gpu/src/
H A DFlingState.cpp102 void GrAnimateFloat::start(float v0, float v1, float duration) { argument
103 fValue0 = v0;
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatQuad.cpp57 FloatSize v0 = t3 - t1; local
62 float dot00 = dot(v0, v0);
63 float dot01 = dot(v0, v1);
64 float dot02 = dot(v0, v2);
/external/clang/test/SemaCXX/
H A Denum.cpp45 enum enum0 { v0 }; enumerator in enum:test1::enum0
46 int test0[is_same<__typeof(+v0), int>::value];
/external/libffi/src/mips/
H A Dffitarget.h101 #define v0 $2 macro
/external/mesa3d/test/
H A Dcmain.c230 VertexInput_t v0 = {0}; local
231 v0.attributes[2] = VECTOR4_CTR(0,0,1,1); // aTexCoord
232 v0.attributes[3] = VECTOR4_CTR(0.25f, 0.25f, 0.5f,1); // aPosition
235 ggl->ProcessVertex(ggl, &v0, &vout0);
236 if (memcmp(&vout0.position,&v0.attributes[3],sizeof(vout0.position))) {
243 if (memcmp(&vout0.varyings[vTexCoordIndex],&v0.attributes[2],sizeof uVec4)) {
258 v0.attributes[2] = VECTOR4_CTR(0,0, 1.5f, 1.5f);
270 ggl->ProcessVertex(ggl, &v0, &vout0);

Completed in 1031 milliseconds

123