curmap            389 sys/mem/vm.c   	vm_map_t curmap;
curmap            422 sys/mem/vm.c   	curmap = curtask->map;
curmap            423 sys/mem/vm.c   	if ((seg = seg_alloc(&curmap->head, size)) == NULL)
curmap            436 sys/mem/vm.c   	if (mmu_map(curmap->pgd, pa, cur->addr, size, map_type)) {
curmap            437 sys/mem/vm.c   		seg_free(&curmap->head, seg);
curmap            447 sys/mem/vm.c   	curmap->total += size;
curmap            323 sys/mem/vm_nommu.c 	vm_map_t curmap;
curmap            352 sys/mem/vm_nommu.c 	curmap = curtask->map;
curmap            353 sys/mem/vm_nommu.c 	if ((seg = seg_create(&curmap->head, start, size)) == NULL)
curmap            359 sys/mem/vm_nommu.c 	curmap->total += size;