Searched defs:qemu_put_byte (Results 1 - 1 of 1) sorted by relevance

/external/qemu/
H A Dsavevm.c517 void qemu_put_byte(QEMUFile *f, int v) function
655 qemu_put_byte(f, v >> 8);
656 qemu_put_byte(f, v);
661 qemu_put_byte(f, v >> 24);
662 qemu_put_byte(f, v >> 16);
663 qemu_put_byte(f, v >> 8);
664 qemu_put_byte(f, v);
709 qemu_put_byte(f, p[0]);
914 qemu_put_byte(f, QEMU_VM_SECTION_START);
919 qemu_put_byte(
[all...]

Completed in 94 milliseconds