OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:io_mem_read
(Results
1 - 4
of
4
) sorted by null
/external/qemu/
memory-android.c
5
uint64_t
io_mem_read
(int io_index, hwaddr addr, unsigned size)
function
exec.c
[
all
...]
/external/qemu/include/exec/
softmmu_template.h
131
val =
io_mem_read
(index, physaddr, 1 << SHIFT);
134
val = (uint64_t)
io_mem_read
(index, physaddr, 4) << 32;
135
val |=
io_mem_read
(index, physaddr + 4, 4);
137
val =
io_mem_read
(index, physaddr, 4);
138
val |= (uint64_t)
io_mem_read
(index, physaddr + 4, 4) << 32;
exec-all.h
354
uint64_t
io_mem_read
(int index, hwaddr addr, unsigned size);
Completed in 71 milliseconds