/src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/ingenic/ |
rs90.dts | 24 vmem: video-memory@1f00000 { label 315 memory-region = <&vmem>;
|
/src/sys/sys/ |
vmem_impl.h | 30 * Data structures private to vmem. 41 #include <sys/vmem.h> 56 #include "vmem.h" 86 /* vmem arena */ 87 struct vmem { struct 109 LIST_ENTRY(vmem) vm_alllist; 147 * number of allocations from the vmem arena. This estimate is
|
/src/sys/dev/pci/ |
pci_resource.c | 47 #include <sys/vmem.h> 143 vmem_t *vmem; member in struct:pci_resource_arena 209 arena->vmem = vmem_create(pci_resource_typename(type), 215 * Reserve the range in the vmem for allocation. If there's 218 error = vmem_add(arena->vmem, start, end - start + 1, VM_SLEEP); 683 * Claim a resource from a vmem arena. This is called to inform the 692 return vmem_xalloc(arena->vmem, end - start + 1, 0, 0, 0, start, end, 699 * Allocate a resource from a vmem arena. This is called when configuring 712 error = vmem_xalloc(arena->vmem, size, align, 0, 0, VMEM_ADDR_MIN, 890 * create a new vmem arena for the secondary bus [all...] |
/src/sys/arch/arm/sunxi/ |
sunxi_debe.c | 583 uint32_t vmem = width * height * 4; local in function:sunxi_debe_set_videomode 585 if (vmem > sc->sc_dmasize) { 588 width, height, vmem, (unsigned int)sc->sc_dmasize);
|