Searched refs:c2 (Results 26 - 50 of 933) sorted by relevance

1234567891011>>

/external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.special/
H A Dswap_noexcept.pass.cpp28 C c1, c2; local
29 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/std/containers/container.adaptors/queue/queue.special/
H A Dswap_noexcept.pass.cpp27 C c1, c2; local
28 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/std/containers/container.adaptors/stack/stack.special/
H A Dswap_noexcept.pass.cpp27 C c1, c2; local
28 static_assert(noexcept(swap(c1, c2)), "");
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.spec/
H A Dequal.pass.cpp34 C c2; local
36 c2.push_front(i);
38 assert(c1 == c2);
40 assert(c1 != c2);
41 c2 = c1;
42 assert(c1 == c2);
45 c2.front() = N+1;
46 assert(c1 != c2);
H A Dswap_noexcept.pass.cpp57 C c1, c2; local
58 static_assert(noexcept(swap(c1, c2)), "");
62 C c1, c2; local
63 static_assert(noexcept(swap(c1, c2)), "");
67 C c1, c2; local
68 static_assert(noexcept(swap(c1, c2)), "");
72 C c1, c2; local
75 static_assert( noexcept(swap(c1, c2)), "");
77 static_assert(!noexcept(swap(c1, c2)), "");
83 C c1, c2; local
[all...]
/external/clang/test/Analysis/
H A Dpadding_c.c12 char c2; member in struct:FieldAttrAlign
19 char c2; member in struct:FieldAttrOverAlign
46 char c2; member in struct:SquishedIntSandwich
54 char c2; member in struct:IntSandwich
60 char c2; member in struct:TurDuckHen
68 char c2; member in struct:SmallIntSandwich
85 char c2; member in struct:HoldsAUnion
117 char c2; member in struct:HoldsVLA
126 char c2; member in struct:HoldsBitfield
135 char c2; member in struct:__anon1660
142 char c2; member in struct:StructAttrAlign
149 char c2; member in struct:CorrectOverlyAlignedChar
157 char c2; member in struct:OverlyAlignedChar
164 char c2; member in struct:HoldsOverlyAlignedChar
171 char c2; member in struct:X
180 char c2; member in struct:__anon1661
189 char c2; member in struct:__anon1662
196 char c2; member in struct:CorrectDefaultAttrAlign
202 char c2; member in struct:TooSmallShortSandwich
209 char c2; member in struct:SmallArrayShortSandwich
216 char c2; member in struct:SmallArrayInFunc
227 char c2; member in struct:SmallArrayInStruct
[all...]
/external/clang/test/SemaCXX/
H A Dattr-cleanup.cpp8 static void c2(int *a) {} // expected-note {{implicitly declared private here}} expected-note {{implicitly declared private here}} function in class:C
13 int v2 __attribute__((cleanup(N::c2))); // expected-error {{no member named 'c2' in namespace 'N'}}
14 int v3 __attribute__((cleanup(C::c2))); // expected-error {{'c2' is a private member of 'C'}}
19 int v1 __attribute__((cleanup(c2))); // expected-error {{'c2' is a private member of 'C'}}
/external/libcxx/test/std/containers/sequences/vector/vector.special/
H A Dswap.pass.cpp28 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
30 assert(is_contiguous_container_asan_correct(c2));
31 swap(c1, c2);
33 assert(c2 == std::vector<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
35 assert(is_contiguous_container_asan_correct(c2));
41 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
43 assert(is_contiguous_container_asan_correct(c2));
44 swap(c1, c2);
46 assert(c2.empty());
47 assert(distance(c2
[all...]
H A Dswap_noexcept.pass.cpp58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(noexcept(swap(c1, c2)), "");
68 C c1, c2; local
69 static_assert(noexcept(swap(c1, c2)), "");
73 C c1, c2; local
76 static_assert( noexcept(swap(c1, c2)), "");
78 static_assert(!noexcept(swap(c1, c2)), "");
84 C c1, c2; local
[all...]
/external/opencv3/3rdparty/libjasper/
H A Djpc_mct.h97 void jpc_rct(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
100 void jpc_irct(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
103 void jpc_ict(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
106 void jpc_iict(jas_matrix_t *c0, jas_matrix_t *c1, jas_matrix_t *c2);
/external/v8/test/mjsunit/
H A Dunicode-case-overoptimization.js32 var c2 = String.fromCharCode(i + 1);
33 var re = new RegExp("[" + c + "-" + c2 + "]", "i");
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-157019.js49 var c2 = makeConstructor();
50 var o2 = new c2();
53 new c2();
/external/valgrind/memcheck/tests/
H A Dleak-cycle.c39 struct n *volatile c1, *volatile c2; local
45 c2 = mkcycle();
47 c1 = c2 = 0;
51 c2 = mkcycle();
55 if (c1 < c2)
56 c2->r = c1;
58 c1->r = c2;
60 c1 = c2 = 0;
64 c2 = mkcycle();
66 c1->r = c2;
[all...]
/external/libcxx/test/std/containers/unord/unord.map/
H A Deq.pass.cpp45 const C c2; local
46 assert(!(c1 == c2));
47 assert( (c1 != c2));
64 const C c2 = c1; local
65 assert( (c1 == c2));
66 assert(!(c1 != c2));
83 C c2 = c1; local
84 c2.rehash(30);
85 assert( (c1 == c2));
86 assert(!(c1 != c2));
111 const C c2; local
131 const C c2 = c1; local
151 C c2 = c1; local
[all...]
/external/libcxx/test/std/containers/unord/unord.multimap/
H A Deq.pass.cpp48 const C c2; local
49 assert(!(c1 == c2));
50 assert( (c1 != c2));
70 const C c2 = c1; local
71 assert( (c1 == c2));
72 assert(!(c1 != c2));
92 C c2 = c1; local
93 c2.rehash(30);
94 assert( (c1 == c2));
95 assert(!(c1 != c2));
123 const C c2; local
146 const C c2 = c1; local
169 C c2 = c1; local
[all...]
/external/libcxx/test/std/containers/unord/unord.multiset/
H A Deq.pass.cpp47 const C c2; local
48 assert(!(c1 == c2));
49 assert( (c1 != c2));
69 const C c2 = c1; local
70 assert( (c1 == c2));
71 assert(!(c1 != c2));
91 C c2 = c1; local
92 c2.rehash(30);
93 assert( (c1 == c2));
94 assert(!(c1 != c2));
122 const C c2; local
145 const C c2 = c1; local
168 C c2 = c1; local
[all...]
/external/libcxx/test/std/containers/unord/unord.set/
H A Deq.pass.cpp44 const C c2; local
45 assert(!(c1 == c2));
46 assert( (c1 != c2));
63 const C c2 = c1; local
64 assert( (c1 == c2));
65 assert(!(c1 != c2));
82 C c2 = c1; local
83 c2.rehash(30);
84 assert( (c1 == c2));
85 assert(!(c1 != c2));
109 const C c2; local
128 const C c2 = c1; local
147 C c2 = c1; local
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
H A DEllipticCurve_ImplTest.java44 EllipticCurve c2 = null, c1 =
48 assertFalse(c1.equals(c2));
54 c2 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(31L)),
57 assertFalse(c1.equals(c2) || c2.equals(c1));
63 c2 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)),
66 assertFalse(c1.equals(c2) || c2.equals(c1));
72 c2 = new EllipticCurve(new ECFieldFp(BigInteger.valueOf(23L)),
75 assertFalse(c1.equals(c2) || c
[all...]
/external/libcxx/test/std/containers/sequences/deque/deque.special/
H A Dswap_noexcept.pass.cpp57 C c1, c2; local
58 static_assert(noexcept(swap(c1, c2)), "");
62 C c1, c2; local
63 static_assert(noexcept(swap(c1, c2)), "");
67 C c1, c2; local
68 static_assert(noexcept(swap(c1, c2)), "");
72 C c1, c2; local
75 static_assert( noexcept(swap(c1, c2)), "");
77 static_assert(!noexcept(swap(c1, c2)), "");
83 C c1, c2; local
[all...]
H A Dcopy.pass.cpp55 C c2 = make<C>(N); local
56 assert(std::copy(c1.cbegin(), c1.cend(), c2.begin()) == c2.end());
57 assert(c1 == c2);
58 assert(std::copy(c2.cbegin(), c2.cend(), c1.begin()) == c1.end());
59 assert(c1 == c2);
60 assert(std::copy(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end()));
61 assert(c1 == c2);
[all...]
H A Dcopy_backward.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::copy_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
56 assert(c1 == c2);
57 assert(std::copy_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
58 assert(c1 == c2);
59 assert(std::copy_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
60 assert(c1 == c2);
[all...]
/external/libcxx/test/std/containers/sequences/list/list.special/
H A Dswap.pass.cpp26 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
27 swap(c1, c2);
29 assert(c2 == std::list<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
35 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
36 swap(c1, c2);
38 assert(c2.empty());
39 assert(distance(c2.begin(), c2.end()) == 0);
45 std::list<int> c2(a2, a2);
46 swap(c1, c2);
[all...]
H A Dswap_noexcept.pass.cpp57 C c1, c2; local
58 static_assert(noexcept(swap(c1, c2)), "");
62 C c1, c2; local
63 static_assert(noexcept(swap(c1, c2)), "");
67 C c1, c2; local
68 static_assert(noexcept(swap(c1, c2)), "");
72 C c1, c2; local
75 static_assert( noexcept(swap(c1, c2)), "");
77 static_assert(!noexcept(swap(c1, c2)), "");
83 C c1, c2; local
[all...]
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Dswap_noexcept.pass.cpp57 C c1, c2; local
58 static_assert(noexcept(swap(c1, c2)), "");
62 C c1, c2; local
63 static_assert(noexcept(swap(c1, c2)), "");
67 C c1, c2; local
68 static_assert(noexcept(swap(c1, c2)), "");
72 C c1, c2; local
75 static_assert( noexcept(swap(c1, c2)), "");
77 static_assert(!noexcept(swap(c1, c2)), "");
83 C c1, c2; local
[all...]
/external/boringssl/src/crypto/bn/asm/
H A Dx86_64-gcc.c309 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */
310 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */
311 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */
312 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0)
317 #define mul_add_c(a, b, c0, c1, c2) \
322 : "+r"(c0), "+r"(c1), "+r"(c2) \
354 BN_ULONG c1, c2, c3; local
456 BN_ULONG c1, c2, c3; local
494 BN_ULONG c1, c2, c3; local
568 BN_ULONG c1, c2, c3; local
[all...]

Completed in 506 milliseconds

1234567891011>>