| /dflybsd-src/sys/dev/netif/mii_layer/ |
| H A D | miidevs | 118 model AGERE ET1011 0x0001 ET1011 10/100/1000baseT PHY 119 model AGERE ET1011C 0x0004 ET1011C 10/100/1000baseT PHY 122 model xxALTIMA AC_UNKNOWN 0x0001 AC_UNKNOWN 10/100 media interface 123 model xxALTIMA AC101L 0x0012 AC101L 10/100 media interface 124 model xxALTIMA AC101 0x0021 AC101 10/100 media interface 126 model xxALTIMA Am79C875 0x0014 Am79C875 10/100 media interface 129 model ATHEROS F1 0x0001 Atheros F1 10/100/1000 PHY 130 model ATHEROS F2 0x0002 Atheros F2 10/100 PHY 131 model ATHEROS AR8021 0x0004 Atheros AR8021 10/100/1000 PHY 132 model ATHEROS F1_7 0x0007 Atheros F1 10/100/1000 PHY [all …]
|
| H A D | miivar.h | 200 #define MII_PHYDESC(oui, model) \ argument 203 .mpd_model = MII_MODEL_##oui##_##model, \ 204 .mpd_name = MII_STR_##oui##_##model, \ 207 #define MII_PHYDESC_ARG(oui, model, arg) \ argument 210 .mpd_model = MII_MODEL_##oui##_##model, \ 211 .mpd_name = MII_STR_##oui##_##model, \
|
| H A D | ciphy.c | 341 uint16_t model, status, speed; in ciphy_fixup() local 344 model = MII_MODEL(PHY_READ(sc, CIPHY_MII_PHYIDR2)); in ciphy_fixup() 355 switch (model) { in ciphy_fixup() 394 "unknown CICADA PHY model %x\n", model); in ciphy_fixup()
|
| /dflybsd-src/sys/dev/acpica/acpi_asus/ |
| H A D | acpi_asus.c | 121 struct acpi_asus_model *model; member 547 struct acpi_asus_model *model; in acpi_asus_probe() local 598 sc->model = &acpi_samsung_models[0]; in acpi_asus_probe() 606 sc->model = &acpi_eeepc_models[0]; in acpi_asus_probe() 620 for (model = acpi_asus_models; model->name != NULL; model++) { in acpi_asus_probe() 621 if (strncmp(Obj->String.Pointer, model->name, 3) == 0) { in acpi_asus_probe() 628 sc->model = model; in acpi_asus_probe() 644 else if (strncmp(model->name, "xxN", 3) == 0 && in acpi_asus_probe() 648 else if (strncmp(model->name, "A1x", 3) == 0 && in acpi_asus_probe() 651 else if (strncmp(model->name, "A2x", 3) == 0 && in acpi_asus_probe() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/gcc/ |
| H A D | memmodel.h | 69 is_mm_relaxed (enum memmodel model) in is_mm_relaxed() argument 71 return (model & MEMMODEL_BASE_MASK) == MEMMODEL_RELAXED; in is_mm_relaxed() 76 is_mm_consume (enum memmodel model) in is_mm_consume() argument 78 return (model & MEMMODEL_BASE_MASK) == MEMMODEL_CONSUME; in is_mm_consume() 83 is_mm_acquire (enum memmodel model) in is_mm_acquire() argument 85 return (model & MEMMODEL_BASE_MASK) == MEMMODEL_ACQUIRE; in is_mm_acquire() 90 is_mm_release (enum memmodel model) in is_mm_release() argument 92 return (model & MEMMODEL_BASE_MASK) == MEMMODEL_RELEASE; in is_mm_release() 97 is_mm_acq_rel (enum memmodel model) in is_mm_acq_rel() argument 99 return (model & MEMMODEL_BASE_MASK) == MEMMODEL_ACQ_REL; in is_mm_acq_rel() [all …]
|
| H A D | optabs.c | 6013 maybe_emit_atomic_exchange (rtx target, rtx mem, rtx val, enum memmodel model) in maybe_emit_atomic_exchange() argument 6027 create_integer_operand (&ops[3], model); in maybe_emit_atomic_exchange() 6043 enum memmodel model) in maybe_emit_sync_lock_test_and_set() argument 6055 if (is_mm_seq_cst (model) || is_mm_release (model) || is_mm_acq_rel (model)) in maybe_emit_sync_lock_test_and_set() 6056 expand_mem_thread_fence (model); in maybe_emit_sync_lock_test_and_set() 6117 maybe_emit_atomic_test_and_set (rtx target, rtx mem, enum memmodel model) in maybe_emit_atomic_test_and_set() argument 6137 create_integer_operand (&ops[2], model); in maybe_emit_atomic_test_and_set() 6185 expand_atomic_test_and_set (rtx target, rtx mem, enum memmodel model) in expand_atomic_test_and_set() argument 6190 ret = maybe_emit_atomic_test_and_set (target, mem, model); in expand_atomic_test_and_set() 6209 ret = maybe_emit_atomic_exchange (subtarget, mem, trueval, model); in expand_atomic_test_and_set() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libgcc/config/i386/ |
| H A D | cpuinfo.c | 54 get_amd_cpu (unsigned int family, unsigned int model) in get_amd_cpu() argument 61 switch (model) in get_amd_cpu() 87 if (model == 0x2) in get_amd_cpu() 90 else if (model <= 0xf) in get_amd_cpu() 93 else if (model <= 0x2f) in get_amd_cpu() 96 else if (model <= 0x4f) in get_amd_cpu() 99 else if (model <= 0x7f) in get_amd_cpu() 109 if (model <= 0x1f) in get_amd_cpu() 120 get_intel_cpu (unsigned int family, unsigned int model, unsigned int brand_id) in get_intel_cpu() argument 131 switch (model) in get_intel_cpu() [all …]
|
| /dflybsd-src/sys/dev/powermng/amdtemp/ |
| H A D | amdtemp.c | 257 static void amdtemp_probe_ccd_sensors17h(device_t dev, uint32_t model); 258 static void amdtemp_probe_ccd_sensors19h(device_t dev, uint32_t model); 327 uint32_t family, model; in amdtemp_probe() local 335 model = CPUID_TO_MODEL(cpu_id); in amdtemp_probe() 339 if ((model == 0x04 && (cpu_id & CPUID_STEPPING) == 0) || in amdtemp_probe() 340 (model == 0x05 && (cpu_id & CPUID_STEPPING) <= 1)) in amdtemp_probe() 369 uint32_t cpuid, family, model; in amdtemp_attach() local 383 model = CPUID_TO_MODEL(cpuid); in amdtemp_attach() 398 (family == 0x0f && model >= 0x40))) { in amdtemp_attach() 402 model = CPUID_TO_MODEL(cpuid); in amdtemp_attach() [all …]
|
| /dflybsd-src/contrib/file/magic/Magdir/ |
| H A D | x68000 | 11 >>>>&0 ubyte&15 0 model: X68000, 12 >>>>&0 ubyte&15 1 model: PC-88VA, 13 >>>>&0 ubyte&15 2 model: FM-TOWNS, 14 >>>>&0 ubyte&15 3 model: MAC, 15 >>>>&0 ubyte&15 15 model: Generic,
|
| H A D | 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 49 >8 leshort 1 Middle model 66 >0x1f byte <0x040 small model 67 >0x1f byte =0x048 large model 68 >0x1f byte =0x049 huge model 102 0 leshort 0x580 XENIX 8086 relocatable or 80286 small model
|
| H A D | cad | 289 >>>16 leshort 0x3d3d 3D Studio model 328 # The Sketchup 3D model format https://www.sketchup.com/ 338 0 string glTF glTF binary model 341 !:mime model/gltf-binary 346 0 string Kaydara\ FBX\ Binary\ \ \0 Kaydara FBX model, 352 0 string ply\n PLY model, 366 !:mime model/vrml 369 !:mime model/vrml 372 0 string #X3D X3D (Extensible 3D) model, VRML format 375 !:mime model/x3d+vrml [all …]
|
| /dflybsd-src/sys/dev/disk/sdhci/ |
| H A D | sdhci_pci.c | 68 uint32_t model; member 280 uint32_t model; in sdhci_pci_probe() local 285 model = (uint32_t)pci_get_device(dev) << 16; in sdhci_pci_probe() 286 model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff; in sdhci_pci_probe() 292 for (i = 0; sdhci_devices[i].model != 0; i++) { in sdhci_pci_probe() 293 if (sdhci_devices[i].model == model && in sdhci_pci_probe() 314 uint32_t model; in sdhci_pci_attach() local 323 model = (uint32_t)pci_get_device(dev) << 16; in sdhci_pci_attach() 324 model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff; in sdhci_pci_attach() 327 for (i = 0; sdhci_devices[i].model != 0; i++) { in sdhci_pci_attach() [all …]
|
| /dflybsd-src/contrib/gcc-8.0/libgomp/ |
| H A D | priority_queue.h | 183 priority_queue_empty_p (struct priority_queue *head, enum memmodel model) in priority_queue_empty_p() argument 193 if (model == MEMMODEL_ACQUIRE) in priority_queue_empty_p() 197 if (model == MEMMODEL_ACQUIRE) in priority_queue_empty_p() 417 enum memmodel model) in priority_list_remove() argument 432 if (model == MEMMODEL_RELEASE) in priority_list_remove() 460 enum memmodel model) in priority_queue_remove() argument 471 if (model == MEMMODEL_RELEASE) in priority_queue_remove() 482 task_to_priority_node (type, task), model); in priority_queue_remove()
|
| /dflybsd-src/contrib/gcc-8.0/gcc/config/i386/ |
| H A D | sync.md | 108 [(match_operand:SI 0 "const_int_operand")] ;; model 111 enum memmodel model = memmodel_from_int (INTVAL (operands[0])); 113 /* Unless this is a SEQ_CST fence, the i386 memory model is strong 115 if (is_mm_seq_cst (model)) 294 enum memmodel model = memmodel_from_int (INTVAL (operands[2])); 310 if (is_mm_seq_cst (model) && !(TARGET_64BIT || TARGET_SSE2)) 323 if (is_mm_seq_cst (model)) 507 (match_operand:SI 6 "const_int_operand") ;; success model 508 (match_operand:SI 7 "const_int_operand")] ;; failure model 531 (match_operand:SI 6 "const_int_operand") ;; success model [all …]
|
| H A D | driver-i386.c | 396 unsigned int model, family; in host_detect_local_cpu() local 446 model = (eax >> 4) & 0x0f; in host_detect_local_cpu() 458 model += extended_model; in host_detect_local_cpu() 461 model += extended_model; in host_detect_local_cpu() 628 bool xeon_mp = (family == 15 && model == 6); in host_detect_local_cpu() 689 else if (model >= 9) in host_detect_local_cpu() 691 else if (model >= 6) in host_detect_local_cpu() 725 if (model >= 6) in host_detect_local_cpu() 743 switch (model) in host_detect_local_cpu() 899 if (model >= 9) in host_detect_local_cpu()
|
| /dflybsd-src/usr.sbin/nscd/ |
| H A D | agent.c | 96 struct agent model, *model_p; in find_agent() local 99 model.name = (char *)name; in find_agent() 100 model.type = type; in find_agent() 101 model_p = &model; in find_agent()
|
| /dflybsd-src/contrib/gcc-4.7/gcc/config/i386/ |
| H A D | sync.md | 102 [(match_operand:SI 0 "const_int_operand" "")] ;; model 105 /* Unless this is a SEQ_CST fence, the i386 memory model is strong 204 enum memmodel model = (enum memmodel) INTVAL (operands[2]); 218 if (model == MEMMODEL_SEQ_CST && !(TARGET_64BIT || TARGET_SSE2)) 231 if (model == MEMMODEL_SEQ_CST) 316 (match_operand:SI 6 "const_int_operand" "") ;; success model 317 (match_operand:SI 7 "const_int_operand" "")] ;; failure model 340 (match_operand:SI 6 "const_int_operand" "") ;; success model 341 (match_operand:SI 7 "const_int_operand" "")] ;; failure model 446 (match_operand:SI 3 "const_int_operand" "")] ;; model [all …]
|
| H A D | driver-i386.c | 390 unsigned int model, family; in host_detect_local_cpu() local 424 model = (eax >> 4) & 0x0f; in host_detect_local_cpu() 435 model += extended_model; in host_detect_local_cpu() 438 model += extended_model; in host_detect_local_cpu() 524 bool xeon_mp = (family == 15 && model == 6); in host_detect_local_cpu() 566 if (model > 9) in host_detect_local_cpu() 569 else if (model == 9) in host_detect_local_cpu() 571 else if (model >= 6) in host_detect_local_cpu() 627 switch (model) in host_detect_local_cpu()
|
| /dflybsd-src/sys/dev/powermng/kate/ |
| H A D | kate.c | 166 int i, j, cmpcap, model; in kate_attach() local 188 model = CPUID_TO_MODEL(c); in kate_attach() 189 if (model >= 0x60 && model != 0xc1) { in kate_attach() 193 switch (model) { in kate_attach()
|
| /dflybsd-src/sys/dev/misc/syscons/ |
| H A D | scvidctl.c | 145 scp->model = V_INFO_MM_TEXT; in sc_set_text_mode() 224 scp->model = V_INFO_MM_OTHER; in sc_set_graphics_mode() 381 scp->model = info.vi_mem_model; in sc_set_pixel_mode() 824 sc_render_match(scr_stat *scp, char *name, int model) in sc_render_match() argument 832 (model == p->model)) { in sc_render_match() 842 (model == p->model)) { in sc_render_match() 882 if (scp->model != V_INFO_MM_OTHER) in sc_update_render() 883 scp->model = V_INFO_MM_TEXT; in sc_update_render() 886 rndr = sc_render_match(scp, sw->te_renderer, scp->model); in sc_update_render() 889 rndr = sc_render_match(scp, "kms", scp->model); in sc_update_render() [all …]
|
| H A D | syscons.h | 318 int model; /* memory model */ member 441 int model; member 448 #define RENDERER(name, model, sw, set) \ argument 449 static struct sc_renderer scrndr_##name##_##model = { \ 450 #name, model, &sw \ 452 DATA_SET(scrndr_set, scrndr_##name##_##model); \ 453 DATA_SET(set, scrndr_##name##_##model) 593 sc_rndr_sw_t *sc_render_match(scr_stat *scp, char *name, int model);
|
| /dflybsd-src/sys/dev/disk/nata/ |
| H A D | ata-all.c | 621 if (!error && (isprint(atadev->param.model[0]) || in ata_getparam() 622 isprint(atadev->param.model[1]))) { in ata_getparam() 630 if (!(!strncmp(atacap->model, "FX", 2) || in ata_getparam() 631 !strncmp(atacap->model, "NEC", 3) || in ata_getparam() 632 !strncmp(atacap->model, "Pioneer", 7) || in ata_getparam() 633 !strncmp(atacap->model, "SHARP", 5))) { in ata_getparam() 634 bswap(atacap->model, sizeof(atacap->model)); in ata_getparam() 638 btrim(atacap->model, sizeof(atacap->model)); in ata_getparam() 639 bpack(atacap->model, atacap->model, sizeof(atacap->model)); in ata_getparam() 657 ksprintf(buffer, "%.40s/%.8s", atacap->model, atacap->revision); in ata_getparam()
|
| H A D | ata-disk.c | 511 if ((marker = index(atadev->param.model, ' ')) || in ad_describe() 512 (marker = index(atadev->param.model, '-'))) { in ad_describe() 513 int len = (marker - atadev->param.model); in ad_describe() 515 strncpy(vendor, atadev->param.model, len); in ad_describe() 518 strncpy(product, atadev->param.model + len, 40 - len); in ad_describe() 522 if (!strncmp(atadev->param.model, "ST", 2)) in ad_describe() 524 else if (!strncmp(atadev->param.model, "HDS", 3)) in ad_describe() 528 strncpy(product, atadev->param.model, 40); in ad_describe()
|
| /dflybsd-src/sys/dev/powermng/clockmod/ |
| H A D | clockmod.c | 491 uint32_t model, stepping; in clockmod_errata_duty() local 509 model = CPUID_TO_MODEL(cpu_id); in clockmod_errata_duty() 512 if (model == 0x6) { in clockmod_errata_duty() 522 } else if (model == 0x2) { in clockmod_errata_duty() 534 } else if (model == 0x1) { in clockmod_errata_duty() 543 } else if (model == 0x0) { in clockmod_errata_duty()
|
| /dflybsd-src/contrib/binutils-2.27/gas/doc/ |
| H A D | c-ia64.texi | 36 as using the ``constant GP'' model. With this model, it is assumed 44 as using the ``constant GP without function descriptor'' data model. 45 This model is like the ``constant GP'' model, except that it 58 These options select the data model. The assembler defaults to @code{-mlp64} 59 (LP64 data model).
|