/qemu/hw/gpio/ |
H A D | omap_gpio.c | 35 uint16_t inputs; member 58 uint16_t prev = s->inputs; in omap_gpio_set() 61 s->inputs |= 1 << line; in omap_gpio_set() 63 s->inputs &= ~(1 << line); in omap_gpio_set() 65 if (((s->edge & s->inputs & ~prev) | (~s->edge & ~s->inputs & prev)) & in omap_gpio_set() 84 return s->inputs & s->pins; in omap_gpio_read() 184 s->inputs = 0; in omap_gpio_reset()
|
/qemu/hw/intc/ |
H A D | omap_intc.c | 33 uint32_t inputs; member 119 rise &= ~bank->inputs; in omap_set_intr() 121 bank->inputs |= (1 << n); in omap_set_intr() 130 bank->inputs &= ~(1 << n); in omap_set_intr() 225 bank->irqs &= value | (bank->inputs & bank->sens_edge); in omap_inth_write() 325 s->bank[i].inputs = 0x00000000; in omap_inth_reset()
|
/qemu/ui/ |
H A D | input-linux.c | 69 static QTAILQ_HEAD(, InputLinux) inputs = QTAILQ_HEAD_INITIALIZER(inputs); 86 QTAILQ_FOREACH(item, &inputs, next) { in input_linux_toggle_grab() 406 QTAILQ_INSERT_TAIL(&inputs, il, next); in input_linux_complete() 422 QTAILQ_REMOVE(&inputs, il, next); in input_linux_instance_finalize()
|
/qemu/docs/devel/testing/ |
H A D | fuzzing.rst | 11 Fuzzing operates by passing inputs to an entry point/target function. The 58 time you run libFuzzer, it will read all of the inputs from the corpus, and 60 libFuzzer loads existing inputs from all specified directories, but will only 63 * ``-max_len=4096`` : specify the maximum byte-length of the inputs libFuzzer 74 fuzzers to share information about the interesting inputs they find. 97 1. Configure libFuzzer to store a corpus of all interesting inputs (see 105 to execute all of the inputs in $CORPUS_DIR and exit. Once the process 130 modify the qtest commands and/or qtest command arguments based on inputs 170 inputs for individual devices. As such, it is usually a good idea to limit the
|
H A D | main.rst | 27 like inputs and expected results, are set up;
|
/qemu/tests/qtest/ |
H A D | pnv-host-i2c-test.c | 294 uint16_t inputs; in pnv_i2c_pca9552_read_pins() local 298 inputs = recv_buf[0]; in pnv_i2c_pca9552_read_pins() 302 inputs |= recv_buf[0] << 8; in pnv_i2c_pca9552_read_pins() 303 return inputs; in pnv_i2c_pca9552_read_pins()
|
/qemu/tests/qapi-schema/ |
H A D | enum-int-member.json | 2 # FIXME: once the parser understands integer inputs, improve the error message
|
H A D | bad-type-int.json | 2 # FIXME: once the parser understands integer inputs, improve the error message
|
/qemu/pc-bios/dtb/ |
H A D | petalogix-s3adsp1800.dts | 216 xlnx,all-inputs = <0x00>; 217 xlnx,all-inputs-2 = <0x00>; 264 xlnx,num-intr-inputs = <0x04>;
|
H A D | petalogix-ml605.dts | 240 xlnx,num-intr-inputs = < 0x06 >;
|
/qemu/docs/system/ |
H A D | barrier.rst | 8 there is no way to provide the keyboard and mouse inputs to the VM
|
H A D | replay.rst | 90 designed to allow deterministic execution in absence of external inputs
|
/qemu/docs/devel/ |
H A D | replay.rst | 53 designed to allow deterministic execution in absence of external inputs 85 non-determinism. These are inputs from clock and peripheral devices, 233 It includes all non-deterministic inputs of VM, synchronization marks and 234 instruction counts used to correctly inject inputs at replay.
|
H A D | clocks.rst | 17 Clocks are typically used with devices where they are used to model inputs 62 All clocks contain this state: outputs as well as inputs. This allows 96 Note that it is possible to create a static array describing clock inputs and 202 get the clock inputs or outputs of a device. For example: 403 (i.e. it has period zero). If the inputs imply a tick count that
|
H A D | tcg-ops.rst | 54 a variable number of outputs and inputs. 483 accepts 0 <= *pos* <= N as inputs. The backend code generator will 484 not see either 0 or N as inputs for these opcodes. 659 - | Similar to mul, except two unsigned inputs *t1* and *t2* yielding the full 664 - | Similar to mulu2, except the two inputs *t1* and *t2* are signed.
|
H A D | secure-coding-practices.rst | 94 Live migration code must validate inputs when loading device state so an
|
/qemu/hw/arm/ |
H A D | omap1.c | 1897 uint16_t inputs; member 1918 uint16_t prev = s->inputs; in omap_mpuio_set() 1921 s->inputs |= 1 << line; in omap_mpuio_set() 1923 s->inputs &= ~(1 << line); in omap_mpuio_set() 1926 if ((s->edge & s->inputs & ~prev) | (~s->edge & ~s->inputs & prev)) { in omap_mpuio_set() 1933 s->latch = s->inputs; in omap_mpuio_set() 1963 return s->inputs; in omap_mpuio_read() 2094 s->inputs = 0; in omap_mpuio_reset()
|
/qemu/docs/system/i386/ |
H A D | amd-memory-encryption.rst | 43 its public Diffie-Hellman key (PDH) and session parameters. These inputs
|
/qemu/tcg/i386/ |
H A D | tcg-target.c.inc | 1812 * If dest does not overlap the inputs, clearing it first is preferred. 3994 /* First merge the two 32-bit inputs to a single 64-bit element. */ 4554 * We must bias the inputs so that they become signed.
|
/qemu/tcg/ppc/ |
H A D | tcg-target.c.inc | 2045 /* If for some reason both inputs are zero, don't produce bad code. */ 4283 /* With inputs a1 = xLxx, a2 = xHxx */
|
/qemu/ |
H A D | qemu-options.hx | 2274 " [,tls-channel=[main|display|cursor|inputs|record|playback]]\n" 2275 " [,plaintext-channel=[main|display|cursor|inputs|record|playback]]\n" 2344 …``tls-channel=[main|display|cursor|inputs|record|playback]``; \ ``plaintext-channel=[main|display|…
|