Home | History | Annotate | Download | only in s390x

Lines Matching defs:cc

13    uint64_t cc;
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;
95 cc = run_test(NULL, NULL, NULL, 0, 0x0);
96 if (cc != 0)
97 printf("cc not updated properly:%d", cc);
99 cc = run_test(&src, &tran_table, &des, 0, 0x0);
100 if (cc != 0)
101 printf("cc not updated properly:%d",cc);
103 cc = run_test(&src, &tran_table, &des, 0, 0xcaca);
104 if (cc != 0)
105 printf("cc not updated properly:%d",cc);
108 cc = run_test(&src, &tran_table, &des, 3, 0xeeee);
109 if (cc != 0)
110 printf("cc not updated properly:%d",cc);
112 cc = run_test(&src, &tran_table, &des, 10, 0xeeee);
113 if (cc != 0)
114 printf("cc not updated properly:%d",cc);
119 cc = run_test(&src, &tran_table, &des, 5, 0xffff);
120 if (cc != 1)
121 printf("cc not updated properly:%d",cc);
123 cc = run_test(&src, &tran_table, &des, 5, 0xcccc);
124 if (cc != 1)
125 printf("cc not updated properly:%d",cc);
127 cc = run_test(&src, &tran_table, &des, 10, 0xeaea);
128 if (cc != 1)
129 printf("cc not updated properly:%d",cc);