Lines Matching refs:r
16 static bool is_region_valid(struct vm_region *r) in is_region_valid() argument
22 return ((r->flags & want) == want && !(r->flags & dontwant)); in is_region_valid()
49 struct vm_region *r = NULL; in hash_regions() local
67 TAILQ_FOREACH(r, &vm_info->regions, link) in hash_regions()
68 if (is_region_valid(r)) in hash_regions()
77 TAILQ_FOREACH(r, &vm_info->regions, link) in hash_regions()
78 if (is_region_valid(r)) in hash_regions()
79 regions[i++] = r; in hash_regions()
89 r = regions[i]; in hash_regions()
90 DMSG("va %p size %zu", (void *)r->va, r->size); in hash_regions()
91 res = crypto_hash_update(ctx, (uint8_t *)r->va, r->size); in hash_regions()