subr_vmem.c | 1040 if (vmem_add(vm, base, size, flags) != 0) { 1512 * vmem_add: 1519 vmem_add(vmem_t *vm, vmem_addr_t addr, vmem_size_t size, vm_flag_t flags) function in typeref:typename:int 1826 rc = vmem_add(vm, 0, 50, VM_SLEEP); 1828 rc = vmem_add(vm, 100, 200, VM_SLEEP); 1830 rc = vmem_add(vm, 2000, 1, VM_SLEEP); 1832 rc = vmem_add(vm, 40000, 65536, VM_SLEEP); 1834 rc = vmem_add(vm, 10000, 10000, VM_SLEEP); 1836 rc = vmem_add(vm, 500, 1000, VM_SLEEP); 1838 rc = vmem_add(vm, 0xffffff00, 0x100, VM_SLEEP) [all...] |