| /qemu/hw/s390x/ |
| A D | s390-stattrib-kvm.c | 41 uint8_t *values, in kvm_s390_stattrib_read_helper() argument 47 .values = (uint64_t)values, in kvm_s390_stattrib_read_helper() 67 uint8_t *values) in kvm_s390_stattrib_get_stattr() argument 69 return kvm_s390_stattrib_read_helper(sa, start_gfn, count, values, 0); in kvm_s390_stattrib_get_stattr() 75 uint8_t *values) in kvm_s390_stattrib_peek_stattr() argument 77 return kvm_s390_stattrib_read_helper(sa, &start_gfn, count, values, in kvm_s390_stattrib_peek_stattr() 84 uint8_t *values) in kvm_s390_stattrib_set_stattr() argument 98 memcpy(sas->incoming_buffer + start_gfn, values, count); in kvm_s390_stattrib_set_stattr() 120 clog.values = (uint64_t)(sas->incoming_buffer + cx); in kvm_s390_stattrib_synchronize() 130 clog.values = (uint64_t)(sas->incoming_buffer + cx); in kvm_s390_stattrib_synchronize()
|
| /qemu/target/i386/whpx/ |
| A D | whpx-all.c | 422 vcxt.values[idx++].Reg64 = env->eip; in whpx_set_registers() 459 vcxt.values[idx++].Reg64 = vcpu->tpr; in whpx_set_registers() 510 vcxt.values[idx++].Reg64 = env->efer; in whpx_set_registers() 528 vcxt.values[idx++].Reg64 = env->star; in whpx_set_registers() 546 &vcxt.values[0]); in whpx_set_registers() 621 &vcxt.values[0]); in whpx_get_registers() 649 env->eip = vcxt.values[idx++].Reg64; in whpx_get_registers() 682 tpr = vcxt.values[idx++].Reg64; in whpx_get_registers() 733 env->efer = vcxt.values[idx++].Reg64; in whpx_get_registers() 740 apic_base = vcxt.values[idx++].Reg64; in whpx_get_registers() [all …]
|
| /qemu/scripts/codeconverter/codeconverter/ |
| A D | qom_type_info.py | 283 values = self.initializers 284 if values is None: 286 if 'name' not in values: 292 if 'parent' not in values: 308 if 'class_size' in values: 692 values = self.initializers 693 if values is None: 695 if 'name' not in values: 719 if values is None: 721 if 'name' not in values: [all …]
|
| /qemu/docs/system/ |
| A D | generic-loader.rst | 10 The 'loader' device allows the user to load multiple images or values into 15 The loader device allows memory values to be set from the command line. This 40 All values are parsed using the standard QemuOps parsing. This allows the user 41 to specify any values in any format supported. By default the values 42 will be parsed as decimal. To use hex values the user should prefix the number 63 All values are parsed using the standard QemuOpts parsing. This allows the user 64 to specify any values in any format supported. By default the values 65 will be parsed as decimal. To use hex values the user should prefix the number 102 All values are parsed using the standard QemuOpts parsing. This allows the user 103 to specify any values in any format supported. By default the values [all …]
|
| /qemu/scripts/codeconverter/ |
| A D | converter.py | 44 values = [f.filename, t.name] + \ 47 DBG('values: %r', values) 48 assert all('\t' not in v for v in values) 49 values = [v.replace('\n', ' ').replace('"', '') for v in values] 50 print('\t'.join(values))
|
| /qemu/tests/tcg/s390x/ |
| A D | add-logical-with-carry.c | 11 unsigned long values[3]; member 140 a = t->values[p->a_idx]; in main() 141 b = t->values[p->b_idx]; in main() 142 c = t->values[p->c_idx]; in main()
|
| /qemu/include/hw/s390x/ |
| A D | storage-attributes.h | 36 uint32_t count, uint8_t *values); 38 uint32_t count, uint8_t *values); 40 uint32_t count, uint8_t *values);
|
| /qemu/scripts/ |
| A D | modinfo-generate.py | 7 def print_array(name, values): argument 8 if len(values) == 0: 10 list = ", ".join(values)
|
| /qemu/tests/qemu-iotests/ |
| A D | 137 | 50 echo === Try setting valid values for all options === 104 echo === Try setting some invalid values ===
|
| A D | 137.out | 3 === Try setting valid values for all options === 16 === Try setting some invalid values === 25 qemu-io: Conflicting values for qcow2 options 'overlap-check' ('constant') and 'overlap-check.templ…
|
| A D | 184.out | 211 "desc": "bps/iops/max total values and read/write values cannot be used at the same time"
|
| A D | 051.out | 101 === Enable and disable lazy refcounting on the command line, plus some invalid values === 318 === Catching negative/large throttling values === 321 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,iops=-1: bps/iops/max values must be within [0, 10000000000… 324 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps=-2: bps/iops/max values must be within [0, 100000000000… 327 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd=-3: bps/iops/max values must be within [0, 100000000… 330 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps_rd_max=-3: bps/iops/max values must be within [0, 10000… 333 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,throttling.iops-total=-4: bps/iops/max values must be withi… 336 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,throttling.bps-total=-5: bps/iops/max values must be within… 351 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps=1000000000000001: bps/iops/max values must be within [0… 354 QEMU_PROG: -drive file=TEST_DIR/t.qcow2,bps=9999999999999999: bps/iops/max values must be within [0…
|
| /qemu/tests/tcg/multiarch/gdbstub/ |
| A D | registers.py | 148 for e in reg_map.values(): 181 for e in reg_map.values():
|
| /qemu/tests/functional/acpi-bits/bits-tests/ |
| A D | testcpuid.py2 | 58 desc.append("Register values have been shifted by {}".format(shift)) 60 desc.append("Register values have been masked:") 68 desc.append('Register values are not unique across all logical processors')
|
| /qemu/docs/specs/ |
| A D | ppc-spapr-uv-hcalls.rst | 39 host system boot. All sensitive in and out values will be encrypted using the 68 Return values: 70 ``r3``: one of the following values:
|
| A D | vmcoreinfo.rst | 27 processing of entry values. 30 vmcoreinfo entry values & content.
|
| A D | acpi_cpu_hotplug.rst | 66 other values: 115 Valid values: [0 .. max_cpus) 166 other values: 182 with current values of OST event and status registers. 183 other values:
|
| A D | ppc-spapr-hcalls.rst | 77 desired size. Supported values are: 89 ``r8``: Operation. Supported values are:
|
| A D | ppc-spapr-hotplug.rst | 46 ``<name>`` values for logical/virtual resources are defined in the Linux on 51 ``<name>`` values for "physical" resources such as PCI or VIO devices are 172 made accessible to a guest. Supported sensor values: 179 device. Supported sensor values: 194 is unused. Supported sensor values: 222 ``rtas-set-indicator``. The semantics/encodings of the sensor values are 225 Supported sensor values for ``dr-entity-sense`` (``9003``) sensor: 352 The hot plug specific payload in QEMU is implemented as follows (with all values
|
| /qemu/docs/system/devices/ |
| A D | keyboard.rst | 35 .. list-table:: Language selection values for escc.chnA-sunkbd-layout 127 Not all dip switch values have a corresponding language code and both "be" and
|
| /qemu/scripts/simplebench/ |
| A D | bench-backup.py | 167 def __call__(self, parser, namespace, values, option_string=None): argument 169 items.extend(values)
|
| /qemu/qapi/ |
| A D | introspect.json | 160 # @values: the enumeration type's member names, in no particular 166 # @deprecated: Member @values is deprecated. Use @members instead. 174 'values': { 'type': [ 'str' ], 220 # from the order of the values of the enum type of the @tag.
|
| /qemu/ |
| A D | Kconfig.host | 1 # These are "proxy" symbols used to pass config-host.mak values
|
| /qemu/docs/sphinx/ |
| A D | depfile.py | 25 for mod in sys.modules.values():
|
| /qemu/docs/devel/testing/ |
| A D | blkdebug.rst | 47 ``/usr/include/asm-generic/errno-base.h`` for errno values. 69 The errno values depend on the host since the numeric values are not
|