Searched refs:c3 (Results 1 - 25 of 237) sorted by relevance

12345678910

/external/libcxx/test/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);
H A Dassignment_complex.pass.cpp29 std::complex<X> c3(3.5, -4.5);
30 c = c3;
/external/clang/test/Sema/
H A Dpointer-conversion.c7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} variable
/external/openssl/crypto/bn/asm/
H A Ds390x.S331 #define c3 %r8 define
333 #define mul_add_c(ai,bi,c1,c2,c3) \
338 alcgr c3,zero
349 lghi c3,0
352 mul_add_c(0,0,c1,c2,c3);
356 mul_add_c(0,1,c2,c3,c1);
357 mul_add_c(1,0,c2,c3,c1);
361 mul_add_c(2,0,c3,c1,c2);
362 mul_add_c(1,1,c3,c1,c2);
363 mul_add_c(0,2,c3,c
[all...]
H A Dx86_64-gcc.c356 BN_ULONG c1,c2,c3; local
360 c3=0;
361 mul_add_c(a[0],b[0],c1,c2,c3);
364 mul_add_c(a[0],b[1],c2,c3,c1);
365 mul_add_c(a[1],b[0],c2,c3,c1);
368 mul_add_c(a[2],b[0],c3,c1,c2);
369 mul_add_c(a[1],b[1],c3,c1,c2);
370 mul_add_c(a[0],b[2],c3,c1,c2);
371 r[2]=c3;
372 c3
460 BN_ULONG c1,c2,c3; local
500 BN_ULONG c1,c2,c3; local
576 BN_ULONG c1,c2,c3; local
[all...]
H A Dbn-mips.S757 multu $12,$8 # mul_add_c(a[0],b[0],c1,c2,c3);
767 multu $12,$9 # mul_add_c(a[0],b[1],c2,c3,c1);
776 multu $13,$8 # mul_add_c(a[1],b[0],c2,c3,c1);
785 multu $14,$8 # mul_add_c(a[2],b[0],c3,c1,c2);
795 multu $13,$9 # mul_add_c(a[1],b[1],c3,c1,c2);
802 multu $12,$10 # mul_add_c(a[0],b[2],c3,c1,c2);
810 multu $12,$11 # mul_add_c(a[0],b[3],c1,c2,c3);
815 sw $7,2*4($4) # r[2]=c3;
821 multu $13,$10 # mul_add_c(a[1],b[2],c1,c2,c3);
829 multu $14,$9 # mul_add_c(a[2],b[1],c1,c2,c3);
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dx86_64-gcc.c367 BN_ULONG c1, c2, c3; local
371 c3 = 0;
372 mul_add_c(a[0], b[0], c1, c2, c3);
375 mul_add_c(a[0], b[1], c2, c3, c1);
376 mul_add_c(a[1], b[0], c2, c3, c1);
379 mul_add_c(a[2], b[0], c3, c1, c2);
380 mul_add_c(a[1], b[1], c3, c1, c2);
381 mul_add_c(a[0], b[2], c3, c1, c2);
382 r[2] = c3;
383 c3
470 BN_ULONG c1, c2, c3; local
509 BN_ULONG c1, c2, c3; local
584 BN_ULONG c1, c2, c3; local
[all...]
/external/clang/test/SemaCXX/
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}}
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}}
/external/clang/test/Parser/
H A Dc1x-alignas.c6 char _Alignas(16) c3;
/external/openssl/crypto/bn/
H A Dbn_asm.c565 BN_ULONG c1,c2,c3; local
569 c3=0;
570 mul_add_c(a[0],b[0],c1,c2,c3);
573 mul_add_c(a[0],b[1],c2,c3,c1);
574 mul_add_c(a[1],b[0],c2,c3,c1);
577 mul_add_c(a[2],b[0],c3,c1,c2);
578 mul_add_c(a[1],b[1],c3,c1,c2);
579 mul_add_c(a[0],b[2],c3,c1,c2);
580 r[2]=c3;
581 c3
674 BN_ULONG c1,c2,c3; local
719 BN_ULONG c1,c2,c3; local
800 BN_ULONG c1,c2,c3; local
[all...]
/external/clang/test/CodeGen/
H A Dconstant-comparison.c7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
H A Darm64-abi-vector.c24 __char3 c3 = va_arg(ap, __char3); local
25 sum = sum + c3.x + c3.y;
127 __short3 c3 = va_arg(ap, __short3); local
128 sum = sum + c3.x + c3.y;
171 __int3 c3 = va_arg(ap, __int3); local
172 sum = sum + c3.x + c3.y;
215 __double3 c3 local
232 __char3 c3 = va_arg(ap, __char3); local
284 test(__char3 *c3, __char5 *c5, __char9 *c9, __char19 *c19, __short3 *s3, __short5 *s5, __int3 *i3, __int5 *i5, __double3 *d3) argument
292 args_vec_3c(int fixed, __char3 c3) argument
354 args_vec_3s(int fixed, __short3 c3) argument
386 args_vec_3i(int fixed, __int3 c3) argument
416 args_vec_3d(int fixed, __double3 c3) argument
[all...]
H A Darm-abi-vector.c32 __int2 c3 = va_arg(ap, __int2); local
33 sum = sum + c3.x + c3.y;
58 __char3 c3 = va_arg(ap, __char3); local
59 sum = sum + c3.x + c3.y;
182 __short3 c3 = va_arg(ap, __short3); local
183 sum = sum + c3.x + c3.y;
251 StructWithVec c3 local
[all...]
/external/libcxx/test/containers/sequences/deque/deque.cons/
H A Dmove_assign.pass.cpp34 std::deque<MoveOnly, A> c3(A(5));
35 c3 = std::move(c1);
36 assert(c2 == c3);
38 assert(c3.get_allocator() == A(5));
50 std::deque<MoveOnly, A> c3(A(6));
51 c3 = std::move(c1);
52 assert(c2 == c3);
54 assert(c3.get_allocator() == A(6));
66 std::deque<MoveOnly, A> c3(A(6));
67 c3
[all...]
H A Dmove.pass.cpp34 std::deque<MoveOnly, A> c3 = std::move(c1); local
35 assert(c2 == c3);
37 assert(c3.get_allocator() == c1.get_allocator());
49 std::deque<MoveOnly, A> c3 = std::move(c1); local
50 assert(c2 == c3);
52 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());
H A Dmove_alloc.pass.cpp34 std::deque<MoveOnly, A> c3(std::move(c1), A(3));
35 assert(c2 == c3);
36 assert(c3.get_allocator() == A(3));
49 std::deque<MoveOnly, A> c3(std::move(c1), A(1));
50 assert(c2 == c3);
51 assert(c3.get_allocator() == A(1));
64 std::deque<MoveOnly, A> c3(std::move(c1), A(3));
65 assert(c2 == c3);
66 assert(c3.get_allocator() == A(3));
80 std::deque<MoveOnly, A> c3(st
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-618.js62 var c3 = new C3();
63 assertEquals(23, c3.x);
64 assertEquals("undefined", typeof c3.y);
69 var c3 = new C3();
70 assertEquals("undefined", typeof c3.x);
71 assertEquals(23, c3.y);
/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/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dgeneric.c826 BN_ULONG c1, c2, c3; local
830 c3 = 0;
831 mul_add_c(a[0], b[0], c1, c2, c3);
834 mul_add_c(a[0], b[1], c2, c3, c1);
835 mul_add_c(a[1], b[0], c2, c3, c1);
838 mul_add_c(a[2], b[0], c3, c1, c2);
839 mul_add_c(a[1], b[1], c3, c1, c2);
840 mul_add_c(a[0], b[2], c3, c1, c2);
841 r[2] = c3;
842 c3
934 BN_ULONG c1, c2, c3; local
978 BN_ULONG c1, c2, c3; local
1058 BN_ULONG c1, c2, c3; local
[all...]
/external/compiler-rt/test/tsan/
H A Dtsan-vs-gvn.cc12 char c1, c2, c3, c4; member in struct:__anon19660
18 G = S.c1 + S.c3;
/external/chromium_org/third_party/skia/src/utils/
H A DSkCubicInterval.cpp10 static SkScalar eval_cubic(SkScalar c1, SkScalar c2, SkScalar c3, argument
12 return SkScalarMul(SkScalarMul(SkScalarMul(c3, t) + c2, t) + c1, t);
15 static SkScalar find_cubic_t(SkScalar c1, SkScalar c2, SkScalar c3, argument
23 SkScalar x = eval_cubic(c1, c2, c3, t);

Completed in 5010 milliseconds

12345678910