Lines Matching refs:cc
64 int cc; in test_invalid() local
71 cc = sigp(INVALID_CPU_ADDRESS, c->order, 0, &status); in test_invalid()
72 report(cc == 3, "%s", c->message); in test_invalid()
77 cc = smp_sigp(1, c->order, 0, &status); in test_invalid()
78 report(cc == 1, "%s", c->message); in test_invalid()
200 int cc; in test_store_status() local
206 cc = sigp(INVALID_CPU_ADDRESS, SIGP_STORE_STATUS_AT_ADDRESS, (uintptr_t)status, &r); in test_store_status()
207 report(cc == 3, "returned with CC = 3"); in test_store_status()
254 int cc; in test_set_prefix() local
269 cc = smp_sigp(1, SIGP_SET_PREFIX, (unsigned long)new_lc, &status); in test_set_prefix()
270 report(cc == 1, "CC = 1"); in test_set_prefix()
287 cc = sigp(INVALID_CPU_ADDRESS, SIGP_SET_PREFIX, (unsigned long)new_lc, &status); in test_set_prefix()
288 report(cc == 3, "CC = 3"); in test_set_prefix()