Home
last modified time | relevance | path

Searched refs:family (Results 1 – 25 of 54) sorted by relevance

123

/qemu/target/i386/
H A Dhost-cpu.c130 void host_cpu_vendor_fms(char *vendor, int *family, int *model, int *stepping) in host_cpu_vendor_fms() argument
138 if (family) { in host_cpu_vendor_fms()
139 *family = ((eax >> 8) & 0x0F) + ((eax >> 20) & 0xFF); in host_cpu_vendor_fms()
167 int family, model, stepping; in host_cpu_max_instance_init() local
172 host_cpu_vendor_fms(vendor, &family, &model, &stepping); in host_cpu_max_instance_init()
176 object_property_set_int(OBJECT(cpu), "family", family, &error_abort); in host_cpu_max_instance_init()
H A Dhelper.c76 static void cpu_x86_version(CPUX86State *env, int *family, int *model) in cpu_x86_version() argument
80 if (family == NULL || model == NULL) { in cpu_x86_version()
84 *family = (cpuver >> 8) & 0x0f; in cpu_x86_version()
91 int family = 0; in cpu_x86_support_mca_broadcast() local
94 cpu_x86_version(env, &family, &model); in cpu_x86_support_mca_broadcast()
95 if ((family == 6 && model >= 14) || family > 6) { in cpu_x86_support_mca_broadcast()
H A Dhost-cpu.h17 void host_cpu_vendor_fms(char *vendor, int *family, int *model, int *stepping);
H A Dcpu.c1767 int family; member
2251 .family = 6,
2334 .family = 6,
2378 .family = 6,
2411 .family = 4,
2423 .family = 5,
2435 .family = 6,
2447 .family = 6,
2459 .family = 6,
2474 .family = 6,
[all …]
/qemu/docs/sphinx-static/
H A Dtheme_overrides.css10 font-family: serif;
16 font-family: sans-serif;
52 font-family: monospace;
58 font-family: sans-serif;
132 font-family: "Courier New", Courier, monospace
139 font-family: "Courier New", Courier, monospace
/qemu/python/tests/
H A Dprotocol.py297 async def _bad_connection(self, family: str):
298 assert family in ('INET', 'UNIX')
300 if family == 'INET':
302 elif family == 'UNIX':
309 async def _bad_connection_test(self, family: str):
313 await self._bad_connection(family)
425 async def _bad_connection(self, family: str):
426 assert family in ('INET', 'UNIX')
428 if family == 'INET':
430 elif family == 'UNIX':
/qemu/linux-user/
H A Duname.c58 int family = object_property_get_int(OBJECT(cpu), "family", NULL); in cpu_to_uname_machine()
59 if (family == 4) { in cpu_to_uname_machine()
62 if (family == 5) { in cpu_to_uname_machine()
/qemu/python/qemu/machine/
H A Dqtest.py78 family = socket.AF_INET
80 family = socket.AF_UNIX
81 return socket.socket(family, socket.SOCK_STREAM)
/qemu/pc-bios/
H A Dpetalogix-s3adsp1800.dts65 xlnx,family = "spartan3adsp";
125 xlnx,family = "spartan3adsp";
134 xlnx,family = "spartan3adsp";
220 xlnx,family = "spartan3adsp";
241 xlnx,family = "spartan3adsp";
249 xlnx,family = "spartan3adsp";
274 xlnx,family = "spartan3adsp";
H A Dpetalogix-ml605.dts77 xlnx,family = "virtex6";
186 xlnx,family = "virtex6";
211 xlnx,family = "virtex6";
226 xlnx,family = "virtex6";
250 xlnx,family = "virtex6";
/qemu/qapi/
H A Dsockets.json11 # The network address family
13 # @ipv4: IPV4 family
15 # @ipv6: IPV6 family
19 # @vsock: vsock family (since 2.8)
H A Dui.json215 # @family: address family
222 'family': 'NetworkAddressFamily' },
480 # @family: address family
489 'family': 'NetworkAddressFamily',
536 # @family:
573 '*family': 'NetworkAddressFamily',
/qemu/tests/unit/
H A Dsocket-helpers.c41 static int socket_can_bind_connect(const char *hostname, int family) in socket_can_bind_connect() argument
55 ai.ai_family = family; in socket_can_bind_connect()
/qemu/scripts/
H A Dqemu-binfmt-conf.sh319 family=$(eval echo \$${cpu}_family)
321 if [ "$magic" = "" ] || [ "$mask" = "" ] || [ "$family" = "" ] ; then
332 if [ "$host_family" != "$family" ] ; then
/qemu/docs/system/ppc/
H A Dembedded.rst1 Embedded family boards
H A Dpowermac.rst1 PowerMac family boards (``g3beige``, ``mac99``)
/qemu/target/riscv/
H A DXVentanaCondOps.decode8 # Reference: VTx-family custom instructions
/qemu/include/qemu/
H A Dsockets.h67 NetworkAddressFamily inet_netfamily(int family);
/qemu/docs/system/arm/
H A Dnrf.rst4 The `Nordic nRF`_ chips are a family of ARM-based System-on-Chip that
H A Dstm32.rst4 The `STM32`_ chips are a family of 32-bit ARM-based microcontroller by
H A Dnuvoton.rst4 The `Nuvoton iBMC`_ chips (NPCM7xx) are a family of ARM-based SoCs that are
H A Dvexpress.rst5 board family:
/qemu/hw/smbios/
H A Dsmbios_legacy.c118 smbios_type1.family); in smbios_build_type_1_fields()
/qemu/hw/ppc/
H A Dpnv_core.c385 #define DEFINE_PNV_CORE_TYPE(family, cpu_model) \ argument
389 .class_init = pnv_core_##family##_class_init, \
/qemu/docs/system/devices/
H A Digb.rst7 igb is a family of Intel's gigabit ethernet controllers. In QEMU, 82576

123