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

/external/qemu/
H A Dexec.c144 typedef struct PageDesc { struct
154 } PageDesc; typedef in typeref:struct:PageDesc
182 static PageDesc *l1_map[L1_SIZE];
296 static inline PageDesc **page_l1_map(target_ulong index)
307 static inline PageDesc *page_find_alloc(target_ulong index)
309 PageDesc **lp, *p;
318 size_t len = sizeof(PageDesc) * L2_SIZE;
330 p = qemu_mallocz(sizeof(PageDesc) * L2_SIZE);
337 static inline PageDesc *page_find(target_ulong index)
339 PageDesc **l
[all...]

Completed in 15 milliseconds