Home
last modified time | relevance | path

Searched refs:USB_POOL_SIZE (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/stand/usb/
Dusbcore.mk54 USB_POOL_SIZE?= 131072
57 CFLAGS+= -DUSB_POOL_SIZE=${USB_POOL_SIZE}
/freebsd-12-stable/stand/kshim/
Dbsd_kernel.c1381 static uint8_t usb_pool[USB_POOL_SIZE] __aligned(USB_POOL_ALIGN);
1382 static uint32_t usb_pool_rem = USB_POOL_SIZE;
1415 hdr = (void *)(usb_pool + USB_POOL_SIZE - usb_pool_rem); in usb_malloc()
Dbsd_kernel.h546 #ifndef USB_POOL_SIZE
547 #define USB_POOL_SIZE (1024*1024) /* 1 MByte */ macro