| /NextBSD/sys/dev/mii/ |
| HD | miidevs | 119 model AGERE ET1011 0x0001 ET1011 10/100/1000baseT PHY 120 model AGERE ET1011C 0x0004 ET1011C 10/100/1000baseT PHY 123 model ALTIMA ACXXX 0x0001 ACXXX 10/100 media interface 124 model ALTIMA AC101L 0x0012 AC101L 10/100 media interface 125 model ALTIMA AC101 0x0021 AC101 10/100 media interface 127 model ALTIMA Am79C875 0x0014 Am79C875 10/100 media interface 128 model ALTIMA Am79C874 0x0021 Am79C874 10/100 media interface 132 model yyAMD 79C972_10T 0x0001 Am79C972 internal 10BASE-T interface 133 model yyAMD 79c973phy 0x0036 Am79C973 internal 10/100 media interface 134 model yyAMD 79c901 0x0037 Am79C901 10BASE-T interface [all …]
|
| /NextBSD/sys/dev/acpi_support/ |
| HD | acpi_asus.c | 123 struct acpi_asus_model *model; member 545 struct acpi_asus_model *model; in acpi_asus_probe() local 595 sc->model = &acpi_samsung_models[0]; in acpi_asus_probe() 603 sc->model = &acpi_eeepc_models[0]; in acpi_asus_probe() 617 for (model = acpi_asus_models; model->name != NULL; model++) { in acpi_asus_probe() 618 if (strncmp(Obj->String.Pointer, model->name, 3) == 0) { in acpi_asus_probe() 625 sc->model = model; in acpi_asus_probe() 641 else if (strncmp(model->name, "xxN", 3) == 0 && in acpi_asus_probe() 645 else if (strncmp(model->name, "A1x", 3) == 0 && in acpi_asus_probe() 648 else if (strncmp(model->name, "A2x", 3) == 0 && in acpi_asus_probe() [all …]
|
| /NextBSD/contrib/file/magic/Magdir/ |
| HD | xenix | 6 # "Middle model" stuff, and "Xenix 8086 relocatable or 80286 small 7 # model" lifted from "magic.xenix", with comment "derived empirically; 10 # "small model", "large model", "huge model" stuff lifted from XXX 20 >8 leshort 1 Middle model 37 >0x1f byte <0x040 small model 38 >0x1f byte =0x048 large model 39 >0x1f byte =0x049 huge model 73 0 leshort 0x580 XENIX 8086 relocatable or 80286 small model
|
| /NextBSD/contrib/compiler-rt/lib/builtins/ |
| HD | atomic.c | 162 void __atomic_load_c(int size, void *src, void *dest, int model) { in __atomic_load_c() argument 164 *((type*)dest) = __c11_atomic_load((_Atomic(type)*)src, model);\ in __atomic_load_c() 176 void __atomic_store_c(int size, void *dest, void *src, int model) { in __atomic_store_c() argument 178 __c11_atomic_store((_Atomic(type)*)dest, *(type*)dest, model);\ in __atomic_store_c() 214 void __atomic_exchange_c(int size, void *ptr, void *val, void *old, int model) { in __atomic_exchange_c() argument 217 model);\ in __atomic_exchange_c() 241 type __atomic_load_##n(type *src, int model) {\ 243 return __c11_atomic_load((_Atomic(type)*)src, model);\ 254 void __atomic_store_##n(type *dest, type val, int model) {\ 256 __c11_atomic_store((_Atomic(type)*)dest, val, model);\ [all …]
|
| /NextBSD/sys/dev/digi/ |
| HD | digi_pci.c | 122 sc->model = PCIEPCX; in digi_pci_attach() 128 sc->model = PCXEM; in digi_pci_attach() 134 sc->model = PCIXR; in digi_pci_attach() 140 sc->model = PCCX; in digi_pci_attach() 146 sc->model = PCIXR; in digi_pci_attach() 152 sc->model = PCIEPCX; in digi_pci_attach() 158 sc->model = PCIXR; in digi_pci_attach() 164 sc->model = PCIXR; in digi_pci_attach() 170 sc->model = PCIXR; in digi_pci_attach()
|
| HD | digi_isa.c | 138 sc->model = PCXI; in digi_isa_check() 176 sc->model = PCXEM; in digi_isa_check() 201 sc->model = PCXE; in digi_isa_check() 208 sc->model = PCXEVE; in digi_isa_check() 375 if (sc->model == PCXI) in digi_isa_attach() 389 if (sc->model != PCXI) { in digi_isa_attach() 391 if (sc->model == PCXEVE) in digi_isa_attach() 397 if (sc->model == PCXI || sc->model == PCXE) { in digi_isa_attach()
|
| /NextBSD/sys/dev/amdtemp/ |
| HD | amdtemp.c | 192 uint32_t family, model; in amdtemp_probe() local 198 model = CPUID_TO_MODEL(cpu_id); in amdtemp_probe() 202 if ((model == 0x04 && (cpu_id & CPUID_STEPPING) == 0) || in amdtemp_probe() 203 (model == 0x05 && (cpu_id & CPUID_STEPPING) <= 1)) in amdtemp_probe() 229 uint32_t cpuid, family, model; in amdtemp_attach() local 240 model = CPUID_TO_MODEL(cpuid); in amdtemp_attach() 241 if (family != 0x0f || model >= 0x40) { in amdtemp_attach() 244 model = CPUID_TO_MODEL(cpuid); in amdtemp_attach() 274 if (model >= 0x40) in amdtemp_attach() 276 if (model >= 0x60 && model != 0xc1) { in amdtemp_attach() [all …]
|
| /NextBSD/sys/dev/asmc/ |
| HD | asmc.c | 311 char *model; in asmc_match() local 313 model = kern_getenv("smbios.system.product"); in asmc_match() 314 if (model == NULL) in asmc_match() 318 if (!strncmp(model, asmc_models[i].smc_model, strlen(model))) { in asmc_match() 319 freeenv(model); in asmc_match() 323 freeenv(model); in asmc_match() 331 struct asmc_model *model; in asmc_probe() local 338 model = asmc_match(dev); in asmc_probe() 339 if (!model) { in asmc_probe() 343 device_set_desc(dev, model->smc_desc); in asmc_probe() [all …]
|
| /NextBSD/contrib/ncurses/ |
| HD | mk-2nd.awk | 68 printf "# model: %s\n", model 103 printf "../%s/%s$o :\t%s/%s%s", model, $1, $3, $1, suffix 110 printf "\t@echo 'compiling %s (%s)'\n", $1, model 114 printf "cd ../%s; ", model; 135 printf " -o ../%s/%s$o", model, $1
|
| /NextBSD/usr.sbin/pc-sysinstall/backend-query/ |
| HD | xkeyboard-models.sh | 41 model="`echo $line | sed 's|(|[|g'`" 42 model="`echo $model | sed 's|)|]|g'`" 43 echo "$model"
|
| /NextBSD/sys/dev/sdhci/ |
| HD | sdhci_pci.c | 79 uint32_t model; member 253 uint32_t model; in sdhci_pci_probe() local 258 model = (uint32_t)pci_get_device(dev) << 16; in sdhci_pci_probe() 259 model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff; in sdhci_pci_probe() 265 for (i = 0; sdhci_devices[i].model != 0; i++) { in sdhci_pci_probe() 266 if (sdhci_devices[i].model == model && in sdhci_pci_probe() 287 uint32_t model; in sdhci_pci_attach() local 291 model = (uint32_t)pci_get_device(dev) << 16; in sdhci_pci_attach() 292 model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff; in sdhci_pci_attach() 295 for (i = 0; sdhci_devices[i].model != 0; i++) { in sdhci_pci_attach() [all …]
|
| /NextBSD/sys/x86/iommu/ |
| HD | intel_quirks.c | 69 u_int model; member 96 u_int ext_family, ext_model, family_code, model, stepping; in dmar_match_quirks() local 126 model = (p[0] & CPUID_MODEL) >> 4; in dmar_match_quirks() 133 cpu_quirk->model == model && in dmar_match_quirks() 214 .ext_family = 0, .ext_model = 2, .family_code = 6, .model = 13,
|
| /NextBSD/sys/cddl/dev/dtrace/i386/ |
| HD | instr_size.c | 101 dtrace_dis_isize(uchar_t *instr, dis_isize_t which, model_t model, int *rmindex) in dtrace_dis_isize() argument 108 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32; in dtrace_dis_isize() 129 dtrace_instr_size_isa(uchar_t *instr, model_t model, int *rmindex) in dtrace_instr_size_isa() argument 131 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, model, rmindex)); in dtrace_instr_size_isa()
|
| /NextBSD/sys/cddl/dev/dtrace/amd64/ |
| HD | instr_size.c | 101 dtrace_dis_isize(uchar_t *instr, dis_isize_t which, model_t model, int *rmindex) in dtrace_dis_isize() argument 108 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32; in dtrace_dis_isize() 129 dtrace_instr_size_isa(uchar_t *instr, model_t model, int *rmindex) in dtrace_instr_size_isa() argument 131 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, model, rmindex)); in dtrace_instr_size_isa()
|
| /NextBSD/sys/powerpc/mikrotik/ |
| HD | platform_rb.c | 99 char model[32]; in rb_probe() local 103 if (OF_getprop(rootnode, "model", model, sizeof(model)) > 0) { in rb_probe() 104 if (strcmp(model, "RB800") == 0) in rb_probe()
|
| /NextBSD/usr.sbin/nscd/ |
| HD | agent.c | 99 struct agent model, *model_p; in find_agent() local 102 model.name = (char *)name; in find_agent() 103 model.type = type; in find_agent() 104 model_p = &model; in find_agent()
|
| /NextBSD/sys/dev/hwpmc/ |
| HD | hwpmc_intel.c | 81 int error, model, nclasses, ncpus, stepping, verov; in pmc_intel_initialize() local 92 model = ((cpu_id & 0xF0000) >> 12) | ((cpu_id & 0xF0) >> 4); in pmc_intel_initialize() 102 switch (model) { in pmc_intel_initialize() 216 if (model >= 0 && model <= 6) /* known models */ in pmc_intel_initialize()
|
| /NextBSD/contrib/llvm/patches/ |
| HD | patch-06-llvm-r248439-fdiv-hoisting.diff | 4 cost model 6 ...because that's what the cost model was intended to do. 14 for this cost model change and preserve the righteousness for the bug 58 +; calculations that use the TTI cost model or use a different cost 59 +; model for deciding which ops should be speculated in SimplifyCFG. 60 +; We should also be using the TTI cost model later - for example in
|
| /NextBSD/sys/amd64/vmm/intel/ |
| HD | vmx_msr.c | 187 u_int family, model; in nehalem_cpu() local 194 model = CPUID_TO_MODEL(cpu_id); in nehalem_cpu() 196 switch (model) { in nehalem_cpu() 212 u_int family, model; in westmere_cpu() local 219 model = CPUID_TO_MODEL(cpu_id); in westmere_cpu() 221 switch (model) { in westmere_cpu()
|
| /NextBSD/contrib/ofed/management/opensm/doc/ |
| HD | perf-manager-arch.txt | 76 issues relative to logging especially for the distributed model. 99 The simplest model is to run the PerfManager with the master SM. This has 100 the least scalability but is the simplest model. Note that in this model 104 The next model is to run the PerfManager with a standby SM. Standbys are not 107 the PerfManager would need to be moved (or is becomes model 1). 110 model which eliminates the downside of model 2 (standby SM). It could 111 still be built in a similar manner with model 2 with unneeded functions 112 (SM and SA) not included. The advantage of this model is that it could 116 Model 2 can act like model 3 if a disable SM feature is supported in OpenSM 119 The most scalable model is a distributed PerfManager. One approach to [all …]
|
| /NextBSD/sys/contrib/octeon-sdk/ |
| HD | octeon-model.c | 427 int model = fuse_data & 0x3fff; in octeon_model_get_string_buffer() local 429 if (suffix && model) /* Have both number and suffix in fuses, so both */ in octeon_model_get_string_buffer() 431 sprintf(fuse_model, "%d%c",model, 'A' + suffix - 1); in octeon_model_get_string_buffer() 435 … else if (suffix && !model) /* Only have suffix, so add suffix to 'normal' model number */ in octeon_model_get_string_buffer() 442 sprintf(fuse_model, "%d",model); in octeon_model_get_string_buffer()
|
| /NextBSD/sys/arm/samsung/exynos/ |
| HD | exynos5_pmu.c | 72 int model; member 136 if (sc->model == EXYNOS5420) in usbdrd_phy_power_on() 149 sc->model = ofw_bus_search_compatible(dev, compat_data)->ocd_data; in pmu_attach()
|
| /NextBSD/sys/dev/ofw/ |
| HD | ofw_fdt.c | 401 char model[FDT_MODEL_LEN]; in ofw_fdt_fixup() local 412 bzero(model, FDT_MODEL_LEN); in ofw_fdt_fixup() 413 if (ofw_fdt_getprop(ofw, root, "model", model, FDT_MODEL_LEN) <= 0) in ofw_fdt_fixup() 419 for (i = 0; fdt_fixup_table[i].model != NULL; i++) { in ofw_fdt_fixup() 420 if (strncmp(model, fdt_fixup_table[i].model, in ofw_fdt_fixup()
|
| /NextBSD/sys/dev/etherswitch/ip17x/ |
| HD | ip17x.c | 79 uint32_t oui, model, phy_id1, phy_id2; in ip17x_probe() local 88 model = MII_MODEL(phy_id2); in ip17x_probe() 96 switch (model) { in ip17x_probe() 105 model); in ip17x_probe() 110 model = MDIO_READREG(device_get_parent(dev), IP175D_ID_PHY, in ip17x_probe() 112 if (model == 0x175d) in ip17x_probe() 116 model = MDIO_READREG(device_get_parent(dev), 5, MII_PHYIDR1); in ip17x_probe() 117 if (phy_id1 == model) in ip17x_probe()
|
| /NextBSD/sys/powerpc/powermac/ |
| HD | platform_powermac.c | 191 char model[32]; in powermac_attach() local 206 if (OF_getprop(rootnode, "model", model, sizeof(model)) > 0) { in powermac_attach() 207 if (strcmp(model, "PowerMac11,2") == 0 || in powermac_attach() 208 strcmp(model, "PowerMac12,1") == 0) { in powermac_attach()
|