Searched refs:element (Results 1 - 25 of 172) sorted by relevance

1234567

/freebsd-current/sys/dev/isci/scil/
H A Dsci_fast_list.h64 * SCI_FAST_LIST_T. Likewise an element that has been removed from
73 * - element: This is the list element not the actual
74 * object but the list element which has a
98 #define sci_fast_list_element_init(list_object, element) \
100 (element)->object = (list_object); \
101 (element)->next = (element)->prev = NULL; \
102 (element)->owning_list = NULL; \
111 * Return a pointer to the element a
278 SCI_FAST_LIST_ELEMENT_T *element; local
301 SCI_FAST_LIST_ELEMENT_T *element; local
[all...]
H A Dsci_simple_list.h62 * an element from the list is O(n).
65 * 1) space savings as there is only a single link element instead
68 * element for processing.
93 * Initialze the singely linked list element. The other macros require the
94 * list element to be properly initialized.
96 #define sci_simple_list_element_init(list_object, element) \
98 (element)->next = NULL; \
99 (element)->object = (list_object); \
108 * Return a pointer to the list element at the head of the list. The list
109 * element i
[all...]
H A Dscif_sas_smp_activity_clear_affiliation.c93 SCI_FAST_LIST_ELEMENT_T * element = &anchor_phy->list_element; local
96 while (element != NULL)
98 curr_smp_phy = (SCIF_SAS_SMP_PHY_T*) sci_fast_list_get_object(element);
99 element = sci_fast_list_get_next(element);
H A Dscif_sas_domain.c166 SCI_ABSTRACT_ELEMENT_T * element = sci_abstract_list_get_front( local
181 while (element != NULL)
184 sci_abstract_list_get_object(element);
197 element = sci_abstract_list_get_next(element);
359 SCI_FAST_LIST_ELEMENT_T * element = fw_domain->request_list.list_head; local
369 while (element != NULL)
371 task_request = (SCIF_SAS_TASK_REQUEST_T*) sci_fast_list_get_object(element);
372 element = sci_fast_list_get_next(element);
636 SCI_FAST_LIST_ELEMENT_T * element = fw_domain->request_list.list_head; local
691 SCI_FAST_LIST_ELEMENT_T * element = fw_domain->request_list.list_head; local
867 SCI_ABSTRACT_ELEMENT_T * element = sci_abstract_list_get_front( local
1190 SCI_FAST_LIST_ELEMENT_T * element = smp_remote_device->smp_phy_list.list_head; local
1272 SCI_FAST_LIST_ELEMENT_T * element = fw_domain->request_list.list_head; local
[all...]
H A Dscif_sas_smp_remote_device.c1771 SCI_FAST_LIST_ELEMENT_T * element = smp_remote_device->smp_phy_list.list_head; local
1776 while (element != NULL)
1778 curr_smp_phy = (SCIF_SAS_SMP_PHY_T*) sci_fast_list_get_object(element);
1779 element = sci_fast_list_get_next(element);
1803 SCI_FAST_LIST_ELEMENT_T * element = smp_remote_device->smp_phy_list.list_head; local
1815 while (element != NULL)
1817 curr_smp_phy = (SCIF_SAS_SMP_PHY_T*) sci_fast_list_get_object(element);
1818 element = sci_fast_list_get_next(element);
1975 SCI_FAST_LIST_ELEMENT_T * element = smp_remote_device->smp_phy_list.list_head; local
2119 SCI_FAST_LIST_ELEMENT_T * element = smp_remote_device->smp_phy_list.list_head; local
2201 SCI_FAST_LIST_ELEMENT_T * element = this_smp_remote_device->smp_phy_list.list_head; local
2302 SCI_FAST_LIST_ELEMENT_T * element = local
2494 SCI_FAST_LIST_ELEMENT_T * element = local
[all...]
/freebsd-current/usr.sbin/nscd/
H A Dprotocol.c41 init_comm_element(struct comm_element *element, enum comm_element_t type) argument
45 memset(element, 0, sizeof(struct comm_element));
49 init_cache_write_request(&element->c_write_request);
52 init_cache_write_response(&element->c_write_response);
55 init_cache_read_request(&element->c_read_request);
58 init_cache_read_response(&element->c_read_response);
61 init_cache_transform_request(&element->c_transform_request);
64 init_cache_transform_response(&element->c_transform_response);
67 init_cache_mp_write_session_request(&element->c_mp_ws_request);
70 init_cache_mp_write_session_response(&element
103 finalize_comm_element(struct comm_element *element) argument
186 get_cache_write_request(struct comm_element *element) argument
213 get_cache_write_response(struct comm_element *element) argument
242 get_cache_read_request(struct comm_element *element) argument
270 get_cache_read_response(struct comm_element *element) argument
299 get_cache_transform_request(struct comm_element *element) argument
328 get_cache_transform_response(struct comm_element *element) argument
360 get_cache_mp_write_session_request(struct comm_element *element) argument
390 get_cache_mp_write_session_response(struct comm_element *element) argument
421 get_cache_mp_write_session_write_request(struct comm_element *element) argument
451 get_cache_mp_write_session_write_response(struct comm_element *element) argument
481 get_cache_mp_read_session_request(struct comm_element *element) argument
511 get_cache_mp_read_session_response(struct comm_element *element) argument
542 get_cache_mp_read_session_read_response(struct comm_element *element) argument
[all...]
/freebsd-current/usr.sbin/bhyve/amd64/
H A De820.c60 struct e820_element *element; local
62 element = calloc(1, sizeof(*element));
63 if (element == NULL) {
67 element->base = base;
68 element->end = end;
69 element->type = type;
71 return (element);
94 struct e820_element *element; local
100 TAILQ_FOREACH(element,
113 struct e820_element *element; local
158 struct e820_element *element; local
270 struct e820_element *element; local
339 struct e820_element *element; local
373 struct e820_element *element; local
[all...]
/freebsd-current/contrib/netbsd-tests/include/sys/
H A Dt_pslist.c50 struct element { struct
63 struct element *element; local
100 PSLIST_WRITER_FOREACH(element, &h, struct element, entry) {
101 ATF_CHECK_EQ(i, element->i);
105 PSLIST_READER_FOREACH(element, &h, struct element, entry) {
106 ATF_CHECK_EQ(i, element->i);
110 while ((element
[all...]
/freebsd-current/lib/libc/stdlib/
H A Dremque.c14 remque(void *element) argument
18 elem = (struct que_elem *)element;
H A Dinsque.c18 insque(void *element, void *pred) argument
22 elem = (struct que_elem *)element;
/freebsd-current/usr.sbin/bhyve/
H A Dqemu_loader.c79 struct qemu_loader_element *element; local
84 element = calloc(1, sizeof(struct qemu_loader_element));
85 if (element == NULL) {
90 element->entry.cmd_le = htole32(QEMU_LOADER_CMD_ALLOC);
91 strncpy(element->entry.alloc.name, name, QEMU_FWCFG_MAX_NAME);
92 element->entry.alloc.alignment_le = htole32(alignment);
93 element->entry.alloc.zone = zone;
101 STAILQ_INSERT_HEAD(&loader->list, element, chain);
110 struct qemu_loader_element *element; local
115 element
137 struct qemu_loader_element *element; local
248 struct qemu_loader_element *element; local
[all...]
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_xml_test_utils.py80 'attribute numbers differ in element %s:\nExpected: %r\nActual: %r'
92 'expected attribute %s not found in element %s'
98 ' values of attribute %s in element %s differ: %s vs %s'
112 'number of child elements differ in element ' + actual_node.tagName,
117 '<%s> is not in <%s> (in element %s)'
131 def _GetChildren(self, element):
132 """Fetches all of the child nodes of element, a DOM Element object.
140 CDATA section with ID "detail". An exception is raised if any element other
146 element: DOM Element object
153 for child in element
[all...]
/freebsd-current/tools/tools/locale/tools/
H A Dcharmaps.pm57 my $element = shift;
68 $data{element}{++$index} = $element;
71 && $data{element}{1} eq "languages"
72 && $element eq "language") {
103 && $data{element}{1} eq "translations"
104 && $element eq "translation") {
134 && $data{element}{1} eq "alternativemonths"
135 && $element eq "language") {
149 my $element
[all...]
/freebsd-current/contrib/wpa/src/common/
H A Dieee802_11_common.h15 struct element { struct
44 /* the last parsed element ID and element extension ID */
280 /* element iteration helpers */
282 for (_elem = (const struct element *) (_data); \
287 _elem = (const struct element *) (_elem->data + _elem->datalen))
289 #define for_each_element_id(element, _id, data, datalen) \
290 for_each_element(element, data, datalen) \
291 if (element->id == (_id))
293 #define for_each_element_extid(element, exti
321 for_each_element_completed(const struct element *element, const void *data, size_t datalen) argument
[all...]
/freebsd-current/contrib/googletest/googletest/samples/
H A Dsample3-inl.h39 // The element type must support copy constructor.
40 template <typename E> // E is the element type
43 // QueueNode is a node in a Queue, which consists of an element of
45 template <typename E> // E is the element type
50 // Gets the element in this node.
51 const E& element() const { return element_; } function in class:QueueNode
58 // Creates a node with a given element value. The next pointer is
71 template <typename E> // E is the element type.
102 // Gets the first element of the queue, or NULL if the queue is empty.
106 // Gets the last element o
114 Enqueue(const E& element) argument
141 E* element = new E(old_head->element()); local
[all...]
H A Dsample3_unittest.cc91 // Creates a new queue, where each element is twice as big as the
101 EXPECT_EQ(2 * n1->element(), n2->element());
/freebsd-current/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_compact_001_pos.ksh119 # $2 ACE access generated by the element of a_access
120 # $3 ACE inherit_object generated by the element of a_inherit_object
121 # $4 ACE inherit_strategy generated by the element of a_inherit_strategy
135 for element in ${a_access[@]} ; do
136 if [[ $acl_access == *"$element"* ]]; then
137 tmp_ace="${tmp_ace}${element}"
144 for element in ${a_inherit_object[@]} ; do
145 if [[ $acl_inherit_object == *"$element"* ]]; then
146 tmp_ace="${tmp_ace}${element}"
151 for element i
[all...]
/freebsd-current/contrib/ofed/opensm/include/complib/
H A Dcl_ptr_vector.h103 IN void *const element, IN void *context);
107 * [in] Index of the element.
110 * [in] Pointer to an element at the specified index in the pointer vector.
139 IN const void *const element, IN void *context);
143 * [in] Index of the element.
146 * [in] Pointer to an element at the specified index in the
154 * Return CL_SUCCESS if the element was found. This stops pointer vector
392 * element.
395 * [in] Index of the element.
416 * The cl_ptr_vector_at function copies an element store
502 cl_ptr_vector_insert(IN cl_ptr_vector_t * const p_vector, IN const void *const element, OUT size_t * const p_index OPTIONAL) argument
[all...]
/freebsd-current/contrib/ofed/libibverbs/
H A Ddevice.c337 event->element.cq = (void *) (uintptr_t) ev.element;
348 event->element.qp = (void *) (uintptr_t) ev.element;
353 event->element.srq = (void *) (uintptr_t) ev.element;
357 event->element.wq = (void *) (uintptr_t) ev.element;
360 event->element.port_num = ev.element;
[all...]
/freebsd-current/sbin/kldload/
H A Dkldload.c51 char *path, *tmppath, *element; local
84 while ((element = strsep(&tmppath, ";")) != NULL) {
85 strlcpy(kldpath, element, MAXPATHLEN);
99 "current directory", kldname, element);
/freebsd-current/sys/security/mac_ipacl/
H A Dmac_ipacl.c161 parse_rule_element(char *element, struct ip_rule *rule) argument
170 tok = strsep(&element, ",");
176 tok = strsep(&element, ",");
182 tok = strsep(&element, ",");
187 tok = strsep(&element, ",");
194 tok = strsep(&element, "/");
199 tok = element;
249 char *element; local
253 while ((element = strsep(&string, "@")) != NULL) {
254 if (strlen(element)
[all...]
/freebsd-current/sys/security/mac_portacl/
H A Dmac_portacl.c129 * comma-separated list of elements. Each element is in the form
173 parse_rule_element(char *element, struct rule **rule) argument
182 idtype = strsep(&element, ":");
187 id = strsep(&element, ":");
205 protocol = strsep(&element, ":");
218 portnumber = element;
242 char *element; local
246 while ((element = strsep(&string, ",")) != NULL) {
247 if (strlen(element) == 0)
249 error = parse_rule_element(element,
[all...]
/freebsd-current/usr.sbin/makefs/cd9660/
H A Dcd9660_debug.c266 debug_dump_to_xml_padded_hex_output(const char *element, const char *buf, argument
272 printf("<%s>",element);
278 printf("</%s>\n",element);
280 printf("<%s:hex>",element);
285 printf("</%s:hex>\n",element);
330 debug_dump_integer(const char *element, const unsigned char* buf, int mode) argument
332 printf("<%s>%i</%s>\n", element, debug_get_encoded_number(buf, mode),
333 element);
337 debug_dump_string(const char *element __unused, const unsigned char *buf __unused, int len __unused)
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTypeEncodingParser.cpp115 auto element = ReadStructElement(ast_ctx, type, for_expression); local
116 if (element.type.isNull())
119 elements.push_back(element);
135 for (auto element : elements) {
136 if (element.name.empty()) {
139 element.name = std::string(elem_name.GetString());
142 union_type, element.name.c_str(), ast_ctx.GetType(element.type),
143 lldb::eAccessPublic, element.bitfield);
/freebsd-current/crypto/heimdal/lib/asn1/
H A Dtemplate.c299 * INDEFINITE primitive types are one element after the
379 unsigned int *element = DPO(data, choice->offset); local
388 *element = i;
399 *element = 0;
664 const unsigned int *element = DPOC(data, choice->offset); local
668 if (*element > A1_HEADER_LEN(choice)) {
669 printf("element: %d\n", *element);
673 if (*element == 0) {
677 choice += *element;
763 const unsigned char *element = el->val; local
799 const unsigned int *element = DPOC(data, choice->offset); local
888 unsigned char *element = el->val; local
905 const unsigned int *element = DPOC(data, choice->offset); local
[all...]

Completed in 406 milliseconds

1234567