Searched refs:model (Results 1 - 25 of 159) sorted by relevance

1234567

/freebsd-12-stable/usr.sbin/pc-sysinstall/backend-query/
H A Dxkeyboard-models.sh43 model="`echo $line | sed 's|(|[|g'`"
44 model="`echo $model | sed 's|)|]|g'`"
45 echo "$model"
51 echo $line | grep '! model' >/dev/null 2>/dev/null
/freebsd-12-stable/sys/powerpc/mikrotik/
H A Dplatform_rb.c63 char model[32]; local
67 if (OF_getprop(rootnode, "model", model, sizeof(model)) > 0) {
68 if (strcmp(model, "RB800") == 0)
H A Drb_led.c80 char model[6]; local
93 /* Check root model. */
95 if (OF_getprop(node, "model", model, sizeof(model)) <= 0)
97 if (strcmp(model, "RB800") != 0)
/freebsd-12-stable/contrib/ncurses/
H A Dmk-2nd.awk39 # model directory into which objects are compiled.
40 # MODEL (uppercase version of "model"; toupper is not portable)
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
/freebsd-12-stable/sys/dev/acpi_support/
H A Dacpi_asus.c123 struct acpi_asus_model *model; member in struct:acpi_asus_softc
545 struct acpi_asus_model *model; local
595 sc->model = &acpi_samsung_models[0];
603 sc->model = &acpi_eeepc_models[0];
617 for (model = acpi_asus_models; model->name != NULL; model++) {
618 if (strncmp(Obj->String.Pointer, model->name, 3) == 0) {
625 sc->model = model;
[all...]
/freebsd-12-stable/contrib/processor-trace/libipt/src/
H A Dpt_cpu.c96 long family, model, stepping; local
111 model = strtol(s, &endptr, 0);
115 if (model < 0 || model > UCHAR_MAX)
135 cpu->model = (uint8_t) model;
157 cpu->model = (info>>4) & 0xf;
159 cpu->model += (info>>12) & 0xf0;
/freebsd-12-stable/sys/cddl/dev/dtrace/x86/
H A Dinstr_size.c104 dtrace_dis_isize(uchar_t *instr, dis_isize_t which, model_t model, int *rmindex) argument
110 mode = (model == DATAMODEL_LP64) ? SIZE64 : SIZE32;
130 dtrace_instr_size_isa(uchar_t *instr, model_t model, int *rmindex) argument
132 return (dtrace_dis_isize(instr, DIS_ISIZE_INSTR, model, rmindex));
/freebsd-12-stable/usr.sbin/nandsim/
H A Dsample.conf109 # model="model_name"
110 model="k9xxg08uxM:1GiB 3,3V 8-bit"
/freebsd-12-stable/sys/cam/mmc/
H A Dmmc.h67 u_int8_t model[40]; /* Card model */ member in struct:mmc_params
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic.c174 void __atomic_load_c(int size, void *src, void *dest, int model) { argument
176 *((type *)dest) = __c11_atomic_load((_Atomic(type) *)src, model); \
188 void __atomic_store_c(int size, void *dest, void *src, int model) { argument
190 __c11_atomic_store((_Atomic(type) *)dest, *(type *)src, model); \
227 void __atomic_exchange_c(int size, void *ptr, void *val, void *old, int model) { argument
230 __c11_atomic_exchange((_Atomic(type) *)ptr, *(type *)val, model); \
261 type __atomic_load_##n(type *src, int model) { \
263 return __c11_atomic_load((_Atomic(type) *)src, model); \
274 void __atomic_store_##n(type *dest, type val, int model) { \
276 __c11_atomic_store((_Atomic(type) *)dest, val, model); \
[all...]
/freebsd-12-stable/sys/dev/amdtemp/
H A Damdtemp.c93 * family and model numbers. Do not make up fictitious family or model numbers
209 static void amdtemp_probe_ccd_sensors17h(device_t dev, uint32_t model);
210 static void amdtemp_probe_ccd_sensors19h(device_t dev, uint32_t model);
275 uint32_t family, model; local
283 model = CPUID_TO_MODEL(cpu_id);
287 if ((model == 0x04 && (cpu_id & CPUID_STEPPING) == 0) ||
288 (model == 0x05 && (cpu_id & CPUID_STEPPING) <= 1))
317 uint32_t cpuid, family, model; local
331 model
803 amdtemp_probe_ccd_sensors17h(device_t dev, uint32_t model) argument
827 amdtemp_probe_ccd_sensors19h(device_t dev, uint32_t model) argument
[all...]
/freebsd-12-stable/usr.sbin/nscd/
H A Dagent.c99 struct agent model, *model_p; local
102 model.name = (char *)name;
103 model.type = type;
104 model_p = &model;
/freebsd-12-stable/sys/arm/samsung/exynos/
H A Dexynos5_pmu.c72 int model; member in struct:pmu_softc
136 if (sc->model == EXYNOS5420)
149 sc->model = ofw_bus_search_compatible(dev, compat_data)->ocd_data;
/freebsd-12-stable/contrib/processor-trace/libipt/test/src/
H A Dptunit-cpu.c59 ptu_uint_eq(cpu.model, 44);
66 ptu_uint_eq(cpu.model, 0x2c);
73 ptu_uint_eq(cpu.model, 054);
80 ptu_uint_eq(cpu.model, 44);
/freebsd-12-stable/sys/dev/hwpmc/
H A Dhwpmc_intel.c83 int error, family, model, nclasses, ncpus, stepping, verov; local
95 model = CPUID_TO_MODEL(cpu_id);
99 family, model, stepping);
103 switch (model) {
/freebsd-12-stable/sys/x86/include/
H A Dacpica_machdep.h77 void acpi_SetDefaultIntrModel(int model);
/freebsd-12-stable/lib/libproc/
H A D_libproc.h72 int model; /* Process data model. */ member in struct:proc_handle
/freebsd-12-stable/tools/tools/intel-ucode-split/
H A Dintel-ucode-split.c64 unsigned family, model, stepping; local
67 model = (signature & 0xf0) >> 4;
70 model += (signature & 0xf0000) >> 12;
73 asprintf(&buf, "%02x-%02x-%02x", family, model, stepping);
/freebsd-12-stable/sys/x86/iommu/
H A Dintel_quirks.c72 u_int model; member in struct:intel_dmar_quirk_cpu
99 u_int ext_family, ext_model, family_code, model, stepping; local
129 model = (p[0] & CPUID_MODEL) >> 4;
136 cpu_quirk->model == model &&
217 .ext_family = 0, .ext_model = 2, .family_code = 6, .model = 13,
/freebsd-12-stable/sys/dev/asmc/
H A Dasmc.c427 char *model; local
429 model = kern_getenv("smbios.system.product");
430 if (model == NULL)
434 if (!strncmp(model, asmc_models[i].smc_model, strlen(model))) {
435 freeenv(model);
439 freeenv(model);
447 struct asmc_model *model; local
454 model = asmc_match(dev);
455 if (!model) {
473 struct asmc_model *model; local
[all...]
/freebsd-12-stable/sys/dev/ofw/
H A Dofw_fdt.c415 char model[FDT_MODEL_LEN]; local
423 if ((len = ofw_fdt_getproplen(ofw, root, "model")) <= 0)
426 bzero(model, FDT_MODEL_LEN);
427 if (ofw_fdt_getprop(ofw, root, "model", model, FDT_MODEL_LEN) <= 0)
433 for (i = 0; fdt_fixup_table[i].model != NULL; i++) {
434 if (strncmp(model, fdt_fixup_table[i].model,
439 * To handle this case, simply check if model
443 fdt_fixup_table[i].model))
[all...]
/freebsd-12-stable/sys/dev/sdhci/
H A Dsdhci_pci.c79 uint32_t model; member in struct:sdhci_device
301 uint32_t model; local
306 model = (uint32_t)pci_get_device(dev) << 16;
307 model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff;
313 for (i = 0; sdhci_devices[i].model != 0; i++) {
314 if (sdhci_devices[i].model == model &&
336 uint32_t model; local
340 model = (uint32_t)pci_get_device(dev) << 16;
341 model |
[all...]
/freebsd-12-stable/sys/contrib/octeon-sdk/
H A Docteon-model.c125 * string representing the chip model number. The string is of the
127 * - XXXX = The chip model number
205 /* Use the number of cores to determine the last 2 digits of the model
416 /* Check for model in fuses, overrides normal decode */
427 int model = fuse_data & 0x3fff; local
429 if (suffix && model) /* Have both number and suffix in fuses, so both */
431 sprintf(fuse_model, "%d%c",model, 'A' + suffix - 1);
435 else if (suffix && !model) /* Only have suffix, so add suffix to 'normal' model number */
440 else /* Don't have suffix, so just use model fro
[all...]
/freebsd-12-stable/sys/cam/ata/
H A Data_all.c516 cam_strvis(product, ident_data->model, sizeof(ident_data->model),
528 cam_strvis_sbuf(sb, ident_data->model, sizeof(ident_data->model), 0);
1012 if ((cam_strmatch(ident->model, entry->product,
1013 sizeof(ident->model)) == 0)
1030 if ((cam_strmatch(ident->model, entry->product,
1031 sizeof(ident->model)) == 0)
1276 if (strncmp(ident_buf->model, "FX", 2) &&
1277 strncmp(ident_buf->model, "NE
[all...]
/freebsd-12-stable/sys/dev/acpica/
H A Dacpiio.h68 char model[ACPI_CMBAT_MAXSTRLEN]; /* model identifier */ member in struct:acpi_bif
91 char model[ACPI_CMBAT_MAXSTRLEN]; /* model identifier */ member in struct:acpi_bix
136 char model[ACPI_CMBAT_MAXSTRLEN]; /* model identifier */

Completed in 407 milliseconds

1234567