Lines Matching refs:L1_SIZE
165 #define L1_SIZE (1 << L1_BITS) macro
174 static PageDesc *l1_map[L1_SIZE];
260 l1_phys_map = qemu_vmalloc(L1_SIZE * sizeof(void *)); in page_init()
261 memset(l1_phys_map, 0, L1_SIZE * sizeof(void *)); in page_init()
297 if (index > ((target_ulong)L2_SIZE * L1_SIZE)) in page_l1_map()
358 lp = p + ((index >> (L1_BITS + L2_BITS)) & (L1_SIZE - 1)); in phys_page_find_alloc()
364 p = qemu_vmalloc(sizeof(void *) * L1_SIZE); in phys_page_find_alloc()
365 memset(p, 0, sizeof(void *) * L1_SIZE); in phys_page_find_alloc()
369 lp = p + ((index >> L2_BITS) & (L1_SIZE - 1)); in phys_page_find_alloc()
624 for(i = 0; i < L1_SIZE; i++) { in page_flush_tb()
2152 for (i = 0; i <= L1_SIZE; i++) { in walk_memory_regions()
2153 p = (i < L1_SIZE) ? l1_map[i] : NULL; in walk_memory_regions()