Lines Matching +full:0 +full:x7000000

42 #define	nitems(x)	(sizeof((x)) / sizeof((x)[0]))
44 #define isdigit(x) ((x) >= '0' && (x) <= '9')
45 #define panic(...) do { printf("USB PANIC: " __VA_ARGS__); while (1) ; } while (0)
46 #define rebooting 0
47 #define M_USB 0
48 #define M_USBDEV 0
53 #define USB_BUS_EXPLORE_PROC(bus) (usb_process + 0)
72 #define sysctl_ctx_init(ctx) do { (void)(ctx); } while (0)
73 #define sysctl_ctx_free(ctx) do { (void)(ctx); } while (0)
81 #define SCHEDULER_STOPPED(x) (0)
82 #define PI_SWI(...) (0)
89 #define DEVMETHOD_END {0,0}
94 &driver, { 0, 0 } }; \
117 #define NULL ((void *)0)
118 #define BUS_SPACE_BARRIER_READ 0x01
119 #define BUS_SPACE_BARRIER_WRITE 0x02
129 #define MTX_DEF 0
130 #define MTX_SPIN 0
131 #define MTX_RECURSE 0
132 #define SX_DUPOK 0
133 #define SX_NOWITNESS 0
135 #define cold 0
136 #define BUS_PROBE_GENERIC 0
139 #define CALLOUT_RETURNUNLOCKED 0x1
174 SI_SUB_DUMMY = 0x0000000,
175 SI_SUB_LOCK = 0x1B00000,
176 SI_SUB_KLD = 0x2000000,
177 SI_SUB_DRIVERS = 0x3100000,
178 SI_SUB_PSEUDO = 0x7000000,
179 SI_SUB_KICK_SCHEDULER = 0xa000000,
180 SI_SUB_RUN_SCHEDULER = 0xfffffff
184 SI_ORDER_FIRST = 0x0000000,
185 SI_ORDER_SECOND = 0x0000001,
186 SI_ORDER_THIRD = 0x0000002,
187 SI_ORDER_FOURTH = 0x0000003,
188 SI_ORDER_MIDDLE = 0x1000000,
189 SI_ORDER_ANY = 0xfffffff /* last */
198 #define INT32_MAX 0x7fffffff
270 BUS_DMA_LOCK = 0x01,
271 BUS_DMA_UNLOCK = 0x02,
283 #define false 0
302 #define mtx_assert(...) do { } while (0)
319 #define sx_assert(...) do { } while (0)
320 #define sx_init(...) sx_init_flags(__VA_ARGS__, 0)
376 #define FILTER_STRAY 0x01
377 #define FILTER_HANDLED 0x02
378 #define FILTER_SCHEDULE_THREAD 0x04
638 #define RF_ALLOCATED 0x0001 /* resource has been reserved */
639 #define RF_ACTIVE 0x0002 /* resource allocation has been activated */
640 #define RF_SHAREABLE 0x0004 /* resource permits contemporaneous sharing */
641 #define RF_SPARE1 0x0008
642 #define RF_SPARE2 0x0010
643 #define RF_FIRSTSHARE 0x0020 /* first in sharing list */
644 #define RF_PREFETCHABLE 0x0040 /* resource is prefetchable */
645 #define RF_OPTIONAL 0x0080 /* for bus_alloc_resources() */
676 #define BUS_SPACE_MAXADDR_24BIT 0xFFFFFF
677 #define BUS_SPACE_MAXADDR_32BIT 0xFFFFFFFF
678 #define BUS_SPACE_MAXADDR 0xFFFFFFFF
679 #define BUS_SPACE_MAXSIZE_24BIT 0xFFFFFF
680 #define BUS_SPACE_MAXSIZE_32BIT 0xFFFFFFFF
681 #define BUS_SPACE_MAXSIZE 0xFFFFFFFF
683 #define BUS_DMA_WAITOK 0x00 /* safe to sleep (pseudo-flag) */
684 #define BUS_DMA_NOWAIT 0x01 /* not safe to sleep */
685 #define BUS_DMA_ALLOCNOW 0x02 /* perform resource allocation now */
686 #define BUS_DMA_COHERENT 0x04 /* hint: map memory in a coherent way */
687 #define BUS_DMA_ZERO 0x08 /* allocate zero'ed memory */
688 #define BUS_DMA_BUS1 0x10 /* placeholders for bus functions... */
689 #define BUS_DMA_BUS2 0x20
690 #define BUS_DMA_BUS3 0x40
691 #define BUS_DMA_BUS4 0x80
693 #define BUS_DMASYNC_PREREAD 0x01
694 #define BUS_DMASYNC_POSTREAD 0x02
695 #define BUS_DMASYNC_PREWRITE 0x04
696 #define BUS_DMASYNC_POSTWRITE 0x08
719 #define sbuf_printf(...) do { } while (0)