OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IO_MEM_NB_ENTRIES
(Results
1 - 4
of
4
) sorted by null
/external/qemu/
exec-all.h
341
extern CPUWriteMemoryFunc *io_mem_write[
IO_MEM_NB_ENTRIES
][4];
342
extern CPUReadMemoryFunc *io_mem_read[
IO_MEM_NB_ENTRIES
][4];
343
extern void *io_mem_opaque[
IO_MEM_NB_ENTRIES
];
softmmu_template.h
74
index = (physaddr >> IO_MEM_SHIFT) & (
IO_MEM_NB_ENTRIES
- 1);
253
index = (physaddr >> IO_MEM_SHIFT) & (
IO_MEM_NB_ENTRIES
- 1);
exec.c
180
CPUWriteMemoryFunc *io_mem_write[
IO_MEM_NB_ENTRIES
][4];
181
CPUReadMemoryFunc *io_mem_read[
IO_MEM_NB_ENTRIES
][4];
182
void *io_mem_opaque[
IO_MEM_NB_ENTRIES
];
183
static char io_mem_used[
IO_MEM_NB_ENTRIES
];
[
all
...]
cpu-all.h
941
#define
IO_MEM_NB_ENTRIES
(1 << (TARGET_PAGE_BITS - IO_MEM_SHIFT))
Completed in 28 milliseconds