Home | History | Annotate | Download | only in s390x

Lines Matching defs:cc

13    uint64_t cc;
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;
93 cc = run_test(NULL, NULL, NULL, 0, 0x0);
94 if (cc != 0)
95 printf("cc not updated properly:%d", cc);
97 cc = run_test(&src, &tran_table, &des, 0, 0x0);
98 if (cc != 0)
99 printf("cc not updated properly:%d",cc);
101 cc = run_test(&src, &tran_table, &des, 0, 0xca);
102 if (cc != 0)
103 printf("cc not updated properly:%d",cc);
106 cc = run_test(&src, &tran_table, &des, 12, 0xee);
107 if (cc != 0)
108 printf("cc not updated properly:%d",cc);
110 cc = run_test(&src, &tran_table, &des, 20, 0x00);
111 if (cc != 0)
112 printf("cc not updated properly:%d",cc);
117 cc = run_test(&src, &tran_table, &des, 12, 0xff);
118 if (cc != 1)
119 printf("cc not updated properly:%d",cc);
121 cc = run_test(&src, &tran_table, &des, 12, 0xcc);
122 if (cc != 1)
123 printf("cc not updated properly:%d",cc);
125 cc = run_test(&src, &tran_table, &des, 20, 0xea);
126 if (cc != 1)
127 printf("cc not updated properly:%d",cc);