Searched defs:c3 (Results 1 - 25 of 193) sorted by relevance

12345678

/external/clang/test/Modules/
H A Dsubmodule-visibility-cycles.cpp10 C2 c3; variable
/external/libcxx/test/std/numerics/complex.number/complex.member.ops/
H A Ddivide_equal_complex.pass.cpp32 std::complex<T> c3; local
34 c3 = c;
36 c3 /= ic;
37 assert(c3.real() == 0.5);
38 assert(c3.imag() == -0.5);
40 c3 = c;
42 c3 /= fc;
43 assert(c3.real() == 0.5);
44 assert(c3.imag() == -0.5);
H A Dminus_equal_complex.pass.cpp32 std::complex<T> c3; local
34 c3 = c;
36 c3 -= ic;
37 assert(c3.real() == -4);
38 assert(c3.imag() == -6);
40 c3 = c;
42 c3 -= fc;
43 assert(c3.real() == -4);
44 assert(c3.imag() == -6);
H A Dplus_equal_complex.pass.cpp32 std::complex<T> c3; local
34 c3 = c;
36 c3 += ic;
37 assert(c3.real() == 4);
38 assert(c3.imag() == 6);
40 c3 = c;
42 c3 += fc;
43 assert(c3.real() == 4);
44 assert(c3.imag() == 6);
H A Dtimes_equal_complex.pass.cpp32 std::complex<T> c3; local
34 c3 = c;
36 c3 *= ic;
37 assert(c3.real() == -11.5);
38 assert(c3.imag() == 3.5);
40 c3 = c;
42 c3 *= fc;
43 assert(c3.real() == -11.5);
44 assert(c3.imag() == 3.5);
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
H A Dmove.pass.cpp35 std::deque<MoveOnly, A> c3 = std::move(c1); local
36 assert(c2 == c3);
38 assert(c3.get_allocator() == c1.get_allocator());
50 std::deque<MoveOnly, A> c3 = std::move(c1); local
51 assert(c2 == c3);
53 assert(c3.get_allocator() == c1.get_allocator());
65 std::deque<MoveOnly, A> c3 = std::move(c1); local
66 assert(c2 == c3);
68 assert(c3.get_allocator() == c1.get_allocator());
/external/clang/test/Sema/
H A Dpointer-conversion.c7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} variable
/external/testng/src/test/java/test/preserveorder/
H A DC.java20 public void c3() { method in class:C
21 log("C.c3");
/external/clang/test/CodeGen/
H A Dconstant-comparison.c7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
/external/clang/test/SemaCXX/
H A Dattr-cleanup-gcc.cpp10 void c3(Ty *a) {} function
15 int v3 __attribute__((cleanup(c3<int>))); // expected-warning {{GCC does not allow the 'cleanup' attribute argument to be anything other than a simple identifier}}
H A Dattr-cleanup.cpp24 void c3(int *a) {} // expected-note {{candidate function}} function in namespace:E
25 void c3() {} // expected-note {{candidate function}} function in namespace:E
27 int v1 __attribute__((cleanup(c3))); // expected-error {{'c3' is not a single function}}
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-2.cpp12 Constant<int*, &x> *c3; variable
H A Dattributes.cpp19 check_alignment<3>::t c3; // expected-note 2 {{in instantiation}} member in namespace:attribute_aligned
/external/compiler-rt/test/tsan/
H A Dtsan-vs-gvn.cc12 char c1, c2, c3, c4; member in struct:__anon3885
18 G = S.c1 + S.c3;
/external/fio/lib/
H A Dbswap.h9 uint32_t c1, c2, c3, c4; local
13 c3 = (val >> 8) & 0xff;
16 return c1 | c2 << 8 | c3 << 16 | c4 << 24;
21 uint64_t c1, c2, c3, c4, c5, c6, c7, c8; local
25 c3 = (val >> 40) & 0xff;
32 return c1 | c2 << 8 | c3 << 16 | c4 << 24 | c5 << 32 | c6 << 40 | c7 << 48 | c8 << 56;
/external/kmod/testsuite/
H A Dtest-array.c51 const char *c3 = "test3"; local
56 array_append(&array, c3);
60 assert_return(array.array[2] == c3, EXIT_FAILURE);
73 const char *c3 = "test3"; local
78 array_append_unique(&array, c3);
79 array_append_unique(&array, c3);
85 assert_return(array.array[2] == c3, EXIT_FAILURE);
105 const char *c3 = "test3"; local
110 array_append(&array, c3);
112 array_append(&array, c3);
134 const char *c3 = "test3"; local
174 const char *c3 = "test3"; local
[all...]
/external/libcxx/test/std/containers/sequences/array/
H A Dcompare.pass.cpp50 C c3 = {3, 2, 1}; local
53 test_compare(c1, c3);
/external/ltp/testcases/kernel/mem/shmt/
H A Dshmt09.c73 char *c1 = NULL, *c2 = NULL, *c3 = NULL; local
151 c3 = shmat(shmid, vp, SHM_RND);
152 if (c3 == (char *)-1) {
/external/strace/tests/
H A Dprint_quoted_string.c69 char c3 = '0' + (c >> 6); local
73 putchar(c3);
77 if (c3 != '0')
78 putchar(c3);
79 if (c3 != '0' || c2 != '0')
/external/strace/tests-m32/
H A Dprint_quoted_string.c69 char c3 = '0' + (c >> 6); local
73 putchar(c3);
77 if (c3 != '0')
78 putchar(c3);
79 if (c3 != '0' || c2 != '0')
/external/strace/tests-mx32/
H A Dprint_quoted_string.c69 char c3 = '0' + (c >> 6); local
73 putchar(c3);
77 if (c3 != '0')
78 putchar(c3);
79 if (c3 != '0' || c2 != '0')
/external/clang/test/Analysis/
H A DNewDelete-custom.cpp27 C *c3 = ::new C; local
30 // expected-warning@-2{{Potential leak of memory pointed to by 'c3'}}
/external/clang/test/CodeGenCXX/
H A Darray-operator-delete-call.cpp56 COST c3; local
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dtranspose_vsx.h41 int16x8_t c0, c1, c2, c3, c4, c5, c6, c7; local
65 c3 = vec_mergel(b1, b5);
75 // c3: 06 26 46 66 07 27 47 67
87 v[6] = vec_mergeh(c3, c7);
88 v[7] = vec_mergel(c3, c7);
/external/python/cpython2/Modules/cjkcodecs/
H A D_codecs_cn.c263 unsigned char c3, c4; local
267 c3 = IN3;
269 if (c < 0x81 || c3 < 0x81 || c4 < 0x30 || c4 > 0x39)
272 c3 -= 0x81; c4 -= 0x30;
276 (ucs4_t)c3 * 10 + c4;
288 * 1260 + (ucs4_t)c3 * 10 + c4;

Completed in 3695 milliseconds

12345678