Searched defs:v1 (Results 1 - 25 of 194) sorted by relevance

12345678

/external/clang/test/Parser/
H A Dpragma-visibility2.c8 int v1; variable
9 // CHECK: @v1 = common hidden global i32 0, align 4
/external/oprofile/libutil++/tests/
H A Dstring_filter_tests.cpp51 vector<string> v1; local
54 string_filter f6(v1, v2);
58 v1.push_back("ok");
59 v1.push_back("ok2");
61 string_filter f7(v1, v2);
66 v1.clear();
71 string_filter f8(v1, v2);
76 v1.push_back("ok");
77 v1.push_back("ok2");
79 string_filter f9(v1, v
[all...]
/external/clang/test/CodeGen/
H A Dcxx-value-init.cpp4 int v1 = E(); variable
H A Dmmx-inline-asm.c9 __m64 v1, v2, v3, v4, v5, v6, v7; local
19 : "=&y" (v1), "=&y" (v2), "=&y" (v3),
/external/stlport/test/unit/
H A Dfib.h6 Fibonacci() : v1(0), v2(1) {}
9 int v1; member in class:Fibonacci
16 int r = v1 + v2;
17 v1 = v2;
19 return v1;
H A Dperm_test.cpp44 int v1[3] = { 0, 1, 2 }; local
45 prev_permutation(v1, v1 + 3);
47 CPPUNIT_ASSERT(v1[0]==2);
48 CPPUNIT_ASSERT(v1[1]==1);
49 CPPUNIT_ASSERT(v1[2]==0);
53 vector <int> v1(3);
54 __iota(v1.begin(), v1.end(), 0);
56 prev_permutation(v1
137 int v1[3] = { 0, 1, 2 }; local
[all...]
H A Dsetinter_test.cpp39 int v1[3] = { 13, 18, 23 }; local
43 set_intersection((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
53 vector <int> v1(10);
54 __iota(v1.begin(), v1.end(), 0);
59 set_intersection(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(inter));
H A Dsetunion_test.cpp39 int v1[3] = { 13, 18, 23 }; local
43 set_union((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
56 vector <int> v1(10);
57 __iota(v1.begin(), v1.end(), 0);
62 set_union(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
H A Dsearch_test.cpp41 int v1[6] = { 1, 1, 2, 3, 5, 8 }; local
46 location = search((int*)v1, (int*)v1 + 6, (int*)v3, (int*)v3 + 2);
47 CPPUNIT_ASSERT(location == v1 + 6);
56 IntVec v1(10);
57 __iota(v1.begin(), v1.end(), 0);
62 location = search(v1.begin(), v1.end(), v2.begin(), v2.end());
64 CPPUNIT_ASSERT(location == v1
[all...]
H A Dsetdiff_test.cpp45 int v1[3] = { 13, 18, 23 }; local
49 set_symmetric_difference((int*)v1, (int*)v1 + 3, (int*)v2, (int*)v2 + 4, (int*)result);
58 vector<int> v1(10);
59 __iota(v1.begin(), v1.end(), 0);
64 set_symmetric_difference(v1.begin(), v1.end(), v2.begin(), v2.end(), back_inserter(diff));
89 int v1[3] = { 13, 18, 23 }; local
95 set_difference((int*)v1, (in
[all...]
H A Dswap_test.cpp90 queue<Obj> v1; local
93 v1.push( Obj() );
94 v1.back().v = -1;
95 v1.push( Obj() );
96 v1.back().v = -2;
105 CPPUNIT_CHECK( v1.size() == 2 );
108 swap( v1, v2 ); // this shouldn't try make it as v1.swap( v2 ), no queue::swap method!
110 CPPUNIT_CHECK( v1.size() == 3 );
114 CPPUNIT_CHECK( v1
133 vector<Obj> v1; local
[all...]
/external/clang/test/Sema/
H A Dattr-cleanup.c11 int v1 __attribute((cleanup)); // expected-error {{attribute takes one argument}}
31 int v1 __attribute__((cleanup(c2))); // expected-error {{'cleanup' function 'c2' must take 1 parameter}} local
H A Dvector-cast.c9 t1 v1; local
13 v2 = (t2)v1; // -expected-error {{invalid conversion between vector type \
15 v1 = (t1)v2; // -expected-error {{invalid conversion between vector type \
19 v1 = (t1)(char *)10; // -expected-error {{invalid conversion between vector \
21 v1 = (t1)(long long)10;
22 v1 = (t1)(short)10; // -expected-error {{invalid conversion between vector \
25 long long r1 = (long long)v1;
26 short r2 = (short)v1; // -expected-error {{invalid conversion between vector \
28 char *r3 = (char *)v1; // -expected-error {{invalid conversion between vector\
H A Dvector-assign.c9 v2s v1; local
15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2u'}}
16 v1 = v3; // expected-error {{assigning to 'v2s' from incompatible type 'v1s'}}
17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2f'}}
18 v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v4ss'}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2s'}}
25 v3 = v1; // expected-error {{assigning to 'v1s' from incompatible type 'v2s'}}
30 v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2s'}}
35 v5 = v1; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2s'}}
/external/clang/test/PCH/
H A Dcxx-implicit-moves.cpp19 float test(float v1, float v2) { argument
20 NSSize s = NSMakeSize(v1, v2);
/external/clang/test/SemaCXX/
H A Dtype-convert-construct.cpp4 float v1 = float(1); local
/external/clang/test/SemaTemplate/
H A Dinstantiate-clang.cpp13 void f(T v1, double4 v2) { argument
14 v1.xy = v2.yx;
H A Dinstantiate-deeply.cpp9 d v1 = 4; local
10 c v2 = v1 * v1;
/external/openssl/crypto/des/
H A Dcfb64enc.c70 register DES_LONG v0,v1; local
84 c2l(iv,v1); ti[1]=v1;
104 c2l(iv,v1); ti[1]=v1;
118 v0=v1=ti[0]=ti[1]=c=cc=0;
/external/openssl/crypto/
H A Do_str.c103 int OPENSSL_memcmp(const void *v1,const void *v2,size_t n) argument
105 const unsigned char *c1=v1,*c2=v2;
/external/webkit/Source/JavaScriptCore/runtime/
H A DOperations.cpp34 bool JSValue::equalSlowCase(ExecState* exec, JSValue v1, JSValue v2) argument
36 return equalSlowCaseInline(exec, v1, v2);
39 bool JSValue::strictEqualSlowCase(ExecState* exec, JSValue v1, JSValue v2) argument
41 return strictEqualSlowCaseInline(exec, v1, v2);
44 NEVER_INLINE JSValue jsAddSlowCase(CallFrame* callFrame, JSValue v1, JSValue v2) argument
47 JSValue p1 = v1.toPrimitive(callFrame);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp7.cpp7 auto v1 = 0, *p1 = &v1; local
/external/dropbear/libtommath/
H A Dbn_mp_exteuclid.c23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
34 /* initialize, (v1,v2,v3) = (0,1,b) */
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
44 if ((err = mp_mul(&v1, &q, &tmp)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3) = (v1,v2,v3) */
52 if ((err = mp_copy(&v1, &u1)) != MP_OKAY) { goto _ERR; }
56 /* (v1,v2,v3) = (t1,t2,t3) */
57 if ((err = mp_copy(&t1, &v1)) != MP_OKAY) { goto _ERR; }
75 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1,
[all...]
/external/guava/src/com/google/common/collect/
H A DImmutableSortedMapFauxverideShim.java53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) { argument
67 K k1, V v1, K k2, V v2) {
82 K k1, V v1, K k2, V v2, K k3, V v3) {
97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
112 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) {
66 of( K k1, V v1, K k2, V v2) argument
81 of( K k1, V v1, K k2, V v2, K k3, V v3) argument
96 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) argument
111 of( K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) argument
/external/iptables/include/linux/netfilter/
H A Dxt_string.h27 } v1; member in union:xt_string_info::__anon5396

Completed in 453 milliseconds

12345678