Lines Matching refs:cc
45 int cc; in mvpg() local
51 : "=&d" (cc) : "a" (dest), "a" (src), "d" (reg0), [bogus_cc] "d" (bogus_cc) in mvpg()
53 return cc; in mvpg()
155 int cc; in test_success() local
159 cc = mvpg(0, buffer, source); in test_success()
160 report(page_ok(buffer) && !cc, "Supervisor state MVPG successful"); in test_success()
164 cc = mvpg(0, buffer, source); in test_success()
166 report(page_ok(buffer) && !cc, "Problem state MVPG successful"); in test_success()
174 int i, cc; in test_small_loop() local
180 cc = mvpg(0, fresh, source); in test_small_loop()
181 report(page_ok(fresh) && !cc, "cold: %p, %p", source, fresh); in test_small_loop()
187 cc = mvpg(0, dest, source); in test_small_loop()
188 report(page_ok(dest) && !cc, "warm: %p, %p", source, dest); in test_small_loop()
196 int cc; in test_mmu_prot() local
203 cc = mvpg(0, fresh, source); in test_mmu_prot()
204 report(page_ok(fresh) && !cc, "source read only"); in test_mmu_prot()
261 cc = mvpg(CCO, fresh, source); in test_mmu_prot()
262 report(cc == 1, "destination invalid"); in test_mmu_prot()
266 cc = mvpg(CCO, fresh, source); in test_mmu_prot()
267 report(cc == 2, "source invalid"); in test_mmu_prot()
271 cc = mvpg(CCO, fresh, source); in test_mmu_prot()
272 report(cc == 2, "source and destination invalid"); in test_mmu_prot()