Home
last modified time | relevance | path

Searched refs:inc (Results 1 – 25 of 72) sorted by relevance

123

/qemu/target/hexagon/
H A Dmeson.build44 # tcg_func_table_generated.c.inc
45 # printinsn_generated.h.inc
46 # op_attribs_generated.h.inc
47 # opcodes_def_generated.h.inc
50 'tcg_func_table_generated.c.inc',
51 output: 'tcg_func_table_generated.c.inc',
59 'printinsn_generated.h.inc',
60 output: 'printinsn_generated.h.inc',
68 'op_attribs_generated.h.inc',
69 output: 'op_attribs_generated.h.inc',
[all …]
H A DREADME45 gen_opcodes_def.py -> opcodes_def_generated.h.inc
46 gen_printinsn.py -> printinsn_generated.h.inc
47 gen_op_attribs.py -> op_attribs_generated.h.inc
48 gen_helper_protos.py -> helper_protos_generated.h.inc
49 gen_tcg_funcs.py -> tcg_funcs_generated.c.inc
50 gen_tcg_func_table.py -> tcg_func_table_generated.c.inc
51 gen_helper_funcs.py -> helper_funcs_generated.c.inc
53 gen_analyze_funcs.py -> analyze_funcs_generated.c.inc
73 helper_protos_generated.h.inc
76 tcg_funcs_generated.c.inc
[all …]
/qemu/docs/system/
H A Dqemu-manpage.rst5 should simply include the .rst.inc files corresponding to the
25 .. include:: target-i386-desc.rst.inc
41 .. include:: keys.rst.inc
43 .. include:: mux-chardev.rst.inc
49 .. include:: device-url-syntax.rst.inc
H A Dqemu-cpu-models.rst17 .. include:: cpu-models-x86.rst.inc
18 .. include:: cpu-models-mips.rst.inc
H A Dkeys.rst6 .. include:: keys.rst.inc
H A Dmux-chardev.rst6 .. include:: mux-chardev.rst.inc
H A Dqemu-block-drivers.rst17 .. include:: qemu-block-drivers.rst.inc
/qemu/hw/timer/
H A Da9gtimer.c98 if (gtb->control & R_CONTROL_AUTO_INCREMENT && gtb->inc) { in a9_gtimer_update()
99 uint64_t inc = in a9_gtimer_update() local
100 QEMU_ALIGN_UP(update.new - gtb->compare, gtb->inc); in a9_gtimer_update()
102 PRId64 "\n", inc); in a9_gtimer_update()
103 gtb->compare += inc; in a9_gtimer_update()
169 ret = gtb->inc; in a9_gtimer_read()
223 gtb->inc = value; in a9_gtimer_write()
293 gtb->inc = 0; in a9_gtimer_reset()
340 VMSTATE_UINT32(inc, A9GTimerPerCPU),
/qemu/
H A D.gitattributes1 *.c.inc diff=c
2 *.h.inc diff=c
6 *.rs.inc diff=rust
H A D.editorconfig30 [*.{c,h,c.inc,h.inc}]
/qemu/scripts/
H A Dgit.orderfile17 *.rst.inc
34 *.h.inc
41 *.c.inc
H A Dextract-vsssdk-headers17 if test -e inc; then
33 mv "$tmpdir/Program Files/Microsoft/VSSSDK72/inc" inc
/qemu/tests/tcg/hexagon/
H A Dcirc.c98 static int32_t build_mreg(int32_t inc, int32_t K, int32_t len) in INIT()
100 return ((inc & 0x780) << 21) | in INIT()
102 ((inc & 0x7f) << 17) | in INIT()
221 void __check_load(int line, int32_t i, int64_t res, int32_t inc, int32_t size) in __check_load() argument
223 int32_t expect = (i * inc); in __check_load()
295 TYPE circ_val_##SZ(int i, int32_t inc, int32_t size) \ in TEST_LOAD_REG()
298 int elem = i * inc; \ in TEST_LOAD_REG()
322 void check_store_##SZ(int32_t inc, int32_t size) \
326 i, BUF[i], circ_val_##SZ(i, inc, size)); \
327 check64(BUF[i], circ_val_##SZ(i, inc, size)); \
/qemu/hw/intc/
H A Dppc-uic.c55 int start, end, inc, i; in ppcuic_trigger_irq() local
80 inc = -1; in ppcuic_trigger_irq()
84 inc = 1; in ppcuic_trigger_irq()
87 for (i = start; i <= end; i += inc) { in ppcuic_trigger_irq()
89 uic->uicvr += (i - start) * 512 * inc; in ppcuic_trigger_irq()
/qemu/hw/dma/
H A Dpl330.c188 bool inc; member
202 VMSTATE_BOOL(inc, PL330QueueEntry),
521 int len, int n, bool inc, bool z, uint8_t tag) in pl330_queue_put_insn() argument
533 entry->inc = inc; in pl330_queue_put_insn()
731 bool inc; in pl330_dmald() local
748 inc = !!(ch->control & 1); in pl330_dmald()
750 size, num, inc, 0, ch->tag); in pl330_dmald()
752 trace_pl330_dmald(ch->tag, ch->src, size, num, inc ? 'Y' : 'N'); in pl330_dmald()
753 ch->src += inc ? size * num - (ch->src & (size - 1)) : 0; in pl330_dmald()
909 bool inc; in pl330_dmast() local
[all …]
/qemu/target/xtensa/
H A Dimport_core.sh26 sed -n '1,/*\//p;/XTREG/,/XTREG_END/p' > "$TARGET"/gdb-config.c.inc
39 > "$TARGET"/xtensa-modules.c.inc
/qemu/fpu/
H A Dsoftfloat-parts.c.inc259 uint64_t inc;
269 inc = ((p->frac_hi & 1) || (p->frac_lo & round_mask) != frac_lsbm1
272 inc = ((p->frac_lo & roundeven_mask) != frac_lsbm1
277 inc = frac_lsbm1;
281 inc = 0;
284 inc = p->sign ? 0 : round_mask;
288 inc = p->sign ? round_mask : 0;
296 inc = p->frac_hi & 1 ? 0 : round_mask;
298 inc = p->frac_lo & frac_lsb ? 0 : round_mask;
309 if (frac_addi(p, p, inc)) {
[all …]
/qemu/docs/devel/testing/
H A Dci.rst25 .. include:: ci-jobs.rst.inc
26 .. include:: ci-runners.rst.inc
/qemu/docs/system/i386/
H A Dcpu.rst1 .. include:: ../cpu-models-x86.rst.inc
H A Dpc.rst7 .. include:: ../target-i386-desc.rst.inc
/qemu/host/include/x86_64/host/
H A Dbufferiszero.c.inc1 #include "host/include/i386/host/bufferiszero.c.inc"
/qemu/rust/qemu-api/
H A D.gitignore2 /src/bindings.inc.rs
H A DREADME.md8 $ make bindings.inc.rs
/qemu/tests/qtest/
H A Dnpcm7xx_watchdog_timer-test.c175 int inc = g_test_quick() ? 3 : 1; in test_prescaler() local
177 for (int wtclk = 0; wtclk < 4; wtclk += inc) { in test_prescaler()
178 for (int wtis = 0; wtis < 4; wtis += inc) { in test_prescaler()
/qemu/include/hw/timer/
H A Da9gtimer.h66 uint32_t inc; member

123