HomeSort by relevance Sort by last modified time
    Searched defs:c3 (Results 1 - 25 of 367) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gold/testsuite/
dwp_test_1b.cc 29 C3 c3; variable
dwp_test_1b.s 4 .globl c3
7 .type c3, @object
8 .size c3, 4
9 c3: label
63 .string "C3"
198 .string "c3"
475 .string "c3"
491 .string "C3"
547 .quad c3
plugin_common_test_2.c 31 int c3; variable
42 c3 = 30;
  /external/clang/test/Modules/
submodule-visibility-cycles.cpp 10 C2 c3; variable
  /external/libcxx/test/std/numerics/complex.number/complex.member.ops/
divide_equal_complex.pass.cpp 32 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);
minus_equal_complex.pass.cpp 32 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);
plus_equal_complex.pass.cpp 32 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);
times_equal_complex.pass.cpp 32 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);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.member.ops/
divide_equal_complex.pass.cpp 32 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);
minus_equal_complex.pass.cpp 32 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);
plus_equal_complex.pass.cpp 32 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);
times_equal_complex.pass.cpp 32 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/
move.pass.cpp 35 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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
move.pass.cpp 35 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/
pointer-conversion.c 7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} variable
  /external/testng/src/test/java/test/preserveorder/
C.java 20 public void c3() { method in class:C
21 log("C.c3");
  /external/clang/test/CodeGen/
constant-comparison.c 7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
  /external/clang/test/SemaCXX/
attr-cleanup-gcc.cpp 10 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}}
attr-cleanup.cpp 24 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/
instantiation-default-2.cpp 12 Constant<int*, &x> *c3; variable
  /external/libcxx/test/std/containers/sequences/array/
compare.pass.cpp 50 C c3 = {3, 2, 1}; local
53 test_compare(c1, c3);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
aix-weak-2a.s 5 .globl c3
6 c3 = 0xcccc3333 define
aix-weak-2b.s 5 .globl c3
6 c3 = 0xdddd3333 define
  /external/compiler-rt/test/tsan/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon17250
18 G = S.c1 + S.c3;
  /external/fio/lib/
bswap.h 9 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;

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>