• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /barrelfish-2018-10-04/usr/tests/xeon_phi_test/

Lines Matching defs:iface

30     char *iface = xeon_phi_domain_build_iface("ns_test_iface", disp_xeon_phi_id(),
33 char *iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_HOST,
37 debug_printf("Exact lookup: {%s}\n", iface);
38 err = xeon_phi_domain_lookup(iface, &result);
41 free(iface);
44 iface = xeon_phi_domain_build_iface("ns_test_iface", disp_xeon_phi_id(),
47 iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_HOST,
50 debug_printf("Core don't care lookup {%s}\n", iface);
51 err = xeon_phi_domain_lookup(iface, &result);
55 iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_DONT_CARE,
57 debug_printf("Domain don't care lookup: {%s}\n", iface);
58 err = xeon_phi_domain_lookup(iface, &result);
61 free(iface);
63 iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_DONT_CARE,
65 debug_printf("All don't care lookup: {%s}\n", iface);
66 err = xeon_phi_domain_lookup(iface, &result);
69 free(iface);
80 char *iface = xeon_phi_domain_build_iface("ns_test_iface", disp_xeon_phi_id(),
83 char *iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_HOST,
86 debug_printf("registering: {%s} with 0xcafebabe\n", iface);
88 err = xeon_phi_domain_register(iface, 0xcafebabe);
90 free(iface);
95 iface = xeon_phi_domain_build_iface("ns_test_iface", disp_xeon_phi_id(),
98 iface = xeon_phi_domain_build_iface("ns_test_iface", XEON_PHI_DOMAIN_HOST,
101 debug_printf("registering: {%s} with 0xdeadbeef\n", iface);
102 err = xeon_phi_domain_register(iface, 0xdeadbeef);
104 free(iface);