/external/libcxx/test/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);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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/clang/test/Sema/ |
pointer-conversion.c | 7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}} variable
|
/external/openssl/crypto/bn/asm/ |
s390x.S | 331 #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,c1,c2) [all...] |
x86_64-gcc.c | 356 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=0 460 BN_ULONG c1,c2,c3; local 500 BN_ULONG c1,c2,c3; local 576 BN_ULONG c1,c2,c3; local [all...] |
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/ |
x86_64-gcc.c | 367 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 = 0 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/ |
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}}
|
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}}
|
/external/clang/test/Parser/ |
c1x-alignas.c | 6 char _Alignas(16) c3;
|
/external/openssl/crypto/bn/ |
bn_asm.c | 565 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=0 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/ |
constant-comparison.c | 7 int *c3 = !(3 <= 4.0) ? &b : &a; variable
|
arm64-abi-vector.c | 24 __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 = va_arg(ap, __double3) local 232 __char3 c3 = va_arg(ap, __char3); local [all...] |
arm-abi-vector.c | 32 __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 = va_arg(ap, StructWithVec) local [all...] |
/external/libcxx/test/containers/sequences/deque/deque.cons/ |
move_assign.pass.cpp | 34 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 = std::move(c1) [all...] |
move.pass.cpp | 34 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());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/ |
move_assign.pass.cpp | 34 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 = std::move(c1) [all...] |
/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;
|
/external/chromium_org/third_party/boringssl/src/crypto/bn/ |
generic.c | 826 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 = 0 934 BN_ULONG c1, c2, c3; local 978 BN_ULONG c1, c2, c3; local 1058 BN_ULONG c1, c2, c3; local [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_TransformDequantLumaDCFromPair.c | 90 int c3 = pData[i+3]; local 91 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); 92 pData[i+1] = (OMX_S16)(c0+c1-c2-c3); 93 pData[i+2] = (OMX_S16)(c0-c1-c2+c3); 94 pData[i+3] = (OMX_S16)(c0-c1+c2-c3); 103 int c3 = pData[i+12]; local 104 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); 105 pData[i+4] = (OMX_S16)(c0+c1-c2-c3); 106 pData[i+8] = (OMX_S16)(c0-c1-c2+c3); 107 pData[i+12] = (OMX_S16)(c0-c1+c2-c3); [all...] |