/qemu/dump/ |
H A D | dump-hmp-cmds.c | 25 bool has_begin = qdict_haskey(qdict, "begin"); in hmp_dump_guest_memory() 28 int64_t begin = 0; in hmp_dump_guest_memory() local 69 begin = qdict_get_int(qdict, "begin"); in hmp_dump_guest_memory() 80 qmp_dump_guest_memory(paging, prot, true, detach, has_begin, begin, in hmp_dump_guest_memory()
|
/qemu/block/ |
H A D | vvfat.c | 254 uint16_t begin; member 261 /* begin is the first cluster, end is the last+1 */ 262 uint32_t begin,end; member 419 entry->begin=0; in create_long_filename() 478 return le16_to_cpu(direntry->begin)|(le16_to_cpu(direntry->begin_hi)<<16); in begin_of_direntry() 486 static void set_begin_of_direntry(direntry_t* direntry, uint32_t begin) in set_begin_of_direntry() argument 488 direntry->begin = cpu_to_le16(begin & 0xffff); in set_begin_of_direntry() 489 direntry->begin_hi = cpu_to_le16((begin >> 16) & 0xffff); in set_begin_of_direntry() 749 int first_cluster = mapping->begin; in read_directory() 753 int first_cluster_of_parent = parent_mapping ? parent_mapping->begin : -1; in read_directory() [all …]
|
H A D | dmg.c | 159 * marks the begin of the UDIF trailer (512 bytes). This magic can be found in dmg_find_koly_offset() 243 /* move to begin of chunk entries */ in dmg_read_mish_block() 337 /* read offset from begin of resource fork (info_begin) to resource data */ in dmg_read_resource_fork() 355 /* begin of resource data (consisting of one or more resources) */ in dmg_read_resource_fork()
|
/qemu/system/ |
H A D | memory_mapping.c | 351 void memory_mapping_filter(MemoryMappingList *list, int64_t begin, in memory_mapping_filter() argument 357 if (!ranges_overlap(cur->phys_addr, cur->length, begin, length)) { in memory_mapping_filter() 364 if (cur->phys_addr < begin) { in memory_mapping_filter() 365 cur->length -= begin - cur->phys_addr; in memory_mapping_filter() 367 cur->virt_addr += begin - cur->phys_addr; in memory_mapping_filter() 369 cur->phys_addr = begin; in memory_mapping_filter() 372 if (cur->phys_addr + cur->length > begin + length) { in memory_mapping_filter() 373 cur->length -= cur->phys_addr + cur->length - begin - length; in memory_mapping_filter()
|
/qemu/hw/sd/ |
H A D | sdhci.c | 602 unsigned int begin; in sdhci_sdma_transfer_multi_blocks() local 628 begin = s->data_count; in sdhci_sdma_transfer_multi_blocks() 629 if (((boundary_count + begin) < block_size) && page_aligned) { in sdhci_sdma_transfer_multi_blocks() 630 s->data_count = boundary_count + begin; in sdhci_sdma_transfer_multi_blocks() 634 boundary_count -= block_size - begin; in sdhci_sdma_transfer_multi_blocks() 639 dma_memory_write(s->dma_as, s->sdmasysad, &s->fifo_buffer[begin], in sdhci_sdma_transfer_multi_blocks() 640 s->data_count - begin, MEMTXATTRS_UNSPECIFIED); in sdhci_sdma_transfer_multi_blocks() 641 s->sdmasysad += s->data_count - begin; in sdhci_sdma_transfer_multi_blocks() 652 begin = s->data_count; in sdhci_sdma_transfer_multi_blocks() 653 if (((boundary_count + begin) < block_size) && page_aligned) { in sdhci_sdma_transfer_multi_blocks() [all …]
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | test_patching.py | 50 regexp = S(r'BEGIN\s+', NAMED('name', RE_IDENTIFIER), r'\n', 60 'BEGIN function1\n', 64 'BEGIN function2\n',
|
/qemu/qapi/ |
H A D | dump.json | 82 # @begin: if specified, the starting physical address. 85 # to dump all guest's memory, please specify the start @begin and 89 # format is conflict with paging and filter, ie. @paging, @begin 105 '*begin': 'int', '*length': 'int',
|
/qemu/scripts/ |
H A D | simpletrace.py | 138 An analyzer can be passed to run() or process(). The begin() method is 141 statement), begin() and end() are called automatically. 167 def begin(self): member in Analyzer 214 self.begin() 225 An analyzer can be passed to run() or process(). The begin() method is 228 statement), begin() and end() are called automatically.
|
H A D | signrom.py | 24 sys.exit("%s: option ROM does not begin with magic 55 aa" % sys.argv[1])
|
H A D | fix-multiline-comments.sh | 21 ${AWK-awk} $inplace 'BEGIN { indent = -1 }
|
/qemu/tests/qemu-iotests/ |
H A D | 303 | 51 def add_bitmap(num, begin, end, disabled): argument 54 for i in range(begin, end):
|
/qemu/ |
H A D | .patchew.yml | 98 … {% lines_between logtext start="^=== TEST SCRIPT BEGIN ===$" stop="^=== TEST SCRIPT END ===$" %} 99 … {% lines_between logtext start="^=== OUTPUT BEGIN ===$" stop="=== OUTPUT END ===$" as output %} 106 … {% lines_between logtext start="^=== TEST SCRIPT BEGIN ===$" stop="^=== TEST SCRIPT END ===$" %} 107 … {% lines_between logtext start="^=== OUTPUT BEGIN ===$" stop="=== OUTPUT END ===$" as output %}
|
/qemu/hw/pci-host/ |
H A D | gt64120.c | 274 hwaddr begin = *start; in check_reserved_space() local 280 if (begin >= 0x1e000000LL && begin < 0x1f100000LL) { in check_reserved_space() 281 begin = 0x1f100000LL; in check_reserved_space() 286 if (begin >= 0x1fc00000LL && begin < 0x1fd00000LL) { in check_reserved_space() 287 begin = 0x1fd00000LL; in check_reserved_space() 290 if (end >= 0x1f100000LL && begin < 0x1e000000LL) { in check_reserved_space() 293 if (end >= 0x1fd00000LL && begin < 0x1fc00000LL) { in check_reserved_space() 297 *start = begin; in check_reserved_space() 298 *length = end - begin; in check_reserved_space()
|
/qemu/tests/qapi-schema/ |
H A D | reserved-member-underscore.json | 3 # begin with a letter or a downstream extension double-underscore prefix).
|
/qemu/include/hw/arm/ |
H A D | fsl-imx7.h | 134 /* AIPS-3 Begin */ 219 /* AIPS-2 Begin */ 283 /* AIPS-1 Begin */
|
H A D | fsl-imx6ul.h | 115 /* AIPS-2 Begin */ 203 /* AIPS-1 Begin */
|
/qemu/qga/vss-win32/ |
H A D | vss-debug.h | 22 #define qga_debug_begin qga_debug("begin")
|
/qemu/tests/keys/ |
H A D | id_rsa | 1 -----BEGIN RSA PRIVATE KEY-----
|
H A D | vagrant | 1 -----BEGIN RSA PRIVATE KEY-----
|
/qemu/docs/devel/ |
H A D | rcu.rst | 35 the old data. Therefore, critical sections that begin after removal 46 | begin wait 50 begin reclamation phase |
|
/qemu/include/system/ |
H A D | memory_mapping.h | 82 void memory_mapping_filter(MemoryMappingList *list, int64_t begin,
|
/qemu/hw/arm/ |
H A D | fsl-imx8mp.c | 58 /* AIPS-5 Begin */ 82 /* AIPS-4 Begin */ 102 /* AIPS-3 Begin */ 134 /* AIPS-2 Begin */ 151 /* AIPS-1 Begin */
|
/qemu/qobject/ |
H A D | json-lexer.c | 28 * begin-array = ws %x5B ws ; [ left square bracket 29 * begin-object = ws %x7B ws ; { left curly bracket
|
/qemu/target/hexagon/idef-parser/ |
H A D | parser-helpers.h | 215 HexValue *begin, 228 unsigned begin,
|
/qemu/linux-user/loongarch64/ |
H A D | cpu_loop.c | 100 * Begin with LSX and LASX disabled, then enable on the first trap. in cpu_loop()
|