Home | History | Annotate | Download | only in s390x

Lines Matching defs:cc

14    uint64_t cc;
21 int cc;
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 = 0
83 run_test((char *)&touppercase, &buff, 8, 'l'); //cc = 0
86 run_test((char *)&tolowercase, &buff, 3, 'A'); // cc = 1
87 run_test((char *)&tolowercase, &buff, 3, 'C'); // cc = 0
88 run_test((char *)&tolowercase, &buff, 8, 0x0); // cc = 0