/src/sys/arch/x86/include/ |
mtrr.h | 117 struct mtrr_funcs { struct 127 extern const struct mtrr_funcs i686_mtrr_funcs; 128 extern const struct mtrr_funcs k6_mtrr_funcs; 129 extern const struct mtrr_funcs *mtrr_funcs; 131 #define mtrr_init_cpu(ci) mtrr_funcs->init_cpu(ci) 132 #define mtrr_reload_cpu(ci) mtrr_funcs->reload_cpu(ci) 133 #define mtrr_clean(p) mtrr_funcs->clean(p) 134 #define mtrr_set(mp,n,p,f) mtrr_funcs->set(mp,n,p,f) 135 #define mtrr_get(mp,n,p,f) mtrr_funcs->get(mp,n,p,f [all...] |
/src/sys/arch/i386/i386/ |
mtrr_k6.c | 74 const struct mtrr_funcs k6_mtrr_funcs = { 153 mtrr_funcs = &k6_mtrr_funcs;
|
machdep.c | 212 const struct mtrr_funcs *mtrr_funcs; variable in typeref:typename:const struct mtrr_funcs *
|
/src/sys/arch/x86/x86/ |
ipi.c | 198 if (mtrr_funcs != NULL) {
|
mtrr_i686.c | 127 const struct mtrr_funcs i686_mtrr_funcs = { 344 mtrr_funcs = &i686_mtrr_funcs;
|
sys_machdep.c | 480 if (mtrr_funcs == NULL) 515 if (mtrr_funcs == NULL)
|
cpu.c | 732 mtrr_funcs = &k6_mtrr_funcs;
|
/src/sys/arch/x86/acpi/ |
acpi_wakeup.c | 415 if (mtrr_funcs != NULL)
|
/src/sys/arch/amd64/amd64/ |
netbsd32_machdep.c | 682 if (mtrr_funcs == NULL) 746 if (mtrr_funcs == NULL)
|
machdep.c | 243 const struct mtrr_funcs *mtrr_funcs; variable in typeref:typename:const struct mtrr_funcs *
|