/toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/ |
expected_comparison_errors.s | 0 CC = A0 == A0; 2 CC = A1 == A1; 3 CC = A1 == A0; 4 cc = A0 < a0; define 5 cc = A1 < a1; define 6 cc = A1 < a0; define 7 cc = a0 <= a0; define 8 cc = a1 <= a1; define 9 cc = a1 <= a0; define 10 CC = R0 == P0 [all...] |
/bionic/libc/upstream-openbsd/lib/libc/locale/ |
btowc.c | 37 char cc; local 48 cc = (char)c; 49 if (mbrtowc(&wc, &cc, 1, &mbs) > 1)
|
/external/clang/test/CodeGen/ |
2007-10-30-Volatile.c | 4 volatile int cc = 0; local 5 p += cc;
|
/external/clang/test/CodeGenCXX/ |
cxx1y-generic-lambdas.cpp | 10 custom_copy_ctor<void> cc; local 11 [cc](auto){}(1);
|
/external/valgrind/none/tests/s390x/ |
cs.c | 12 int cc = 1 - expected_cc; local 22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3) 24 : "cc"); 29 printf("cc = %d\n", cc); 31 if (cc != expected_cc) {
|
csg.c | 12 int cc = 1 - expected_cc; local 22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3) 24 : "cc"); 29 printf("cc = %d\n", cc); 31 if (cc != expected_cc) {
|
laa.c | 12 int cc = 1 - expected_cc; local 22 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3) 24 : "cc"); 29 printf("cc = %d\n", cc); 31 if (cc != expected_cc) { 35 printf("cc = 0, but result != 0\n"); 38 printf("cc = 1, but result >= 0\n"); 41 printf("cc = 2, but result <= 0\n"); 43 /* the test for cc = 3 is left as an exercise for the reader. * [all...] |
srst.c | 16 int cc; local 22 :"+d" (start), "+d" (next), "=d" (cc) :"d" (what): "cc"); 23 *__cc = cc; 31 int cc; local 37 :"+d" (start), "+d" (what), "=d" (cc) :: "cc"); 38 *__cc = cc; 45 int cc; local 49 srst3((char *)0x12345678,(char *)0x12345678,'0', &cc); [all...] |
stck.c | 8 int cc; local 12 :"=Q" (*addr), "=d"(cc)::"memory", "cc"); 13 return cc; 24 int cc; local 27 cc = stck(&start); 28 if (cc) 29 printf("cc != 0!\n"); 31 cc = stck(&end); 32 if (cc) [all...] |
stckf.c | 8 int cc; local 12 :"=Q" (*addr), "=d"(cc)::"memory", "cc"); 13 return cc; 24 int cc; local 27 cc = stckf(&start); 28 if (cc) 29 printf("cc != 0!\n"); 31 cc = stckf(&end); 32 if (cc) [all...] |
stfle.c | 11 int cc; local 16 : "=m" (*hoststfle), "+d" (__nr), "=d" (cc) : : "cc", "memory"); 18 printf("the value of cc is %d and #double words is %llu\n", cc, __nr + 1);
|
/build/soong/cc/ |
strip.go | 15 package cc package
|
androidmk.go | 15 package cc package
|
check.go | 15 package cc package 24 "android/soong/cc/config"
|
makevars.go | 15 package cc package 23 "android/soong/cc/config" 219 ctx.Strict(makePrefix+"CC", gccCmd(toolchain, "gcc"))
|
tidy.go | 15 package cc package 22 "android/soong/cc/config"
|
toolchain_library.go | 15 package cc package
|
/external/toybox/toys/other/ |
chvt.c | 25 char *consoles[]={"/dev/console", "/dev/vc/0", "/dev/tty", NULL}, **cc; local 28 for (cc = consoles; *cc; cc++) 29 if (-1 != (fd = open(*cc, O_RDWR))) break; 32 if (!*cc || fd < 0 || ioctl(fd, 0x5606, vtnum) || ioctl(fd, 0x5607, vtnum))
|
/external/clang/test/CXX/class/class.local/ |
p1-0x.cpp | 8 int cc = c; member in struct:C
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.modifiers/ |
resize_size_value.pass.cpp | 93 ConstructController* cc = getConstructController(); local 94 cc->reset(); 97 cc->expect<int const&>(6); 99 assert(!cc->unchecked());
|
/external/pcre/dist2/src/ |
pcre2_pattern_info.c | 256 PCRE2_SPTR cc; local 273 cc = (PCRE2_SPTR)((uint8_t *)re + sizeof(pcre2_real_code)) 279 switch (*cc) 340 cc += PRIV(OP_lengths)[*cc]; 342 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]); 359 cc += PRIV(OP_lengths)[*cc]; [all...] |
/external/valgrind/memcheck/tests/s390x/ |
cs.c | 12 int cc = 1; local 18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3) 20 : "cc");
|
csg.c | 12 int cc = 1; local 18 : "=d" (cc), "+Q" (op2), "+d"(op1), "+d"(op3) 20 : "cc");
|
/libcore/ojluni/src/main/java/sun/misc/ |
IOUtils.java | 65 int cc = is.read(output, pos, bytesToRead); local 66 if (cc < 0) { 76 pos += cc;
|
/external/javassist/sample/ |
Test.java | 28 CtClass cc = pool.get("sample.Test"); local 30 cc.getDeclaredMethod("g"); 37 CtMethod fMethod = cc.getDeclaredMethod("f"); 38 CtMethod gMethod = CtNewMethod.copy(fMethod, "g", cc, null); 39 cc.addMethod(gMethod); 40 cc.writeFile(); // update the class file
|