Lines Matching refs:i

105     for (word_t i = 0; i < BIT(PT_INDEX_OFFSET + PT_INDEX_BITS); i += (1UL << PT_INDEX_OFFSET)) {  in x86_64_obj_pt_print_slots()  local
106 pte_t *ptSlot = pt + GET_PT_INDEX(i); in x86_64_obj_pt_print_slots()
111 printf("frame_%p_%04lu = frame ", ptSlot, GET_PT_INDEX(i)); in x86_64_obj_pt_print_slots()
123 for (word_t i = 0; i < BIT(PD_INDEX_OFFSET + PD_INDEX_BITS); i += (1UL << PD_INDEX_OFFSET)) { in x86_64_obj_pd_print_slots() local
124 pde_t *pdSlot = pd + GET_PD_INDEX(i); in x86_64_obj_pd_print_slots()
130 printf("frame_%p_%04lu = frame ", pdSlot, GET_PD_INDEX(i)); in x86_64_obj_pd_print_slots()
134 printf("pt_%p_%04lu = pt\n", pdSlot, GET_PD_INDEX(i)); in x86_64_obj_pd_print_slots()
146 …for (word_t i = 0; i < BIT(PDPT_INDEX_OFFSET + PDPT_INDEX_BITS); i += (1UL << PDPT_INDEX_OFFSET)) { in x86_64_obj_pdpt_print_slots() local
147 pdpte_t *pdptSlot = pdpt + GET_PDPT_INDEX(i); in x86_64_obj_pdpt_print_slots()
154 printf("frame_%p_%04lu = frame ", pdptSlot, GET_PDPT_INDEX(i)); in x86_64_obj_pdpt_print_slots()
158 printf("pd_%p_%04lu = pd\n", pdptSlot, GET_PDPT_INDEX(i)); in x86_64_obj_pdpt_print_slots()
166 …for (word_t i = 0; i < BIT(PML4_INDEX_OFFSET + PML4_INDEX_BITS); i += (1UL << PML4_INDEX_OFFSET)) { in x86_64_obj_pml4_print_slots() local
167 pml4e_t *pml4Slot = lookupPML4Slot(pml4, i); in x86_64_obj_pml4_print_slots()
169 printf("pdpt_%p_%04lu = pdpt\n", pml4Slot, GET_PML4_INDEX(i)); in x86_64_obj_pml4_print_slots()
386 for (word_t i = 0; i < BIT(PT_INDEX_OFFSET + PT_INDEX_BITS); i += (1UL << PT_INDEX_OFFSET)) { in x86_64_cap_pt_print_slots() local
387 pte_t *ptSlot = pt + GET_PT_INDEX(i); in x86_64_cap_pt_print_slots()
390 printf("0x%lx: frame_%p_%04lu ", GET_PT_INDEX(i), ptSlot, GET_PT_INDEX(i)); in x86_64_cap_pt_print_slots()
402 for (word_t i = 0; i < BIT(PD_INDEX_OFFSET + PD_INDEX_BITS); i += (1UL << PD_INDEX_OFFSET)) { in x86_64_cap_pd_print_slots() local
403 pde_t *pdSlot = pd + GET_PD_INDEX(i); in x86_64_cap_pd_print_slots()
406 printf("0x%lx: frame_%p_%04lu ", GET_PD_INDEX(i), pdSlot, GET_PD_INDEX(i)); in x86_64_cap_pd_print_slots()
410 printf("0x%lx: pt_%p_%04lu\n", GET_PD_INDEX(i), pdSlot, GET_PD_INDEX(i)); in x86_64_cap_pd_print_slots()
415 for (word_t i = 0; i < BIT(PD_INDEX_OFFSET + PD_INDEX_BITS); i += (1UL << PD_INDEX_OFFSET)) { in x86_64_cap_pd_print_slots() local
416 pde_t *pdSlot = pd + GET_PD_INDEX(i); in x86_64_cap_pd_print_slots()
418 x86_64_cap_pt_print_slots(pdSlot, i); in x86_64_cap_pd_print_slots()
428 …for (word_t i = 0; i < BIT(PDPT_INDEX_OFFSET + PDPT_INDEX_BITS); i += (1UL << PDPT_INDEX_OFFSET)) { in x86_64_cap_pdpt_print_slots() local
429 pdpte_t *pdptSlot = pdpt + GET_PDPT_INDEX(i); in x86_64_cap_pdpt_print_slots()
433 printf("0x%lx: frame_%p_%04lu ", GET_PDPT_INDEX(i), pdptSlot, GET_PDPT_INDEX(i)); in x86_64_cap_pdpt_print_slots()
437 printf("0x%lx: pd_%p_%04lu\n", GET_PDPT_INDEX(i), pdptSlot, GET_PDPT_INDEX(i)); in x86_64_cap_pdpt_print_slots()
442 …for (word_t i = 0; i < BIT(PDPT_INDEX_OFFSET + PDPT_INDEX_BITS); i += (1UL << PDPT_INDEX_OFFSET)) { in x86_64_cap_pdpt_print_slots() local
443 pdpte_t *pdptSlot = pdpt + GET_PDPT_INDEX(i); in x86_64_cap_pdpt_print_slots()
446 x86_64_cap_pd_print_slots(pdptSlot, i); in x86_64_cap_pdpt_print_slots()
454 …for (word_t i = 0; i < BIT(PML4_INDEX_OFFSET + PML4_INDEX_BITS); i += (1UL << PML4_INDEX_OFFSET)) { in x86_64_cap_pml4_print_slots() local
455 pml4e_t *pml4Slot = lookupPML4Slot(pml4, i); in x86_64_cap_pml4_print_slots()
457 printf("0x%lx: pdpt_%p_%04lu\n", GET_PML4_INDEX(i), pml4Slot, GET_PML4_INDEX(i)); in x86_64_cap_pml4_print_slots()
462 …for (word_t i = 0; i < BIT(PML4_INDEX_OFFSET + PML4_INDEX_BITS); i += (1UL << PML4_INDEX_OFFSET)) { in x86_64_cap_pml4_print_slots() local
463 pml4e_t *pml4Slot = lookupPML4Slot(pml4, i); in x86_64_cap_pml4_print_slots()
465 x86_64_cap_pdpt_print_slots(pml4Slot, i); in x86_64_cap_pml4_print_slots()