HomeSort by relevance Sort by last modified time
    Searched defs:cc (Results 26 - 50 of 327) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/s390x/
cdsg.c 16 int cc; // unused local
27 : "=d"(cc), "+QS" (_op1), "+QS" (_op2), "+QS" (_op3)
29 : "r0", "r1", "r2", "r3", "cc");
  /external/valgrind/main/none/tests/amd64/
smc1.c 89 void cc ( int x ) { dd(x, (void(*)(int)) &code[0]); } function
92 void bb ( int x ) { cc(x); }
  /external/valgrind/main/none/tests/s390x/
cds.c 13 int cc = 1 - expected_cc; local
35 : "=d" (cc), "+QS" (op1), "+QS" (op2), "+QS" (op3)
37 : "r0", "r1", "r2", "r3", "cc");
42 printf("cc = %d\n", cc);
45 if (cc != expected_cc) {
cdsg.c 18 int cc = 1 - expected_cc; local
40 : "=d" (cc), "+QS" (_op1), "+QS" (_op2), "+QS" (_op3)
42 : "r0", "r1", "r2", "r3", "cc");
47 printf("cc = %d\n", cc);
49 if (cc != expected_cc) {
clc.c 13 int cc; local
21 :"=d" (cc)
22 :"a" (a1), "a" (a2), "d" (l): "1", "cc");
23 return cc;
29 int cc; local
31 cc = clc(a1, a2, l);
32 printf("%d bytes:%d\n",l, cc);
clcle.c 17 register unsigned long cc asm ("7");
23 :"=d" (cc), "+d" (a1),"+d" (l1), "+d" (a3), "+d" (l3)
25 : "memory", "cc");
31 return cc;
38 int cc; local
41 cc = clcle(&a1, &l1, &a3, &l3, pad);
42 printf("cc: %d, l1: %lu(%lu) l3: %lu(%lu) diff1: %lu diff3: %lu\n",
43 cc, l1, _l1, l3, _l3, a1-(unsigned long) _a1, a3-(unsigned long) _a3);
flogr.c 18 unsigned int *cc)
30 : "2", "3", "cc");
32 *cc = psw >> 28;
34 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
35 value, *bitpos, *modval, *cc);
42 unsigned int *cc)
54 : "3", "cc");
56 *cc = psw >> 28;
58 printf("value = %lx, bitpos = %lu, modval = %lx, cc = %d\n",
59 value, *bitpos, *modval, *cc);
92 unsigned int cc; local
    [all...]
icm.c 8 : "1", "memory", "cc"); \
16 : "1", "memory", "cc"); \
30 int cc; local
36 icm(&a[0+offset], 0, what); cc = get_cc(); \
37 icm(&a[1+offset+cc], 1, what); cc = get_cc(); \
38 icm(&a[2+offset+cc], 2, what); cc = get_cc(); \
39 icm(&a[3+offset+cc], 3, what); cc = get_cc();
    [all...]
stcke.c 18 int cc; local
22 :"+Q" (*addr), "=d"(cc)::"cc");
24 return cc;
35 int cc; local
37 cc = stcke(start.buffer);
38 if (cc)
39 printf("cc != 0!\n");
42 cc = stcke(end.buffer);
43 if (cc)
    [all...]
tre.c 14 uint64_t cc; member in struct:__anon17392
21 int cc; local
33 :"=d"(cc),"+&d"(a1)
40 regs.cc = cc;
59 printf("Resulting cc is %"PRIu64" and the string is ", regs.cc);
77 run_test((char *)&touppercase, &buff, 1, 'a'); //cc = 1
81 run_test((char *)&touppercase, &buff, 3, 'a'); //cc = 1
82 run_test((char *)&touppercase, &buff, 3, 'f'); //cc =
    [all...]
troo.c 13 uint64_t cc; member in struct:__anon17393
35 register uint64_t cc asm("5");
37 cc = 2; /* cc result will never be 2 */
42 : "=d"(cc),"+&d"(desaddr)
51 regs.cc = cc;
74 if (regs.cc == 0 && regs.len != 0)
75 printf("length is not zero but cc is zero\n");
83 return regs.cc;
88 int cc; local
    [all...]
trot.c 13 uint64_t cc; member in struct:__anon17394
36 register uint64_t cc asm("5");
38 cc = 2; /* cc result will never be 2 */
43 : "=d"(cc),"+&d"(desaddr)
52 regs.cc = cc;
75 if (regs.cc == 0 && regs.len != 0)
76 printf("length is not zero but cc is zero\n");
84 return regs.cc;
90 int cc; local
    [all...]
trto.c 13 uint64_t cc; member in struct:__anon17395
35 register uint64_t cc asm("5");
37 cc = 2; /* cc result will never be 2 */
42 : "=d"(cc),"+&d"(desaddr)
51 regs.cc = cc;
74 if (regs.cc == 0 && regs.len != 0)
75 printf("length is not zero but cc is zero\n");
83 return regs.cc;
88 int cc; local
    [all...]
trtt.c 13 uint64_t cc; member in struct:__anon17396
36 register uint64_t cc asm("5");
38 cc = 2; /* cc result will never be 2 */
43 : "=d"(cc),"+d"(desaddr),"+d"(srcaddr)
52 regs.cc = cc;
76 if (regs.cc == 0 && regs.len != 0)
77 printf("length is not zero but cc is zero\n");
85 return regs.cc;
91 int cc; local
    [all...]
cu24.c 18 uint32_t cc; member in struct:__anon17386
57 int cc = 42; local
70 : "+d"(dest), "+d"(source), "=d"(cc),
73 : "memory", "cc");
80 regs.cc = cc;
110 printf(" cc = %d\n", result.cc);
166 /* When both operands are exhausted, cc=0 takes precedence.
cu24_1.c 18 uint32_t cc; member in struct:__anon17387
57 int cc = 42; local
70 : "+d"(dest), "+d"(source), "=d"(cc),
73 : "memory", "cc");
80 regs.cc = cc;
110 printf(" cc = %d\n", result.cc);
166 /* When both operands are exhausted, cc=0 takes precedence.
cu42.c 15 uint32_t cc; member in struct:__anon17389
60 int cc = 42; local
73 : "+d"(dest), "+d"(source), "=d"(cc),
76 : "memory", "cc");
83 regs.cc = cc;
107 printf(" cc = %d\n", result.cc);
167 /* When both operands are exhausted, cc=0 takes precedence.
182 run_test(buff, 0, invalid, sizeof invalid); // cc =
    [all...]
  /external/valgrind/main/none/tests/x86/
smc1.c 72 void cc ( int x ) { dd(x, (void(*)(int)) &code[0]); } function
75 void bb ( int x ) { cc(x); }
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
ConfirmationCallbackTest.java 34 ConfirmationCallback cc; field in class:ConfirmationCallbackTest
55 cc = new ConfirmationCallback(mt[i], ot[1], dopt[1]);
67 cc = new ConfirmationCallback(3, ot[1], dopt[1]);
71 cc = new ConfirmationCallback(mt[1], 3, dopt[1]);
75 cc = new ConfirmationCallback(mt[1], ot[1], 4);
88 cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, ot[0], dopt[0]);
91 cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, ot[0], dopt[1]);
94 cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, ot[0], dopt[2]);
98 cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, ot[0], dopt[3]);
111 cc = new ConfirmationCallback(ConfirmationCallback.INFORMATION, ot[1], dopt[0])
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoringTest.java 107 CompositeChange cc = new CompositeChange("Combined from unit test", local
109 cc.markAsSynthetic();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 74 final ClusterChain cc = new ClusterChain(fat, false); local
75 cc.setChainLength(1);
77 bs.setRootDirFirstCluster(cc.getStartCluster());
80 new ClusterChainDirectory(cc, true);
  /dalvik/vm/jdwp/
JdwpMain.cpp 48 ssize_t cc = TEMP_FAILURE_RETRY(write(clientSock, expandBufGetBuffer(pReply), local
52 return cc;
  /development/tools/jdwpspy/
Main.cpp 32 01234567: 00 11 22 33 44 55 66 77 88 99 aa bb cc dd ee ff 0123456789abcdef\n
137 int cc = run("localhost", connectPort, listenPort); local
139 return (cc != 0);
  /external/javassist/src/main/javassist/
CtConstructor.java 247 CtClass cc = declaringClass; local
248 cc.checkModify();
257 Javac jv = new Javac(b, cc);
266 methodInfo.rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile2());
CtNewConstructor.java 100 CtConstructor cc = new CtConstructor(parameters, declaring); local
101 cc.setExceptionTypes(exceptions);
102 cc.setBody(body);
103 return cc;

Completed in 222 milliseconds

12 3 4 5 6 7 8 91011>>