Searched refs:cc (Results 1 - 25 of 1328) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dpr65136.c4 int foo(unsigned int cc )
7 while ( cc >> 16 )
9 cc = (cc & 0xffff) + (cc >> 16);
12 return ( (unsigned short)(cc) ) == ((unsigned short)(-1));
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A D20060218-1.c6 register int cc __asm ("cc"); /* { dg-error "invalid register name" } */
7 __asm ("" : : "r" (cc) : "cc");
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Derr3.C5 class cc { class
7 cc() function in class:cc
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dcoarray_lib_move_alloc_1.f9013 subroutine ma_array (cc, dd)
14 integer, allocatable :: cc(:)[:], dd(:)[:] local in subroutine:ma_array
15 call move_alloc (cc, dd)
22 ! { dg-final { scan-tree-dump-times "\\*dd = \\*cc" 1 "original" } }
H A Dblockdata_3.f9010 common /c/ d(5), cc local
15 type (c_t) :: cc variable
17 data cc%i /5/
20 common /c/ d(5), cc local
25 type (c_t) :: cc variable
27 print *, cc
H A Dequiv_8.f906 equivalence (aa,aaaaa) (bb,cc) ! { dg-error "Expecting a comma in EQUIVALENCE" }
/haiku-buildtools/gcc/gmp/cxx/
H A DMakefile.am28 isfuns.cc ismpf.cc ismpq.cc ismpz.cc ismpznw.cc \
29 osdoprnti.cc osfuns.cc osmpf.cc osmpq.cc osmpz.cc
[all...]
/haiku-buildtools/gcc/libsanitizer/sanitizer_common/
H A DMakefile.am22 sanitizer_allocator.cc \
23 sanitizer_common.cc \
24 sanitizer_common_libcdep.cc \
25 sanitizer_coverage_libcdep.cc \
26 sanitizer_coverage_mapping_libcdep.cc \
27 sanitizer_deadlock_detector1.cc \
28 sanitizer_deadlock_detector2.cc \
29 sanitizer_flags.cc \
30 sanitizer_libc.cc \
31 sanitizer_libignore.cc \
[all...]
/haiku-buildtools/gcc/libstdc++-v3/src/c++11/
H A DMakefile.am33 ctype_configure_char.cc \
34 ctype_members.cc
36 ctype_configure_char.cc: ${glibcxx_srcdir}/$(OS_INC_SRCDIR)/ctype_configure_char.cc
37 $(LN_S) ${glibcxx_srcdir}/$(OS_INC_SRCDIR)/ctype_configure_char.cc . || true
39 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
44 cow-locale_init.cc \
45 cow-shim_facets.cc \
46 cxx11-hash_tr1.cc \
47 cxx11-ios_failure.cc \
[all...]
/haiku-buildtools/legacy/gcc/libio/testsuite/libio.tests/
H A Dtiomanip.exp1 test_libio tiomanip.cc "" "" tiomanip.exp ""
H A Dtiomisc.exp1 test_libio tiomisc.cc "-w" "" tiomisc.exp ""
/haiku-buildtools/gcc/libsanitizer/tsan/
H A DMakefile.am15 tsan_clock.cc \
16 tsan_fd.cc \
17 tsan_flags.cc \
18 tsan_ignoreset.cc \
19 tsan_interceptors.cc \
20 tsan_interface_ann.cc \
21 tsan_interface_atomic.cc \
22 tsan_interface.cc \
23 tsan_interface_java.cc \
24 tsan_md5.cc \
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr27571.c11 int cc = 0; local
13 cc = *storage;
16 if (r3isseparator(cc))
19 r3isdigit(cc);
23 r3decimalvalue(cc);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.fortran-torture/execute/
H A Dintrinsic_matmul.f9011 real, dimension (4,2) :: cc variable in program:intrinsic_matmul
28 cc = 42.
29 cc(1:2,1:2) = matmul(aa, transpose(aa))
30 if (any(cc(1:2,1:2) .ne. reshape((/ 1.0, 1.0, 1.0, 2.0 /), (/2,2/)))) call abort
31 if (any(cc(3:4,1:2) .ne. 42.)) call abort
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dudlit-inline.C6 operator"" _thing1(char cc) argument
7 { return 42 * cc; }
9 int operator"" _thing2(char cc);
14 friend operator"" _thing2(char cc) argument
15 { return 42 * cc; }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/abi/
H A Dpr42230.cc10 int cc; local
12 char* ret = abi::__cxa_demangle("e", 0, &length, &cc);
14 assert( (cc < 0 && !ret) || (ret && length) );
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/s390/
H A Dhtm-builtins-compile-1.c18 int cc; local
27 cc = __builtin_tbegin ((void *)0x12345678);
28 cc = __builtin_tbegin (tdb);
29 cc = __builtin_tbegin (&global_tdb);
30 cc = __builtin_tbegin ((void *)(long)(reg + 0x12345678));
31 cc = __builtin_tbegin ((void *)(long)(reg));
36 cc = __builtin_tbegin_nofloat ((void *)0x12345678);
37 cc = __builtin_tbegin_nofloat (tdb);
38 cc = __builtin_tbegin_nofloat (&global_tdb);
39 cc
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/c_strings/char/
H A D2.cc35 const char* cc; local
39 cc = strchr(ccarray1, '/');
40 cc = strrchr(ccarray1, 'c');
41 cc = strpbrk(ccarray1, ccarray2);
45 cc = cc;
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/
H A Dpr59482.C3 friend class cc;
7 class cc : aa::bb {}; class in inherits:aa::bb
/haiku-buildtools/gcc/libsanitizer/asan/
H A DMakefile.am19 asan_activation.cc \
20 asan_allocator2.cc \
21 asan_debugging.cc \
22 asan_fake_stack.cc \
23 asan_globals.cc \
24 asan_interceptors.cc \
25 asan_linux.cc \
26 asan_mac.cc \
27 asan_malloc_linux.cc \
28 asan_malloc_mac.cc \
[all...]
/haiku-buildtools/binutils/gas/testsuite/gas/bfin/
H A Dcontrol_code.s4 cc = r6 == r0; define
7 cc = r0 < r1; define
10 cc = r5 <= 3; define
11 cc = r6 < r7 (iu); define
12 cc = R7 < 4 (iu); define
19 cc = sp == p0; define
24 cc = r3 <= 3; define
28 cc = r2 <= 0 (IU); define
34 cc = A0 < a1; define
35 cc define
54 cc = AZ; define
62 cc = av1s; define
69 cc = !cc; define
[all...]
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/bfin/
H A Dcontrol_code.s4 cc = r6 == r0; define
7 cc = r0 < r1; define
10 cc = r5 <= 3; define
11 cc = r6 < r7 (iu); define
12 cc = R7 < 4 (iu); define
19 cc = sp == p0; define
24 cc = r3 <= 3; define
28 cc = r2 <= 0 (IU); define
34 cc = A0 < a1; define
35 cc define
54 cc = AZ; define
62 cc = av1s; define
69 cc = !cc; define
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/powerpc/
H A Dswaps-p8-15.c19 vector float cc[N][4] = {0}; variable
25 cc[i][0] = vec_mul(vec_splats(cb[i][0][0]), ca[i][0]);
26 cc[i][0] = vec_madd(cc[i][0],vec_splats(cb[i][0][1]), ca[i][1]);
27 cc[i][0] = vec_madd(cc[i][0],vec_splats(cb[i][0][2]), ca[i][2]);
28 cc[i][0] = vec_madd(cc[i][0],vec_splats(cb[i][0][3]), ca[i][3]);
30 cc[i][1] = vec_mul(vec_splats(cb[i][1][0]), ca[i][0]);
31 cc[
[all...]
H A Dswaps-p8-16.c18 vector float cc[N][4] = {0}; variable
28 cc[i][0] = vec_mul(vec_splats(brow[0]), ca[i][0]);
29 cc[i][0] = vec_madd(cc[i][0],vec_splats(brow[1]), ca[i][1]);
30 cc[i][0] = vec_madd(cc[i][0],vec_splats(brow[2]), ca[i][2]);
31 cc[i][0] = vec_madd(cc[i][0],vec_splats(brow[3]), ca[i][3]);
34 cc[i][1] = vec_mul(vec_splats(brow[0]), ca[i][0]);
35 cc[
[all...]
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A DMakefile.am48 array_type_info.cc \
49 atexit_arm.cc \
50 atexit_thread.cc \
51 bad_alloc.cc \
52 bad_array_length.cc \
53 bad_array_new.cc \
54 bad_cast.cc \
55 bad_typeid.cc \
56 class_type_info.cc \
57 del_op.cc \
[all...]

Completed in 282 milliseconds

1234567891011>>