| /Linux-v5.4/net/ieee802154/6lowpan/ | 
| D | rx.c | 54 static inline bool lowpan_is_frag1(u8 dispatch)  in lowpan_is_frag1()  argument 56 	return (dispatch & LOWPAN_DISPATCH_FRAG_MASK) == LOWPAN_DISPATCH_FRAG1;  in lowpan_is_frag1() 59 static inline bool lowpan_is_fragn(u8 dispatch)  in lowpan_is_fragn()  argument 61 	return (dispatch & LOWPAN_DISPATCH_FRAG_MASK) == LOWPAN_DISPATCH_FRAGN;  in lowpan_is_fragn() 122 static inline bool lowpan_is_esc(u8 dispatch)  in lowpan_is_esc()  argument 124 	return dispatch == LOWPAN_DISPATCH_ESC;  in lowpan_is_esc() 138 static inline bool lowpan_is_hc1(u8 dispatch)  in lowpan_is_hc1()  argument 140 	return dispatch == LOWPAN_DISPATCH_HC1;  in lowpan_is_hc1() 154 static inline bool lowpan_is_dff(u8 dispatch)  in lowpan_is_dff()  argument 156 	return dispatch == LOWPAN_DISPATCH_DFF;  in lowpan_is_dff() [all …] 
 | 
| /Linux-v5.4/drivers/net/ethernet/cavium/liquidio/ | 
| D | octeon_device.c | 712 	oct->dispatch.dlist = (struct octeon_dispatch *)  in octeon_allocate_device_mem() 1017 	oct->dispatch.count = 0;  in octeon_init_dispatch_list() 1020 		oct->dispatch.dlist[i].opcode = 0;  in octeon_init_dispatch_list() 1021 		INIT_LIST_HEAD(&oct->dispatch.dlist[i].list);  in octeon_init_dispatch_list() 1027 	spin_lock_init(&oct->dispatch.lock);  in octeon_init_dispatch_list() 1039 	spin_lock_bh(&oct->dispatch.lock);  in octeon_delete_dispatch_list() 1042 		struct list_head *dispatch;  in octeon_delete_dispatch_list()  local 1044 		dispatch = &oct->dispatch.dlist[i].list;  in octeon_delete_dispatch_list() 1045 		while (dispatch->next != dispatch) {  in octeon_delete_dispatch_list() 1046 			temp = dispatch->next;  in octeon_delete_dispatch_list() [all …] 
 | 
| D | octeon_droq.c | 59 	struct list_head *dispatch;  in octeon_get_dispatch_arg()  local 65 	spin_lock_bh(&octeon_dev->dispatch.lock);  in octeon_get_dispatch_arg() 67 	if (octeon_dev->dispatch.count == 0) {  in octeon_get_dispatch_arg() 68 		spin_unlock_bh(&octeon_dev->dispatch.lock);  in octeon_get_dispatch_arg() 72 	if (octeon_dev->dispatch.dlist[idx].opcode == combined_opcode) {  in octeon_get_dispatch_arg() 73 		fn_arg = octeon_dev->dispatch.dlist[idx].arg;  in octeon_get_dispatch_arg() 75 		list_for_each(dispatch,  in octeon_get_dispatch_arg() 76 			      &octeon_dev->dispatch.dlist[idx].list) {  in octeon_get_dispatch_arg() 77 			if (((struct octeon_dispatch *)dispatch)->opcode ==  in octeon_get_dispatch_arg() 80 					  dispatch)->arg;  in octeon_get_dispatch_arg() [all …] 
 | 
| /Linux-v5.4/drivers/scsi/sym53c8xx_2/ | 
| D | sym_fw1.h | 62 	u32 dispatch		[ 28];  member 417 		PADDR_A (dispatch), 434 		PADDR_A (dispatch), 443 		PADDR_A (dispatch), 464 		PADDR_A (dispatch), 483 		PADDR_A (dispatch), 499 		PADDR_A (dispatch), 524 		PADDR_A (dispatch), 543 		PADDR_A (dispatch), 557 		PADDR_A (dispatch), [all …] 
 | 
| D | sym_fw2.h | 63 	u32 dispatch		[ 28];  member 402 		PADDR_A (dispatch), 419 		PADDR_A (dispatch), 428 		PADDR_A (dispatch), 449 		PADDR_A (dispatch), 467 		PADDR_A (dispatch), 483 		PADDR_A (dispatch), 508 		PADDR_A (dispatch), 526 		PADDR_A (dispatch), 540 		PADDR_A (dispatch), [all …] 
 | 
| D | sym_fw.h | 37 	SYM_GEN_A(s, dispatch)		SYM_GEN_A(s, init)		\
  | 
| /Linux-v5.4/include/net/ | 
| D | 6lowpan.h | 88 static inline bool lowpan_is_ipv6(u8 dispatch)  in lowpan_is_ipv6()  argument 90 	return dispatch == LOWPAN_DISPATCH_IPV6;  in lowpan_is_ipv6() 93 static inline bool lowpan_is_iphc(u8 dispatch)  in lowpan_is_iphc()  argument 95 	return (dispatch & LOWPAN_DISPATCH_IPHC_MASK) == LOWPAN_DISPATCH_IPHC;  in lowpan_is_iphc()
  | 
| /Linux-v5.4/drivers/acpi/acpica/ | 
| D | evgpeutil.c | 300 				ACPI_FREE(gpe_event_info->dispatch.handler);  in acpi_ev_delete_gpe_handlers() 301 				gpe_event_info->dispatch.handler = NULL;  in acpi_ev_delete_gpe_handlers() 309 				notify = gpe_event_info->dispatch.notify_list;  in acpi_ev_delete_gpe_handlers() 316 				gpe_event_info->dispatch.notify_list = NULL;  in acpi_ev_delete_gpe_handlers()
  | 
| D | evgpe.c | 479 		notify = gpe_event_info->dispatch.notify_list;  in acpi_ev_asynch_execute_gpe_method() 503 			    gpe_event_info->dispatch.method_node;  in acpi_ev_asynch_execute_gpe_method() 514 							      dispatch.  in acpi_ev_asynch_execute_gpe_method() 703 		gpe_handler_info = gpe_event_info->dispatch.handler;  in acpi_ev_detect_gpe() 804 		    gpe_event_info->dispatch.handler->address(gpe_device,  in acpi_ev_gpe_dispatch() 807 							      dispatch.handler->  in acpi_ev_gpe_dispatch()
  | 
| D | evxface.c | 770 	handler->method_node = gpe_event_info->dispatch.method_node;  in ACPI_EXPORT_SYMBOL() 798 	gpe_event_info->dispatch.handler = handler;  in ACPI_EXPORT_SYMBOL() 948 	if (gpe_event_info->dispatch.handler->address != address) {  in ACPI_EXPORT_SYMBOL() 955 	handler = gpe_event_info->dispatch.handler;  in ACPI_EXPORT_SYMBOL() 956 	gpe_event_info->dispatch.handler = NULL;  in ACPI_EXPORT_SYMBOL() 960 	gpe_event_info->dispatch.method_node = handler->method_node;  in ACPI_EXPORT_SYMBOL()
  | 
| D | evxfgpe.c | 442 		notify = gpe_event_info->dispatch.notify_list;  in ACPI_EXPORT_SYMBOL() 454 		new_notify->next = gpe_event_info->dispatch.notify_list;  in ACPI_EXPORT_SYMBOL() 455 		gpe_event_info->dispatch.notify_list = new_notify;  in ACPI_EXPORT_SYMBOL()
  | 
| D | evgpeinit.c | 407 	gpe_event_info->dispatch.method_node = method_node;  in acpi_ev_match_gpe_method()
  | 
| D | psxface.c | 161 		    info->obj_desc->method.dispatch.implementation(walk_state);  in acpi_ps_execute_method()
  | 
| /Linux-v5.4/drivers/infiniband/hw/cxgb3/ | 
| D | iwch.c | 201 	int dispatch = 0;  in iwch_event_handler()  local 211 		dispatch = 1;  in iwch_event_handler() 216 		dispatch = 1;  in iwch_event_handler() 221 		dispatch = 1;  in iwch_event_handler() 249 	if (dispatch) {  in iwch_event_handler()
  | 
| /Linux-v5.4/Documentation/powerpc/ | 
| D | vcpudispatch_stats.txt | 6 chips (representing the "home" node) and tries to always dispatch vcpus 12 related to the vcpu dispatch behavior. Writing '1' to this file enables 25 The next 4 numbers represent vcpu dispatch dispersions: 64 its last dispatch.
  | 
| /Linux-v5.4/block/ | 
| D | mq-deadline.c | 64 	struct list_head dispatch;  member 277 	if (!list_empty(&dd->dispatch)) {  in __dd_dispatch_request() 278 		rq = list_first_entry(&dd->dispatch, struct request, queuelist);  in __dd_dispatch_request() 433 	INIT_LIST_HEAD(&dd->dispatch);  in dd_init_queue() 503 			list_add(&rq->queuelist, &dd->dispatch);  in dd_insert_request() 505 			list_add_tail(&rq->queuelist, &dd->dispatch);  in dd_insert_request() 582 	return !list_empty_careful(&dd->dispatch) ||  in dd_has_work() 733 	return seq_list_start(&dd->dispatch, *pos);  in deadline_dispatch_start() 741 	return seq_list_next(v, &dd->dispatch, pos);  in deadline_dispatch_next()
  | 
| D | blk-mq-sched.c | 187 	if (!list_empty_careful(&hctx->dispatch)) {  in blk_mq_sched_dispatch_requests() 189 		if (!list_empty(&hctx->dispatch))  in blk_mq_sched_dispatch_requests() 190 			list_splice_init(&hctx->dispatch, &rq_list);  in blk_mq_sched_dispatch_requests() 367 		list_add(&rq->queuelist, &hctx->dispatch);  in blk_mq_sched_bypass_insert()
  | 
| /Linux-v5.4/arch/xtensa/kernel/ | 
| D | vectors.S | 73 	xsr	a3, excsave1		# save a3 and get dispatch table 81 	xsr	a3, excsave1		# restore a3 and dispatch table 100 	xsr	a3, excsave1		# save a3, and get dispatch table 108 	xsr	a3, excsave1		# restore a3 and dispatch table
  | 
| /Linux-v5.4/Documentation/block/ | 
| D | deadline-iosched.rst | 50 device dispatch queue, we always give a preference to reads. However, we 53 done writes_starved number of times, we dispatch some writes based on the
  | 
| /Linux-v5.4/drivers/gpu/drm/nouveau/nvkm/engine/ce/fuc/ | 
| D | com.fuc | 174       call #dispatch 284 dispatch: 293    // lookup method in the dispatch table, ILLEGAL_MTHD if not found 321    // depending on dispatch flags: execute method, or save data as state 364 //    $r4: dispatch table entry 379 //    $r4: dispatch table entry 399 //    $r4: dispatch table entry 777 //    $r4: dispatch table entry 851 //    $r4: dispatch table entry
  | 
| /Linux-v5.4/drivers/scsi/ | 
| D | ncr53c8xx.c | 1804 	ncrcmd  dispatch	[ 32];  member 2172 		PADDR (dispatch), 2238 		PADDR (dispatch), 2247 		PADDR (dispatch), 2275 		PADDR (dispatch), 2294 		PADDR (dispatch), 2482 		PADDR (dispatch), 2551 		PADDR (dispatch), 2727 		PADDR (dispatch), 2748 		PADDR (dispatch), [all …] 
 | 
| /Linux-v5.4/Documentation/admin-guide/device-mapper/ | 
| D | dm-queue-length.rst | 13 	<repeat_count>: The number of I/Os to dispatch using the selected
  | 
| /Linux-v5.4/arch/sh/kernel/cpu/sh3/ | 
| D | entry.S | 482 	 * path and special case the event dispatch instead.  This is the 484 	 * exception), which effectively wants regular exception dispatch
  | 
| /Linux-v5.4/drivers/scsi/mvsas/ | 
| D | mv_sas.h | 170 	const struct mvs_dispatch *dispatch;  member 176 #define MVS_CHIP_DISP		(mvi->chip->dispatch)
  | 
| /Linux-v5.4/drivers/media/pci/cx18/ | 
| D | cx18-mailbox.c | 155 	int dispatch = 0;  in cx18_mdl_send_to_videobuf()  local 186 		dispatch = 1;  in cx18_mdl_send_to_videobuf() 190 	if (dispatch) {  in cx18_mdl_send_to_videobuf()
  |