Home
last modified time | relevance | path

Searched refs:element (Results 1 – 200 of 222) sorted by relevance

12

/linux-4.4.14/mm/
Dmempool.c24 static void poison_error(mempool_t *pool, void *element, size_t size, in poison_error() argument
34 pr_err(" nr=%d @ %p: %s0x", nr, element, start > 0 ? "... " : ""); in poison_error()
36 pr_cont("%x ", *(u8 *)(element + i)); in poison_error()
41 static void __check_element(mempool_t *pool, void *element, size_t size) in __check_element() argument
43 u8 *obj = element; in __check_element()
50 poison_error(pool, element, size, i); in __check_element()
57 static void check_element(mempool_t *pool, void *element) in check_element() argument
61 __check_element(pool, element, ksize(element)); in check_element()
66 void *addr = kmap_atomic((struct page *)element); in check_element()
73 static void __poison_element(void *element, size_t size) in __poison_element() argument
[all …]
/linux-4.4.14/drivers/acpi/acpica/
Duttrack.c315 struct acpi_debug_mem_block *element; in acpi_ut_find_allocation() local
317 element = acpi_gbl_global_list->list_head; in acpi_ut_find_allocation()
318 if (!element) { in acpi_ut_find_allocation()
329 while (element > allocation) { in acpi_ut_find_allocation()
333 if (!element->next) { in acpi_ut_find_allocation()
334 return (element); in acpi_ut_find_allocation()
337 element = element->next; in acpi_ut_find_allocation()
340 if (element == allocation) { in acpi_ut_find_allocation()
341 return (element); in acpi_ut_find_allocation()
344 return (element->previous); in acpi_ut_find_allocation()
[all …]
/linux-4.4.14/security/tomoyo/
Dgc.c39 static bool tomoyo_struct_used_by_io_buffer(const struct list_head *element) in tomoyo_struct_used_by_io_buffer() argument
49 if (head->r.domain == element || head->r.group == element || in tomoyo_struct_used_by_io_buffer()
50 head->r.acl == element || &head->w.domain->list == element) in tomoyo_struct_used_by_io_buffer()
106 static inline void tomoyo_del_transition_control(struct list_head *element) in tomoyo_del_transition_control() argument
109 container_of(element, typeof(*ptr), head.list); in tomoyo_del_transition_control()
121 static inline void tomoyo_del_aggregator(struct list_head *element) in tomoyo_del_aggregator() argument
124 container_of(element, typeof(*ptr), head.list); in tomoyo_del_aggregator()
136 static inline void tomoyo_del_manager(struct list_head *element) in tomoyo_del_manager() argument
139 container_of(element, typeof(*ptr), head.list); in tomoyo_del_manager()
150 static void tomoyo_del_acl(struct list_head *element) in tomoyo_del_acl() argument
[all …]
Dcommon.h1040 void tomoyo_del_condition(struct list_head *element);
/linux-4.4.14/scripts/
Dasn1_compiler.c685 struct element { struct
690 struct element *children; argument
691 struct element *next; argument
692 struct element *render_next; argument
693 struct element *list_next; argument
712 struct element *element; argument
802 static struct element *parse_type(struct token **_cursor, struct token *stop,
823 type->element = parse_type(&cursor, type[1].name, NULL); in parse()
824 type->element->type_def = type; in parse()
837 static struct element *element_list;
[all …]
/linux-4.4.14/drivers/acpi/
Dutils.c97 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local
99 switch (element->type) { in acpi_extract_package()
129 (element->string.length * sizeof(char)) + in acpi_extract_package()
135 sizeof(u8 *) + element->buffer.length; in acpi_extract_package()
201 union acpi_object *element = &(package->package.elements[i]); in acpi_extract_package() local
203 if (!element) { in acpi_extract_package()
207 switch (element->type) { in acpi_extract_package()
213 element->integer.value; in acpi_extract_package()
220 element->integer.value; in acpi_extract_package()
239 memcpy(tail, element->string.pointer, in acpi_extract_package()
[all …]
Dproperty.c491 const union acpi_object *element, *end; in acpi_data_get_property_reference() local
529 element = obj->package.elements; in acpi_data_get_property_reference()
530 end = element + obj->package.count; in acpi_data_get_property_reference()
532 while (element < end) { in acpi_data_get_property_reference()
535 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) in acpi_data_get_property_reference()
538 ret = acpi_bus_get_device(element->reference.handle, &device); in acpi_data_get_property_reference()
542 element++; in acpi_data_get_property_reference()
546 for (i = 0; element + i < end; i++) { in acpi_data_get_property_reference()
547 int type = element[i].type; in acpi_data_get_property_reference()
561 args->args[i] = element[i].integer.value; in acpi_data_get_property_reference()
[all …]
Dprocessor_idle.c372 union acpi_object *element; in acpi_processor_get_power_info_cst() local
379 element = &(cst->package.elements[i]); in acpi_processor_get_power_info_cst()
380 if (element->type != ACPI_TYPE_PACKAGE) in acpi_processor_get_power_info_cst()
383 if (element->package.count != 4) in acpi_processor_get_power_info_cst()
386 obj = &(element->package.elements[0]); in acpi_processor_get_power_info_cst()
398 obj = &(element->package.elements[1]); in acpi_processor_get_power_info_cst()
454 obj = &(element->package.elements[2]); in acpi_processor_get_power_info_cst()
460 obj = &(element->package.elements[3]); in acpi_processor_get_power_info_cst()
Dscan.c750 union acpi_object *element = NULL; in acpi_bus_extract_wakeup_device_power_package() local
771 element = &(package->package.elements[0]); in acpi_bus_extract_wakeup_device_power_package()
772 if (!element) in acpi_bus_extract_wakeup_device_power_package()
775 if (element->type == ACPI_TYPE_PACKAGE) { in acpi_bus_extract_wakeup_device_power_package()
776 if ((element->package.count < 2) || in acpi_bus_extract_wakeup_device_power_package()
777 (element->package.elements[0].type != in acpi_bus_extract_wakeup_device_power_package()
779 || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) in acpi_bus_extract_wakeup_device_power_package()
783 element->package.elements[0].reference.handle; in acpi_bus_extract_wakeup_device_power_package()
785 (u32) element->package.elements[1].integer.value; in acpi_bus_extract_wakeup_device_power_package()
786 } else if (element->type == ACPI_TYPE_INTEGER) { in acpi_bus_extract_wakeup_device_power_package()
[all …]
Dbattery.c397 union acpi_object *element; in extract_package() local
403 element = &package->package.elements[i]; in extract_package()
406 if (element->type == ACPI_TYPE_STRING || in extract_package()
407 element->type == ACPI_TYPE_BUFFER) in extract_package()
408 strncpy(ptr, element->string.pointer, 32); in extract_package()
409 else if (element->type == ACPI_TYPE_INTEGER) { in extract_package()
410 strncpy(ptr, (u8 *)&element->integer.value, in extract_package()
417 *x = (element->type == ACPI_TYPE_INTEGER) ? in extract_package()
418 element->integer.value : -1; in extract_package()
Dpower.c141 union acpi_object *element = &package->package.elements[i]; in acpi_extract_power_resources() local
144 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) { in acpi_extract_power_resources()
148 rhandle = element->reference.handle; in acpi_extract_power_resources()
/linux-4.4.14/net/irda/
Dirqueue.c233 static void enqueue_first(irda_queue_t **queue, irda_queue_t* element) in enqueue_first() argument
243 element->q_next = element->q_prev = *queue = element; in enqueue_first()
249 element->q_next = (*queue); in enqueue_first()
250 (*queue)->q_prev->q_next = element; in enqueue_first()
251 element->q_prev = (*queue)->q_prev; in enqueue_first()
252 (*queue)->q_prev = element; in enqueue_first()
253 (*queue) = element; in enqueue_first()
305 static irda_queue_t *dequeue_general(irda_queue_t **queue, irda_queue_t* element) in dequeue_general() argument
331 element->q_prev->q_next = element->q_next; in dequeue_general()
332 element->q_next->q_prev = element->q_prev; in dequeue_general()
[all …]
Dirlmp.c1836 void *element; in irlmp_seq_hb_idx() local
1839 for (element = hashbin_get_first(iter->hashbin); in irlmp_seq_hb_idx()
1840 element != NULL; in irlmp_seq_hb_idx()
1841 element = hashbin_get_next(iter->hashbin)) { in irlmp_seq_hb_idx()
1844 return element; in irlmp_seq_hb_idx()
/linux-4.4.14/include/linux/
Dmempool.h12 typedef void (mempool_free_t)(void *element, void *pool_data);
35 extern void mempool_free(void *element, mempool_t *pool);
43 void mempool_free_slab(void *element, void *pool_data);
56 void mempool_kfree(void *element, void *pool_data);
68 void mempool_free_pages(void *element, void *pool_data);
Dbtree.h55 void btree_free(void *element, void *pool_data);
Dlru_cache.h257 extern void lc_del(struct lru_cache *lc, struct lc_element *element);
/linux-4.4.14/arch/ia64/sn/kernel/
Dio_common.c353 struct sysdata_el *element; in sn_bus_store_sysdata() local
355 element = kzalloc(sizeof(struct sysdata_el), GFP_KERNEL); in sn_bus_store_sysdata()
356 if (!element) { in sn_bus_store_sysdata()
360 element->sysdata = SN_PCIDEV_INFO(dev); in sn_bus_store_sysdata()
361 list_add(&element->entry, &sn_sysdata_list); in sn_bus_store_sysdata()
366 struct sysdata_el *element; in sn_bus_free_sysdata() local
370 element = list_entry(list, struct sysdata_el, entry); in sn_bus_free_sysdata()
371 list_del(&element->entry); in sn_bus_free_sysdata()
373 (element->sysdata))->pdi_list)); in sn_bus_free_sysdata()
374 kfree(element->sysdata); in sn_bus_free_sysdata()
[all …]
/linux-4.4.14/drivers/mfd/
Dsi476x-prop.c27 static bool si476x_core_element_is_in_array(u16 element, in si476x_core_element_is_in_array() argument
34 if (element == array[i]) in si476x_core_element_is_in_array()
40 static bool si476x_core_element_is_in_range(u16 element, in si476x_core_element_is_in_range() argument
47 if (element <= range[i].high && element >= range[i].low) in si476x_core_element_is_in_range()
/linux-4.4.14/arch/powerpc/platforms/pseries/
Dhvcserver.c78 struct list_head *element; in hvcs_free_partner_info() local
84 element = head->next; in hvcs_free_partner_info()
85 pi = list_entry(element, struct hvcs_partner_info, node); in hvcs_free_partner_info()
86 list_del(element); in hvcs_free_partner_info()
/linux-4.4.14/drivers/thermal/int340x_thermal/
Dacpi_thermal_rel.c81 struct acpi_buffer element = { 0, NULL }; in acpi_parse_trt() local
108 element.length = sizeof(struct trt); in acpi_parse_trt()
109 element.pointer = trt; in acpi_parse_trt()
112 &trt_format, &element); in acpi_parse_trt()
161 struct acpi_buffer element = { 0, NULL }; in acpi_parse_art() local
190 element.length = sizeof(struct art); in acpi_parse_art()
191 element.pointer = art; in acpi_parse_art()
194 &art_format, &element); in acpi_parse_art()
/linux-4.4.14/scripts/coccinelle/misc/
Darray_size.cocci1 /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element
5 //# element or by any indexed element or the element type. It replaces the
Dbadty.cocci1 /// Use ARRAY_SIZE instead of dividing sizeof array with sizeof an element
/linux-4.4.14/Documentation/RCU/
Drcuref.txt43 search_and_reference() could potentially hold reference to an element which
72 Sometimes, a reference to the element needs to be obtained in the
110 search_and_reference() cannot find this element, which means that the value
112 readers that can or ever will be able to reference the element. The
113 element can therefore safely be freed. This in turn guarantees that if
114 any reader finds the element, that reader may safely acquire a reference
DUP.txt19 is referencing element B when it is interrupted by softirq processing,
20 which deletes element B, and then invokes call_rcu() to free element B
25 element B. This situation can greatly decrease the life expectancy of
40 on each element as it is scanned. Suppose further that this function
41 deletes element B from the list, then passes it to call_rcu() for deferred
Drcu.txt11 a grace period to elapse, then free the element. See the listRCU.txt
DarrayRCU.txt39 located in each array element, and where the array is never resized,
Drcubarrier.txt23 element p from a linked list might do the following, while holding an
34 structure. Code to delete an element p from the linked list from IRQ
DwhatisRCU.txt433 o Use synchronize_rcu() -after- removing a data element from an
435 the data element, in order to wait for the completion of all
515 old version of the newly updated element. It also clearly shows the
522 o Use call_rcu() -after- removing a data element from an
Dchecklist.txt73 b. Proceed as in (a) above, but also maintain per-element
75 that guard per-element state. Of course, fields that
Dtorture.txt285 that have reached a given point in the pipeline. The first element
Dtrace.txt328 o Each element of the form "3/3 ..>. 0:7 ^0" represents one rcu_node
/linux-4.4.14/drivers/scsi/esas2r/
Desas2r_int.c342 struct list_head *element, *next; in esas2r_do_deferred_processes() local
346 list_for_each_safe(element, next, &a->defer_list) { in esas2r_do_deferred_processes()
347 rq = list_entry(element, struct esas2r_request, in esas2r_do_deferred_processes()
351 list_del(element); in esas2r_do_deferred_processes()
361 list_del(element); in esas2r_do_deferred_processes()
364 list_del(element); in esas2r_do_deferred_processes()
395 struct list_head *element; in esas2r_process_adapter_reset() local
432 list_for_each(element, &a->defer_list) { in esas2r_process_adapter_reset()
433 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_process_adapter_reset()
449 struct list_head *element; in esas2r_process_bus_reset() local
[all …]
Desas2r_io.c140 struct esas2r_inbound_list_source_entry *element; in esas2r_start_vda_request() local
158 element = in esas2r_start_vda_request()
167 element->address = cpu_to_le64(rq->vrq_md->phys_addr); in esas2r_start_vda_request()
168 element->length = cpu_to_le32(rq->vda_req_sz); in esas2r_start_vda_request()
771 struct list_head *next, *element; in esas2r_send_task_mgmt() local
782 list_for_each_safe(element, next, &a->defer_list) { in esas2r_send_task_mgmt()
783 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_send_task_mgmt()
815 list_for_each_safe(element, next, &a->active_list) { in esas2r_send_task_mgmt()
816 rq = list_entry(element, struct esas2r_request, in esas2r_send_task_mgmt()
Desas2r_init.c839 struct esas2r_inbound_list_source_entry *element; in esas2r_init_adapter_struct() local
973 element = in esas2r_init_adapter_struct()
979 element->address = 0; in esas2r_init_adapter_struct()
980 element->reserved = 0; in esas2r_init_adapter_struct()
981 element->length = cpu_to_le32(HWILSE_INTERFACE_F0 in esas2r_init_adapter_struct()
986 element++; in esas2r_init_adapter_struct()
Desas2r.h1409 struct list_head *element, *next; in esas2r_comp_list_drain() local
1411 list_for_each_safe(element, next, comp_list) { in esas2r_comp_list_drain()
1412 rq = list_entry(element, struct esas2r_request, comp_list); in esas2r_comp_list_drain()
1413 list_del_init(element); in esas2r_comp_list_drain()
Desas2r_disc.c1163 struct list_head *element; in esas2r_disc_fix_curr_requests() local
1169 list_for_each(element, &a->defer_list) { in esas2r_disc_fix_curr_requests()
1170 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_disc_fix_curr_requests()
Desas2r_main.c973 struct list_head *element, *next; in esas2r_check_active_queue() local
975 list_for_each_safe(element, next, queue) { in esas2r_check_active_queue()
977 rq = list_entry(element, struct esas2r_request, req_list); in esas2r_check_active_queue()
/linux-4.4.14/drivers/s390/scsi/
Dzfcp_qdio.h80 return &qdio->req_q[q_req->sbal_last]->element[0]; in zfcp_qdio_sbale_req()
92 return &qdio->req_q[q_req->sbal_last]->element[q_req->sbale_curr]; in zfcp_qdio_sbale_curr()
223 sbale = qdio->req_q[q_req->sbal_first]->element; in zfcp_qdio_set_data_div()
267 sbale = qdio->req_q[q_req->sbal_first]->element; in zfcp_qdio_set_scount()
Dzfcp_qdio.c99 sbale = qdio->res_q[idx]->element; in zfcp_qdio_int_resp()
417 sbale = &(qdio->res_q[cc]->element[0]); in zfcp_qdio_open()
Dzfcp_fsf.c2369 sbale = &sbal->element[idx]; in zfcp_fsf_reqid_check()
/linux-4.4.14/drivers/infiniband/hw/mlx4/
Dsysfs.c505 struct port_table_attribute *element; in alloc_group_attrs() local
513 element = kzalloc(sizeof (struct port_table_attribute), in alloc_group_attrs()
515 if (!element) in alloc_group_attrs()
517 if (snprintf(element->name, sizeof (element->name), in alloc_group_attrs()
518 "%d", i) >= sizeof (element->name)) { in alloc_group_attrs()
519 kfree(element); in alloc_group_attrs()
522 sysfs_attr_init(&element->attr.attr); in alloc_group_attrs()
523 element->attr.attr.name = element->name; in alloc_group_attrs()
525 element->attr.attr.mode = S_IWUSR | S_IRUGO; in alloc_group_attrs()
526 element->attr.store = store; in alloc_group_attrs()
[all …]
Dsrq.c54 event.element.srq = ibsrq; in mlx4_ib_srq_event()
Dcq.c63 event.element.cq = ibcq; in mlx4_ib_cq_event()
Dmain.c2744 ibev.element.port_num = 1; in handle_bonded_port_state_event()
2855 ibev.element.port_num = mlx4_is_bonded(ibdev->dev) ? 1 : (u8)p; in mlx4_ib_event()
/linux-4.4.14/drivers/infiniband/core/
Dsysfs.c466 struct port_table_attribute *element; in alloc_group_attrs() local
474 element = kzalloc(sizeof(struct port_table_attribute), in alloc_group_attrs()
476 if (!element) in alloc_group_attrs()
479 if (snprintf(element->name, sizeof(element->name), in alloc_group_attrs()
480 "%d", i) >= sizeof(element->name)) { in alloc_group_attrs()
481 kfree(element); in alloc_group_attrs()
485 element->attr.attr.name = element->name; in alloc_group_attrs()
486 element->attr.attr.mode = S_IRUGO; in alloc_group_attrs()
487 element->attr.show = show; in alloc_group_attrs()
488 element->index = i; in alloc_group_attrs()
[all …]
Duverbs_main.c501 __u64 element, __u64 event, in ib_uverbs_async_handler() argument
520 entry->desc.async.element = element; in ib_uverbs_async_handler()
536 struct ib_ucq_object *uobj = container_of(event->element.cq->uobject, in ib_uverbs_cq_event_handler()
549 if (!event->element.qp->uobject || !event->element.qp->uobject->live) in ib_uverbs_qp_event_handler()
552 uobj = container_of(event->element.qp->uobject, in ib_uverbs_qp_event_handler()
564 uobj = container_of(event->element.srq->uobject, in ib_uverbs_srq_event_handler()
578 ib_uverbs_async_handler(file, event->element.port_num, event->event, in ib_uverbs_event_handler()
1169 event.element.port_num = 0; in ib_uverbs_free_hw_resources()
Dverbs.c540 list_for_each_entry(event->element.qp, &qp->open_list, open_list) in __ib_shared_qp_event_handler()
541 if (event->element.qp->event_handler) in __ib_shared_qp_event_handler()
542 event->element.qp->event_handler(event, event->element.qp->qp_context); in __ib_shared_qp_event_handler()
Dmulticast.c784 if (!rdma_cap_ib_mcast(dev->device, event->element.port_num)) in mcast_event_handler()
787 index = event->element.port_num - dev->start_port; in mcast_event_handler()
Dcache.c171 event.element.port_num = port; in write_gid()
1005 work->port_num = event->element.port_num; in ib_cache_event()
Dsa_query.c911 &sa_dev->port[event->element.port_num - sa_dev->start_port]; in ib_sa_event()
922 queue_work(ib_wq, &sa_dev->port[event->element.port_num - in ib_sa_event()
/linux-4.4.14/drivers/s390/net/
Dqeth_core_main.c1255 if (buf->buffer->element[0].sflags & SBAL_SFLAGS0_PCI_REQ) in qeth_clear_output_buffer()
1262 if (buf->buffer->element[i].addr && buf->is_header[i]) in qeth_clear_output_buffer()
1264 buf->buffer->element[i].addr); in qeth_clear_output_buffer()
1266 buf->buffer->element[i].length = 0; in qeth_clear_output_buffer()
1267 buf->buffer->element[i].addr = NULL; in qeth_clear_output_buffer()
1268 buf->buffer->element[i].eflags = 0; in qeth_clear_output_buffer()
1269 buf->buffer->element[i].sflags = 0; in qeth_clear_output_buffer()
1271 buf->buffer->element[15].eflags = 0; in qeth_clear_output_buffer()
1272 buf->buffer->element[15].sflags = 0; in qeth_clear_output_buffer()
2802 buf->buffer->element[i].length = PAGE_SIZE; in qeth_init_input_buffer()
[all …]
Dqeth_l2_main.c562 .buffer->element[0]; in qeth_l2_poll()
590 .buffer->element[0]; in qeth_l2_poll()
Dqeth_l3_main.c1941 .buffer->element[0]; in qeth_l3_poll()
1969 .buffer->element[0]; in qeth_l3_poll()
/linux-4.4.14/Documentation/
Dflexible-arrays.txt48 element size and total will be checked for validity at compile time.
73 flex_array_put() call on an element in that range is guaranteed not to
80 The return value is a pointer to the data element, or NULL if that
81 particular element has never been allocated.
83 Note that it is possible to get back a valid pointer for an element which
96 This function will set the given element to FLEX_ARRAY_FREE and return
97 zero. If storage for the indicated element is not allocated for the array,
99 element does not release the storage associated with it; to reduce the
Dsysfs-rules.txt60 - a directory name, identical to the last element of the devpath
67 last element of the target path
73 last element of the target path
139 path as an element. Assuming the existence of the "device"-link for
149 element. Assuming the existence of these links for devices which are
Dcircular-buffers.txt188 there is always one element of the array left empty. Therefore, the
190 element currently being read by the consumer. Therefore, the unlock-lock
193 vacated a given element and the write by the producer to that same element.
Dvme_api.txt32 should be correctly set. The '.name' element is a pointer to a string holding
49 The '.probe' element should contain a pointer to the probe routine. The
Drbtree.txt178 the first or last element in the tree. To continue, fetch the next or previous
DCodingStyle508 (let* ((anchor (c-langelem-pos c-syntactic-element))
509 (column (c-langelem-2nd-pos c-syntactic-element))
Dapplying-patches.txt44 source directory and then strip the first element of the path from filenames
Dparport-lowlevel.txt277 *next' element of the 'struct parport *' that is returned. If 'next'
/linux-4.4.14/drivers/scsi/megaraid/
Dmegaraid_sas_fp.c363 u32 element; in getSpanInfo() local
382 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in getSpanInfo()
383 span_set = &(ldSpanInfo[ld].span_set[element]); in getSpanInfo()
388 "width=%x, diff=%x\n", element, in getSpanInfo()
411 element + 1) { in getSpanInfo()
414 quad[element]; in getSpanInfo()
417 element, le32_to_cpu(quad->diff)); in getSpanInfo()
1163 u32 element, span_row_width; in mr_update_span_set() local
1177 for (element = 0; element < MAX_QUAD_DEPTH; element++) { in mr_update_span_set()
1181 element + 1) in mr_update_span_set()
[all …]
/linux-4.4.14/lib/
Dlru_cache.c104 struct lc_element **element = NULL; in lc_create() local
122 element = kzalloc(e_count * sizeof(struct lc_element *), GFP_KERNEL); in lc_create()
123 if (!element) in lc_create()
141 lc->lc_element = element; in lc_create()
155 element[i] = e; in lc_create()
162 void *p = element[i]; in lc_create()
167 kfree(element); in lc_create()
Dbtree.c87 void btree_free(void *element, void *pool_data) in btree_free() argument
89 kmem_cache_free(btree_cachep, element); in btree_free()
/linux-4.4.14/Documentation/devicetree/bindings/arm/msm/
Dqcom,kpss-acc.txt20 Definition: the first element specifies the base address and size of
21 the register region. An optional second element specifies
Dqcom,saw2.txt34 Definition: the first element specifies the base address and size of
35 the register region. An optional second element specifies
/linux-4.4.14/net/ceph/
Dmsgpool.c25 static void msgpool_free(void *element, void *arg) in msgpool_free() argument
28 struct ceph_msg *msg = element; in msgpool_free()
/linux-4.4.14/drivers/usb/host/
Duhci-debug.c169 __hc32 element = qh_element(qh); in uhci_show_qh() local
183 hc32_to_cpu(uhci, element)); in uhci_show_qh()
195 if (element & UHCI_PTR_QH(uhci)) in uhci_show_qh()
198 if (element & UHCI_PTR_DEPTH(uhci)) in uhci_show_qh()
201 if (element & cpu_to_hc32(uhci, 8)) in uhci_show_qh()
204 if (!(element & ~(UHCI_PTR_QH(uhci) | UHCI_PTR_DEPTH(uhci)))) in uhci_show_qh()
224 if (element != LINK_TO_TD(uhci, td)) in uhci_show_qh()
Duhci-hcd.h150 __hc32 element; /* Queue element (TD) pointer */ member
187 #define qh_element(qh) ACCESS_ONCE((qh)->element)
Duhci-q.c258 qh->element = UHCI_PTR_TERM(uhci); in uhci_alloc_qh()
353 qh->element = UHCI_PTR_TERM(uhci); in uhci_cleanup_queue()
493 qh->element = LINK_TO_TD(uhci, td); in uhci_activate_qh()
1137 qh->element = LINK_TO_TD(uhci, td); in uhci_fixup_short_transfer()
1152 qh->element = td->link; in uhci_fixup_short_transfer()
1241 qh->element = UHCI_PTR_TERM(uhci); in uhci_result_common()
1714 qh->element = qh->post_td->link; in uhci_advance_check()
Duhci-hcd.c650 uhci->skel_async_qh->element = uhci->skel_term_qh->element = in uhci_start()
/linux-4.4.14/Documentation/sound/alsa/
DChannel-Mapping-API.txt37 control element features.
39 As a ground design, each PCM substream may contain a control element
41 element is specified by:
49 Each control element provides at least the TLV read operation and the
138 the given stream. The control element returns an integer array
DOSS-Emulation.txt203 OSS mixer is relatively complicated. ALSA builds up a mixer element
205 string. For example, the volume element SOUND_MIXER_PCM is composed
256 where the first column is the OSS volume element, the second column
/linux-4.4.14/drivers/hwmon/
Dacpi_power_meter.c596 union acpi_object *element = &(pss->package.elements[i]); in read_domain_devices() local
599 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) in read_domain_devices()
604 if (acpi_bus_get_device(element->reference.handle, in read_domain_devices()
792 union acpi_object *element = &(pss->package.elements[i]); in read_capabilities() local
794 if (element->type != ACPI_TYPE_STRING) { in read_capabilities()
799 *str = kzalloc(sizeof(u8) * (element->string.length + 1), in read_capabilities()
806 strncpy(*str, element->string.pointer, element->string.length); in read_capabilities()
Dibmaem.c227 u8 element; member
384 rs_req.element = elt; in aem_read_sensor()
/linux-4.4.14/scripts/gdb/linux/
Dutils.py46 element = gdb.Value(0).cast(typeobj)
47 return int(str(element[field].address).split()[0], 16)
/linux-4.4.14/drivers/infiniband/hw/usnic/
Dusnic_ib_main.c163 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event()
175 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event()
184 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event()
206 ib_event.element.port_num = 1; in usnic_ib_handle_usdev_event()
272 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event()
282 ib_event.element.port_num = 1; in usnic_ib_handle_inet_event()
Dusnic_ib_qp_grp.c493 ib_event.element.qp = &qp_grp->ibqp; in usnic_ib_qp_grp_modify()
/linux-4.4.14/drivers/scsi/mpt3sas/
Dmpt3sas_scsih.c3582 Mpi2EventIrConfigElement_t *element; in _scsih_check_ir_config_unhide_events() local
3594 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events()
3595 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events()
3599 if (element->ReasonCode == in _scsih_check_ir_config_unhide_events()
3601 element->ReasonCode == in _scsih_check_ir_config_unhide_events()
3603 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events()
3610 element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0]; in _scsih_check_ir_config_unhide_events()
3611 for (i = 0; i < event_data->NumElements; i++, element++) { in _scsih_check_ir_config_unhide_events()
3615 if (element->ReasonCode == MPI2_EVENT_IR_CHANGE_RC_UNHIDE) { in _scsih_check_ir_config_unhide_events()
3616 volume_handle = le16_to_cpu(element->VolDevHandle); in _scsih_check_ir_config_unhide_events()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dsrio-rmu.txt65 element is associated with the transmit (TX) interrupt and the
66 second element is associated with the receive (RX) interrupt.
95 element is associated with the transmit (TX) interrupt and the
96 second element is associated with the receive (RX) interrupt.
Dsrio.txt70 property. Within the pair, the first element represents the
71 LIODN associated with memory transactions and the second element
Dfman.txt94 The first element is associated with the event interrupts and
95 the second element is associated with the error interrupts.
/linux-4.4.14/sound/usb/6fire/
Dcontrol.h41 struct snd_kcontrol *element[CONTROL_MAX_ELEMENTS]; member
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Drockchip,pinctrl.txt35 - reg: first element is the general register space of the iomux controller
37 second element is the separate pull register space of the rk3188.
56 - reg: second element: separate pull register for rk3188 bank0, use
/linux-4.4.14/drivers/gpio/
Dgpiolib-acpi.c844 const union acpi_object *element = obj->package.elements; in acpi_gpio_package_count() local
845 const union acpi_object *end = element + obj->package.count; in acpi_gpio_package_count()
848 while (element < end) { in acpi_gpio_package_count()
849 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) in acpi_gpio_package_count()
852 element++; in acpi_gpio_package_count()
/linux-4.4.14/Documentation/filesystems/
Dpath-lookup.txt10 child with the next element, and so on.
27 next path element. This is inefficient and unscalable. It is inefficient
28 because of the locks and atomic operations required for every dentry element
48 (usually the final element, or parent of final element). This is done by taking
51 iteratively for each subsequent name element, look up the child of the current
69 - perform dcache hash name lookups on (parent, name element) tuples;
248 | inode: 10 | path element which is "home"...
257 +---------------------+ check inode and look up the next element.
318 * NULL dentry (ie. any uncached path element)
344 element, nodentry for missing dentry, revalidate for filesystem revalidate
Dsysfs-pci.txt26 The topmost element describes the PCI domain and bus number. In this case,
Dporting376 d_revalidate is a callback that is made on every path element (if
/linux-4.4.14/arch/s390/include/asm/
Dqdio.h222 struct qdio_buffer_element element[QDIO_MAX_ELEMENTS_PER_BUFFER]; member
238 struct sl_element element[QDIO_MAX_BUFFERS_PER_Q]; member
/linux-4.4.14/drivers/infiniband/hw/cxgb3/
Diwch_ev.c91 event.element.cq = &chp->ibcq; in post_qp_event()
93 event.element.qp = &qhp->ibqp; in post_qp_event()
Diwch.c261 event.element.port_num = portnum; in iwch_event_handler()
/linux-4.4.14/drivers/staging/rdma/amso1100/
Dc2_ae.c235 ib_event.element.qp = &qp->ibqp; in c2_ae_event()
310 ib_event.element.cq = &cq->ibcq; in c2_ae_event()
/linux-4.4.14/Documentation/power/
Dpm_qos_interface.txt40 Will insert an element into the list for that identified PM QoS class with the
47 Will update the list element pointed to by the handle with the new target value
52 Will remove the element. After removal it will update the aggregate target and
111 Will insert an element into the list for that identified device with the
118 Will update the list element pointed to by the handle with the new target value
123 Will remove the element. After removal it will update the aggregate target and
/linux-4.4.14/Documentation/devicetree/bindings/power/
Drx51-battery.txt9 for each element in io-channel-names.
/linux-4.4.14/Documentation/scsi/
Dscsi-changer.txt144 are some vendor-specific element types. Grundig for example
146 CDs, which is addressed as element 0xc000 (type 5). To tell the
147 driver about this vendor-specific element, use this:
153 values, this way you can configure the element types 5-8.
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Ddwc3.txt12 - usb-phy : array of phandle for the PHY device. The first element
14 the second element is expected to be a handle to the USB3/SS PHY
/linux-4.4.14/drivers/infiniband/hw/cxgb4/
Dev.c107 event.element.cq = &chp->ibcq; in post_qp_event()
109 event.element.qp = &qhp->ibqp; in post_qp_event()
/linux-4.4.14/drivers/platform/x86/
Dpanasonic-laptop.c302 union acpi_object *element = &(hkey->package.elements[i]); in acpi_pcc_retrieve_biosdata() local
303 if (likely(element->type == ACPI_TYPE_INTEGER)) { in acpi_pcc_retrieve_biosdata()
304 pcc->sinf[i] = element->integer.value; in acpi_pcc_retrieve_biosdata()
/linux-4.4.14/drivers/net/ethernet/sfc/
Dbitfield.h136 #define EFX_EXTRACT64(element, min, max, low, high) \ argument
137 EFX_EXTRACT_NATIVE(le64_to_cpu(element), min, max, low, high)
143 #define EFX_EXTRACT32(element, min, max, low, high) \ argument
144 EFX_EXTRACT_NATIVE(le32_to_cpu(element), min, max, low, high)
/linux-4.4.14/net/dns_resolver/
DKconfig13 being resolving a UNC hostname element to an IP address for CIFS or
/linux-4.4.14/drivers/infiniband/ulp/ipoib/
Dipoib_verbs.c292 if (record->element.port_num != priv->port) in ipoib_event()
296 record->device->name, record->element.port_num); in ipoib_event()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
D3945-mac.c266 struct list_head *element; in il3945_clear_free_frames() local
271 element = il->free_frames.next; in il3945_clear_free_frames()
272 list_del(element); in il3945_clear_free_frames()
273 kfree(list_entry(element, struct il3945_frame, list)); in il3945_clear_free_frames()
288 struct list_head *element; in il3945_get_free_frame() local
300 element = il->free_frames.next; in il3945_get_free_frame()
301 list_del(element); in il3945_get_free_frame()
302 return list_entry(element, struct il3945_frame, list); in il3945_get_free_frame()
957 struct list_head *element; in il3945_rx_queue_restock() local
966 element = rxq->rx_free.next; in il3945_rx_queue_restock()
[all …]
D4965-mac.c268 struct list_head *element; in il4965_rx_queue_restock() local
279 element = rxq->rx_free.next; in il4965_rx_queue_restock()
280 rxb = list_entry(element, struct il_rx_buf, list); in il4965_rx_queue_restock()
281 list_del(element); in il4965_rx_queue_restock()
318 struct list_head *element; in il4965_rx_allocate() local
380 element = rxq->rx_used.next; in il4965_rx_allocate()
381 rxb = list_entry(element, struct il_rx_buf, list); in il4965_rx_allocate()
382 list_del(element); in il4965_rx_allocate()
3706 struct list_head *element; in il4965_clear_free_frames() local
3711 element = il->free_frames.next; in il4965_clear_free_frames()
[all …]
/linux-4.4.14/drivers/infiniband/hw/mthca/
Dmthca_mad.c126 event.element.port_num = port_num; in smp_snoop()
142 event.element.port_num = port_num; in smp_snoop()
Dmthca_catas.c96 event.element.port_num = 0; in handle_catas()
Dmthca_srq.c444 event.element.srq = &srq->ibsrq; in mthca_srq_event()
Dmthca_eq.c255 record.element.port_num = port; in port_change()
Dmthca_cq.c259 event.element.cq = &cq->ibcq; in mthca_cq_event()
/linux-4.4.14/Documentation/powerpc/
Ddscr.txt72 The thread struct element 'dscr_inherit' represents whether the thread
74 following methods. This element signifies whether the thread wants to
Dcxl.txt220 Get the current context id, also known as the process element.
/linux-4.4.14/drivers/staging/rdma/hfi1/
Dintr.c102 event.element.port_num = ppd->port; in signal_ib_event()
Druc.c232 ev.element.srq = qp->ibqp.srq; in hfi1_get_rwqe()
259 ev.element.qp = &qp->ibqp; in hfi1_migrate_qp()
651 ev.element.qp = &sqp->ibqp; in ruc_loopback()
Dcq.c93 ev.element.cq = &cq->ibcq; in hfi1_cq_enter()
Dqp.c869 ev.element.qp = &qp->ibqp; in hfi1_modify_qp()
875 ev.element.qp = &qp->ibqp; in hfi1_modify_qp()
1683 ev.element.qp = &qp->ibqp; in qp_comm_est()
Dmad.c1089 event.element.port_num = port; in __subn_set_opa_portinfo()
1391 event.element.port_num = port; in set_pkeys()
/linux-4.4.14/scripts/coccinelle/iterators/
Dlist_entry_update.cocci1 /// list_for_each_entry uses its first argument to get from one element of
Ditnull.cocci2 /// to a real list element, never NULL.
/linux-4.4.14/drivers/net/wireless/ipw2x00/
Dipw2100.c732 struct list_head *element; in ipw2100_hw_send_command() local
774 element = priv->msg_free_list.next; in ipw2100_hw_send_command()
776 packet = list_entry(element, struct ipw2100_tx_packet, list); in ipw2100_hw_send_command()
790 list_del(element); in ipw2100_hw_send_command()
793 list_add_tail(element, &priv->msg_pend_list); in ipw2100_hw_send_command()
2822 struct list_head *element; in __ipw2100_tx_process() local
2831 element = priv->fw_pend_list.next; in __ipw2100_tx_process()
2833 packet = list_entry(element, struct ipw2100_tx_packet, list); in __ipw2100_tx_process()
2897 list_del(element); in __ipw2100_tx_process()
2945 list_add_tail(element, &priv->tx_free_list); in __ipw2100_tx_process()
[all …]
Dipw2200.c3008 struct list_head *element, *safe; in ipw_remove_current_network() local
3013 list_for_each_safe(element, safe, &priv->ieee->network_list) { in ipw_remove_current_network()
3014 network = list_entry(element, struct libipw_network, list); in ipw_remove_current_network()
3016 list_del(element); in ipw_remove_current_network()
5165 struct list_head *element; in ipw_rx_queue_restock() local
5173 element = rxq->rx_free.next; in ipw_rx_queue_restock()
5174 rxb = list_entry(element, struct ipw_rx_mem_buffer, list); in ipw_rx_queue_restock()
5175 list_del(element); in ipw_rx_queue_restock()
5205 struct list_head *element; in ipw_rx_queue_replenish() local
5211 element = rxq->rx_used.next; in ipw_rx_queue_replenish()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/leds/
Dleds-ktd2692.txt22 A discrete LED element connected to the device must be represented by a child
Dleds-aat1290.txt22 A discrete LED element connected to the device must be represented by a child
/linux-4.4.14/Documentation/devicetree/bindings/spi/
Dspi-mt65xx.txt35 controller used. This is a array, the element value should be 0~3,
/linux-4.4.14/Documentation/devicetree/bindings/clock/st/
Dst,flexgen.txt5 - a clock cross bar (represented by a mux element)
/linux-4.4.14/drivers/infiniband/hw/ocrdma/
Docrdma_main.c387 port_event.element.port_num = 1; in ocrdma_dispatch_port_active()
398 err_event.element.port_num = 1; in ocrdma_dispatch_port_error()
Docrdma_hw.c718 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent()
724 ib_evt.element.cq = &cq->ibcq; in ocrdma_dispatch_ibevent()
730 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
735 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
739 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
743 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
747 ib_evt.element.port_num = 1; in ocrdma_dispatch_ibevent()
753 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent()
759 ib_evt.element.srq = &qp->srq->ibsrq; in ocrdma_dispatch_ibevent()
765 ib_evt.element.qp = &qp->ibqp; in ocrdma_dispatch_ibevent()
/linux-4.4.14/Documentation/input/
Dyealink.txt117 hide_icon Write, hide the element by writing the icon name.
118 show_icon Write, display the element by writing the icon name.
/linux-4.4.14/Documentation/scheduler/
Dcompletion.txt75 done element to "not available", thus again to 0, without touching the
214 (decrementing) the done element of struct completion. Waiting threads
219 done element. Calling complete_all() multiple times is a bug though. Both
/linux-4.4.14/drivers/staging/rdma/ehca/
Dehca_irq.c195 event.element.srq = &qp->ib_srq; in dispatch_qp_event()
201 event.element.qp = &qp->ib_qp; in dispatch_qp_event()
335 event.element.port_num = port_num; in dispatch_port_event()
Dehca_qp.c2208 event.element.port_num = port_num; in internal_destroy_qp()
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Ddavinci-mcasp-audio.txt22 - dmas: two element list of DMA controller phandles and DMA request line
/linux-4.4.14/Documentation/devicetree/bindings/net/can/
Dm_can.txt20 RAM and each element(e.g Rx FIFO or Tx Buffer and etc)
/linux-4.4.14/drivers/infiniband/hw/qib/
Dqib_intr.c78 event.element.port_num = ppd->port; in signal_ib_event()
Dqib_ruc.c214 ev.element.srq = qp->ibqp.srq; in qib_get_rwqe()
240 ev.element.qp = &qp->ibqp; in qib_migrate_qp()
629 ev.element.qp = &sqp->ibqp; in qib_ruc_loopback()
Dqib_cq.c77 ev.element.cq = &cq->ibcq; in qib_cq_enter()
Dqib_uc.c337 ev.element.qp = &qp->ibqp; in qib_uc_rcv()
Dqib_qp.c833 ev.element.qp = &qp->ibqp; in qib_modify_qp()
839 ev.element.qp = &qp->ibqp; in qib_modify_qp()
Dqib_rc.c1834 ev.element.qp = &qp->ibqp; in qib_rc_error()
1957 ev.element.qp = &qp->ibqp; in qib_rc_rcv()
Dqib_mad.c686 event.element.port_num = port; in subn_set_portinfo()
1032 event.element.port_num = port; in set_pkeys()
/linux-4.4.14/drivers/s390/char/
DKconfig88 gives you a nice name for the system on the service element.
100 the service element and connected organisations about a kernel panic.
/linux-4.4.14/arch/x86/include/uapi/asm/
Dsigcontext.h98 __u32 element[4]; member
/linux-4.4.14/fs/configfs/
Ddir.c173 void *element, int type) in configfs_new_dirent() argument
184 sd->s_element = element; in configfs_new_dirent()
226 struct dentry * dentry, void * element, in configfs_make_dirent() argument
231 sd = configfs_new_dirent(parent_sd, element, type); in configfs_make_dirent()
/linux-4.4.14/drivers/net/ethernet/intel/i40e/
Di40e_main.c1329 struct i40e_aqc_remove_macvlan_element_data element; in i40e_rm_default_mac_filter() local
1337 memset(&element, 0, sizeof(element)); in i40e_rm_default_mac_filter()
1338 ether_addr_copy(element.mac_addr, macaddr); in i40e_rm_default_mac_filter()
1339 element.vlan_tag = 0; in i40e_rm_default_mac_filter()
1340 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH | in i40e_rm_default_mac_filter()
1342 ret = i40e_aq_remove_macvlan(&pf->hw, vsi->seid, &element, 1, NULL); in i40e_rm_default_mac_filter()
1521 struct i40e_aqc_remove_macvlan_element_data element; in i40e_set_mac() local
1523 memset(&element, 0, sizeof(element)); in i40e_set_mac()
1524 ether_addr_copy(element.mac_addr, netdev->dev_addr); in i40e_set_mac()
1525 element.flags = I40E_AQC_MACVLAN_DEL_PERFECT_MATCH; in i40e_set_mac()
[all …]
Di40e_adminq_cmd.h610 struct i40e_aqc_switch_config_element_resp element[1]; member
/linux-4.4.14/Documentation/usb/
Dfunctionfs.txt57 parameter's value is just a one-element list, then the behaviour
/linux-4.4.14/Documentation/devicetree/bindings/mips/cavium/
Dbootbus.txt20 length element for any triplet is zero, the chip select is disabled,
/linux-4.4.14/drivers/gpu/drm/qxl/
Dqxl_cmd.c153 void *element) in qxl_ring_pop() argument
169 memcpy(element, (void *)ring_elt, ring->element_size); in qxl_ring_pop()
/linux-4.4.14/drivers/staging/rdma/ipath/
Dipath_ruc.c236 ev.element.srq = qp->ibqp.srq; in ipath_get_rwqe()
501 ev.element.qp = &sqp->ibqp; in ipath_ruc_loopback()
Dipath_cq.c74 ev.element.cq = &cq->ibcq; in ipath_cq_enter()
Dipath_ud.c169 ev.element.srq = qp->ibqp.srq; in ipath_ud_loopback()
Dipath_mad.c439 event.element.port_num = port; in recv_subn_set_portinfo()
775 event.element.port_num = port; in set_pkeys()
Dipath_intr.c250 event.element.port_num = 1; in signal_ib_event()
Dipath_qp.c605 ev.element.qp = &qp->ibqp; in ipath_modify_qp()
Dipath_rc.c1538 ev.element.qp = &qp->ibqp; in ipath_rc_error()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
Dfwil_types.h525 __le32 element[1]; /* variable length uint32 list */ member
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-dma.txt67 Each S-G array element is a struct of three 32-bit words. The first word is
/linux-4.4.14/Documentation/s390/
Dmonreader.txt125 Reading from the device provides a 12 Byte monitor control element (MCE),
137 of the monitor control element layout. The layout of the monitor records can
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-uwb_rc52 The application-specific information element (ASIE)
Dsysfs-class-cxl74 work_element_descriptor: Treat the work element
Dsysfs-bus-iio709 The raw or input element of the name indicates whether the
840 The raw or input element of the name indicates whether the
1088 Scan element control for triggered data capture.
1109 Description of the scan element data storage within the buffer
1166 scan element in the buffer. Note these are not dependent on
Dsysfs-bus-pci239 element. Drivers have the ability at probe time to reduce the
/linux-4.4.14/arch/sh/kernel/cpu/sh5/
Dswitchto.S132 ld.l r4, 4, r9 ! next->thread_info (2nd element of next task_struct)
/linux-4.4.14/Documentation/filesystems/nfs/
Drpc-cache.txt41 as an element, usually the first.
43 Each cache element is reference counted and contains
/linux-4.4.14/Documentation/misc-devices/
Dlis3lv02d45 sensing element is internally moved little bit. Selftest measures difference
/linux-4.4.14/Documentation/devicetree/bindings/c6x/
Ddscr.txt56 MAC addresses are contained in two registers. Each element of a MAC address
/linux-4.4.14/Documentation/video4linux/
Dpxa_camera.txt105 element to the video buffer scatter gather
/linux-4.4.14/drivers/s390/cio/
Dqdio_main.c434 (q->sbal[q->first_to_check]->element[15].sflags) == 0x10)) { in process_buffer_error()
445 q->sbal[q->first_to_check]->element[14].sflags, in process_buffer_error()
446 q->sbal[q->first_to_check]->element[15].sflags); in process_buffer_error()
Dqdio_setup.c208 q->sl->element[j].sbal = (unsigned long)q->sbal[j]; in setup_storage_lists()
/linux-4.4.14/Documentation/vm/
Didle_page_tracking.txt18 mapped to bit #i%64 of array element #i/64, byte order is native. When a bit is
Dcleancache.txt149 functions, or to a compare-struct-element-to-negative if a
/linux-4.4.14/Documentation/dmaengine/
Dpxa_dma.txt52 element to the video buffer scatter gather
/linux-4.4.14/drivers/infiniband/hw/mlx5/
Dsrq.c58 event.element.srq = ibsrq; in mlx5_ib_srq_event()
Dcq.c63 event.element.cq = ibcq; in mlx5_ib_cq_event()
Dmain.c995 ibev.element.port_num = port; in mlx5_ib_event()
/linux-4.4.14/net/sunrpc/xprtrdma/
Dsvc_rdma_transport.c246 event->element.qp); in qp_event_handler()
258 event->element.qp); in qp_event_handler()
/linux-4.4.14/Documentation/arm/
Dvlocks.txt152 we do not care which element of currently_voting appears in which
/linux-4.4.14/drivers/crypto/caam/
Dregs.h643 struct rtic_element element[2]; member
/linux-4.4.14/include/uapi/rdma/
Dib_user_verbs.h112 __u64 element; member
/linux-4.4.14/drivers/infiniband/ulp/srpt/
Dib_srpt.c187 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler()
188 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler()
200 if (event->element.port_num <= sdev->device->phys_port_cnt) { in srpt_event_handler()
201 sport = &sdev->port[event->element.port_num - 1]; in srpt_event_handler()
/linux-4.4.14/Documentation/networking/
Dfilter.txt193 The element op is a 16 bit wide opcode that has a particular instruction
195 "jump if true", the other one "jump if false". Eventually, element k
1119 - find and delete element by key in a given map
1202 map element:
Dcan.txt407 the easy handling of the length information the canfd_frame.len element
454 bit is set in can_id element of the can_filter structure. In
740 When sending a message to the broadcast manager the 'flags' element may
783 element of the BCM message head. The defined number of CAN frames are added
Dscaling.txt269 in rps_dev_flow[i] records the last element in flow i that has
/linux-4.4.14/kernel/locking/
Dlockdep.c906 unsigned long element[MAX_CIRCULAR_QUEUE_SIZE]; member
937 cq->element[cq->rear] = elem; in __cq_enqueue()
947 *elem = cq->element[cq->front]; in __cq_dequeue()
/linux-4.4.14/Documentation/hwmon/
Dsysfs-interface53 than once, even if there is a single element of the given type on the
54 specific chip. Other files do not refer to a specific element, so
/linux-4.4.14/Documentation/PCI/
DMSI-HOWTO.txt241 two-element array. The driver is expected to fill in the 'entry' value
242 in each element of the array to indicate for which entries the kernel
/linux-4.4.14/arch/arm/boot/dts/
Dam335x-evm.dts745 xbar-event-map element */
Dam437x-gp-evm.dts736 xbar-event-map element */
/linux-4.4.14/drivers/net/ethernet/agere/
Det131x.c2192 struct list_head *element; in nic_rx_pkts() local
2247 element = rx_local->recv_list.next; in nic_rx_pkts()
2248 rfd = list_entry(element, struct rfd, list_node); in nic_rx_pkts()
/linux-4.4.14/Documentation/locking/
Drt-mutex-design.txt199 list, the head of the list is a different element than the nodes of a list.
498 task's waiter structure "task" element is NULL. This check is
500 sets the task's waiter structure "task" element to NULL with only
/linux-4.4.14/block/
Dblk-core.c610 static void free_request_struct(void *element, void *unused) in free_request_struct() argument
612 kmem_cache_free(request_cachep, element); in free_request_struct()
/linux-4.4.14/Documentation/isdn/
DINTERFACE.CAPI287 Macros to extract/set element values from/in a CAPI message header
/linux-4.4.14/drivers/infiniband/ulp/iser/
Diser_verbs.c69 event->device->name, event->element.port_num); in iser_event_handler()
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/
Di40e_adminq_cmd.h607 struct i40e_aqc_switch_config_element_resp element[1]; member
/linux-4.4.14/scripts/dtc/
Ddtc-lexer.lex.c_shipped1842 * The next element becomes the new top.
2132 /* Pop the buffer stack, destroying each element. */
/linux-4.4.14/scripts/genksyms/
Dlex.lex.c_shipped1550 * The next element becomes the new top.
1840 /* Pop the buffer stack, destroying each element. */
/linux-4.4.14/scripts/kconfig/
Dzconf.lex.c_shipped1998 * The next element becomes the new top.
2288 /* Pop the buffer stack, destroying each element. */
/linux-4.4.14/drivers/scsi/aic7xxx/
Daic7xxx.seq988 * in addition to the currently active element. We
1187 * Load the next SG element's data address and length
1259 * all other adapters, we'll loop after each S/G element
/linux-4.4.14/include/rdma/
Dib_verbs.h488 } element; member
/linux-4.4.14/Documentation/virtual/kvm/
Dmmu.txt198 element of this array can be calculated from the gfn field when used, in
/linux-4.4.14/drivers/infiniband/hw/nes/
Dnes_verbs.c3942 event.element.port_num = nesvnic->logical_port + 1; in nes_handle_delayed_event()
3957 event.element.port_num = nesvnic->logical_port + 1; in nes_port_ibevent()
/linux-4.4.14/Documentation/security/
Dkeys.txt1097 wrap the RCU calls to this element:
1206 the first element. It will then clear prep->payload.data[] so that the

12