Home
last modified time | relevance | path

Searched refs:L1_SIZE (Results 1 – 1 of 1) sorted by relevance

/external/qemu/
Dexec.c159 #define L1_SIZE (1 << L1_BITS) macro
168 static PageDesc *l1_map[L1_SIZE];
250 l1_phys_map = qemu_vmalloc(L1_SIZE * sizeof(void *)); in page_init()
251 memset(l1_phys_map, 0, L1_SIZE * sizeof(void *)); in page_init()
287 if (index > ((target_ulong)L2_SIZE * L1_SIZE)) in page_l1_map()
348 lp = p + ((index >> (L1_BITS + L2_BITS)) & (L1_SIZE - 1)); in phys_page_find_alloc()
354 p = qemu_vmalloc(sizeof(void *) * L1_SIZE); in phys_page_find_alloc()
355 memset(p, 0, sizeof(void *) * L1_SIZE); in phys_page_find_alloc()
359 lp = p + ((index >> L2_BITS) & (L1_SIZE - 1)); in phys_page_find_alloc()
541 for(i = 0; i < L1_SIZE; i++) { in page_flush_tb()
[all …]