Searched refs:pvh_e (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/osfmk/i386/
H A Dpmap_common.c223 pv_hashed_entry_t pvh_e; local
241 pvh_e = (pv_hashed_entry_t) zalloc(pv_hashed_list_zone);
243 pvh_e->qlink.next = (queue_entry_t)pvh_eh;
244 pvh_eh = pvh_e;
247 pvh_et = pvh_e;
255 pvh_e = (pv_hashed_entry_t) zalloc(pv_hashed_list_zone);
257 pvh_e->qlink.next = (queue_entry_t)pvh_eh;
258 pvh_eh = pvh_e;
261 pvh_et = pvh_e;
288 pv_hashed_entry_t pvh_e; local
[all...]
H A Dpmap_x86_common.c337 pv_hashed_entry_t pvh_e, nexth; local
357 pvh_e = (pv_hashed_entry_t)pv_e;
367 nexth = (pv_hashed_entry_t)queue_next(&pvh_e->qlink);
370 pvh_e = nexth;
429 pv_hashed_entry_t pvh_e; local
482 pvh_e = PV_HASHED_ENTRY_NULL;
660 pvh_e = pmap_pv_remove(pmap, vaddr, (ppnum_t *) &pai, &old_pte);
707 if ((PV_HASHED_ENTRY_NULL == pvh_e) && pvh_new) {
708 pvh_e = pvh_new;
710 } else if (PV_HASHED_ENTRY_NULL == pvh_e) {
857 pv_hashed_entry_t pvh_e; local
1119 pv_hashed_entry_t pvh_e; local
[all...]
H A Dpmap_internal.h310 static inline void PV_HASHED_KERN_ALLOC(pv_hashed_entry_t *pvh_e) { argument
311 pmap_assert(*pvh_e == PV_HASHED_ENTRY_NULL);
314 if ((*pvh_e = pv_hashed_kern_free_list) != 0) {
315 pv_hashed_kern_free_list = (pv_hashed_entry_t)(*pvh_e)->qlink.next;
511 pv_hash_add(pv_hashed_entry_t pvh_e, argument
518 pvhash_idx = pvhashidx(pvh_e->pmap, pvh_e->va);
520 insque(&pvh_e->qlink, &pv_h->qlink);
524 panic("pv_hash_add(%p) null hash bucket", pvh_e);
526 pvh_e
532 pv_hash_remove(pv_hashed_entry_t pvh_e) argument
736 pv_hashed_entry_t pvh_e; local
[all...]
/darwin-on-arm/xnu/osfmk/arm/
H A Dpmap.c427 #define PV_HASHED_ALLOC(pvh_e) { \
429 if ((pvh_e = pv_hashed_free_list) != 0) { \
430 pv_hashed_free_list = (pv_hashed_entry_t)pvh_e->qlink.next; \
447 #define PV_HASHED_KERN_ALLOC(pvh_e) { \
449 if ((pvh_e = pv_hashed_kern_free_list) != 0) { \
450 pv_hashed_kern_free_list = (pv_hashed_entry_t)pvh_e->qlink.next; \
691 static inline void pv_hash_add(pv_hashed_entry_t pvh_e, pv_rooted_entry_t pv_h) argument
697 pvhash_idx = pvhashidx(pvh_e->pmap, pvh_e->va);
699 insque(&pvh_e
745 pv_hash_remove(pv_hashed_entry_t pvh_e) argument
941 pv_hashed_entry_t pvh_e; local
1320 pv_hashed_entry_t pvh_e, nexth; local
1536 pv_hashed_entry_t pvh_e; local
1573 pv_hashed_entry_t pvh_e; local
2840 pv_hashed_entry_t pvh_e; local
3344 pv_hashed_entry_t pvh_e; local
3586 pv_hashed_entry_t pvh_e; local
[all...]

Completed in 24 milliseconds