Searched defs:head (Results 1 - 25 of 103) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/support/sym/
H A Dtemplate.h11 struct _sym *next, *prev, **head, *scope; member in struct:_sym
/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dnetbuf.c170 * @param head the first netbuf
171 * @param tail netbuf to chain after head, freed by this function, may not be reference after returning
174 netbuf_chain(struct netbuf *head, struct netbuf *tail) argument
176 LWIP_ERROR("netbuf_ref: invalid head", (head != NULL), return;);
178 pbuf_cat(head->p, tail->p);
179 head->ptr = head->p;
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsTSubstringTuple.h71 nsTSubstringTuple_CharT(const self_type& head, const abstract_string_type* b) argument
72 : mHead(&head)
73 , mFragA(nsnull) // this fragment is ignored when head != nsnull
110 operator+(const nsTSubstringTuple_CharT& head, const nsTAString_CharT& b) argument
112 return nsTSubstringTuple_CharT(head, &b);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dlist.h52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
72 list_is_empty(struct list *head) argument
74 return head->next == head;
92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dlist.h52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
72 list_is_empty(struct list *head) argument
74 return head->next == head;
92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
97 #define list_for_each_entry_safe(pos, tmp, head, membe
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dlist.h52 list_add(struct list *entry, struct list *head) argument
54 __list_add(entry, head, head->next);
72 list_is_empty(struct list *head) argument
74 return head->next == head;
92 #define list_for_each_entry(pos, head, member) \
93 for (pos = __container_of((head)->next, pos, member); \
94 &pos->member != (head); \
97 #define list_for_each_entry_safe(pos, tmp, head, membe
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dlist.h42 * We need one list head in bar and a list element in all foos (both are of
57 * Now we initialize the list head:
110 * There are no requirements for a list head, any struct list can be a list
111 * head.
143 * Insert a new element after the given list head.
145 * head → some element → ...
147 * head → new element → older element → ...
154 * @param head The existing list.
157 list_add(struct list *entry, struct list *head) argument
159 __list_add(entry, head, hea
199 list_is_empty(struct list *head) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DSList.h59 SListNode *head, *tail; member in class:SList
61 SList() {head=tail=NULL;}
62 virtual ~SList() {head=tail=NULL;}
/vbox/src/VBox/Devices/Network/slirp/
H A Dip_input.c265 struct ipqhead *head; local
285 head = &ipq[hash];
291 TAILQ_FOREACH(fp, head, ipq_list)
310 struct ipq_t *pHead = TAILQ_LAST(head, ipqhead);
328 ip_freef(pData, head, pHead);
378 TAILQ_INSERT_HEAD(head, fp, ipq_list);
473 ip_freef(pData, head, fp);
485 ip_freef(pData, head, fp);
499 ip_freef(pData, head, fp);
534 TAILQ_REMOVE(head, f
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/bus/
H A Dvirtio-ring.c34 * put at the begin of the free list the current desc[head]
37 void vring_detach(struct vring_virtqueue *vq, unsigned int head) argument
44 i = head;
52 vq->free_head = head;
92 int i, avail, head, prev; local
97 head = vq->free_head;
98 for (i = head; out; i = vr->desc[i].next, out--) {
118 vq->vdata[head] = opaque;
121 vr->avail->ring[avail] = head;
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbufpool.c51 struct buffer *head; member in struct:CRBufferPool_t
76 pool->head = NULL;
88 for (b = pool->head; b; b = next) {
102 for (b = pool->head; b; b = next) {
118 for (b = pool->head; b; b = b->next) {
126 b->next = pool->head;
127 pool->head = b;
141 for (b = pool->head, i=0; i<pool->numBuffers; b = b->next, i++) {
149 pool->head = b->next;
175 b = pool->head;
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Diobuf.h53 void *head; member in struct:io_buffer
94 assert ( (iobuf)->data >= (iobuf)->head ); \
173 return ( iobuf->data - iobuf->head );
199 iobuf->head = iobuf->data = data;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprfdcach.c67 PRFileDesc *head, *tail; member in struct:_PR_Fd_Cache
104 if (NULL == _pr_fd_cache.head) goto allocate; /* nothing there */
109 fd = _pr_fd_cache.head; /* protected extraction */
118 _pr_fd_cache.head = fd->higher;
119 if (NULL == _pr_fd_cache.head)
180 PR_ASSERT(NULL == _pr_fd_cache.head);
181 _pr_fd_cache.head = _pr_fd_cache.tail = fd;
220 while (NULL != _pr_fd_cache.head)
222 PRFileDesc *fd = _pr_fd_cache.head;
223 _pr_fd_cache.head
[all...]
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpt/tests/
H A DSimpleTypeLib.c81 char *data, *head; local
174 XPT_GetXDRData(state, XPT_HEADER, &head, &len);
175 fwrite(head, len, 1, out);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dlist.h45 * We need one list head in bar and a list element in all list_of_foos (both are of
60 * Now we initialize the list head:
102 * to-be-linked struct. struct xorg_list is required for both the head of the
107 * There are no requirements for a list head, any struct xorg_list can be a list
108 * head.
139 * Insert a new element after the given list head. The new element does not
142 * head → some element → ...
144 * head → new element → older element → ...
151 * @param head The existing list.
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dlist.h45 * We need one list head in bar and a list element in all list_of_foos (both are of
60 * Now we initialize the list head:
102 * to-be-linked struct. struct xorg_list is required for both the head of the
107 * There are no requirements for a list head, any struct xorg_list can be a list
108 * head.
139 * Insert a new element after the given list head. The new element does not
142 * head → some element → ...
144 * head → new element → older element → ...
151 * @param head The existing list.
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dlist.h43 * We need one list head in bar and a list element in all list_of_foos (both are of
58 * Now we initialize the list head:
100 * to-be-linked struct. struct xorg_list is required for both the head of the
105 * There are no requirements for a list head, any struct xorg_list can be a list
106 * head.
138 * Insert a new element after the given list head. The new element does not
141 * head → some element → ...
143 * head → new element → older element → ...
150 * @param head The existing list.
153 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
174 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Dlist.h45 * We need one list head in bar and a list element in all list_of_foos (both are of
60 * Now we initialize the list head:
102 * to-be-linked struct. struct xorg_list is required for both the head of the
107 * There are no requirements for a list head, any struct xorg_list can be a list
108 * head.
139 * Insert a new element after the given list head. The new element does not
142 * head → some element → ...
144 * head → new element → older element → ...
151 * @param head The existing list.
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Dlist.h45 * We need one list head in bar and a list element in all list_of_foos (both are of
60 * Now we initialize the list head:
102 * to-be-linked struct. struct xorg_list is required for both the head of the
107 * There are no requirements for a list head, any struct xorg_list can be a list
108 * head.
139 * Insert a new element after the given list head. The new element does not
142 * head → some element → ...
144 * head → new element → older element → ...
151 * @param head The existing list.
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dlist.h45 * We need one list head in bar and a list element in all list_of_foos (both are of
60 * Now we initialize the list head:
102 * to-be-linked struct. struct xorg_list is required for both the head of the
107 * There are no requirements for a list head, any struct xorg_list can be a list
108 * head.
139 * Insert a new element after the given list head. The new element does not
142 * head → some element → ...
144 * head → new element → older element → ...
151 * @param head The existing list.
154 xorg_list_add(struct xorg_list *entry, struct xorg_list *head) argument
175 xorg_list_append(struct xorg_list *entry, struct xorg_list *head) argument
217 xorg_list_is_empty(struct xorg_list *head) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dpred.c158 Predicate *a, *head=NULL, *tail=NULL, *root=NULL; local
174 if ( head==NULL )
178 head = tail = a;
179 root->down = head;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/prefix/
H A Ddskprefix.S106 xorw %dx,%dx /* drive 0, head 0 */
198 subw head, %ax
202 movw %ax, head
231 movw head, %dx
340 head: .word 0 /* current head */ label
/vbox/src/VBox/Additions/linux/sharedfolders/
H A Dvfsmod.h79 struct list_head head; member in struct:sf_dir_buf
/vbox/src/VBox/Additions/x11/x11include/4.3/include/extensions/
H A Dextutil.h54 XExtDisplayInfo *head; /* start of list */ member in struct:_XExtensionInfo
/vbox/src/VBox/Additions/x11/x11include/libXext-1.3.1/X11/extensions/
H A Dextutil.h52 XExtDisplayInfo *head; /* start of list */ member in struct:_XExtensionInfo

Completed in 231 milliseconds

12345