Home
last modified time | relevance | path

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

/NextBSD/lib/libkvm/
HDkvm.c307 struct hpte *hpte; in _kvm_hpt_insert() local
312 hpte = malloc(sizeof(*hpte)); in _kvm_hpt_insert()
313 hpte->pa = pa; in _kvm_hpt_insert()
314 hpte->off = off; in _kvm_hpt_insert()
315 hpte->next = hpt->hpt_head[fnv]; in _kvm_hpt_insert()
316 hpt->hpt_head[fnv] = hpte; in _kvm_hpt_insert()
347 struct hpte *hpte; in _kvm_hpt_find() local
352 for (hpte = hpt->hpt_head[fnv]; hpte != NULL; hpte = hpte->next) { in _kvm_hpt_find()
353 if (pa == hpte->pa) in _kvm_hpt_find()
354 return (hpte->off); in _kvm_hpt_find()
[all …]
HDkvm_private.h106 struct hpte { struct
107 struct hpte *next; argument
115 struct hpte *hpt_head[HPT_SIZE]; argument