Searched defs:tail (Results 1 - 25 of 64) sorted by relevance

123

/vbox/src/VBox/Devices/Network/lwip-new/src/api/
H A Dnetbuf.c171 * @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
177 LWIP_ERROR("netbuf_chain: invalid tail", (tail != NULL), return;);
178 pbuf_cat(head->p, tail->p);
180 memp_free(MEMP_NETBUF, tail);
/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;}
H A Dslist.cpp63 SListNode *p, *tail=NULL; local
71 head = tail = p;
75 tail->setNext(p);
76 tail = p;
H A Dast.c258 register AST *child, *sibling=NULL, *tail=NULL /* MR20 */, *w; local
275 if ( sibling == NULL ) {sibling = child; tail = w;}
276 else {tail->right = child; tail = w;}
H A DASTBase.cpp134 register ASTBase *child, *sibling=NULL, *tail=NULL /*MR23*/, *w; local
147 if ( sibling == NULL ) {sibling = child; tail = w;}
148 else {tail->_right = child; tail = w;}
H A DPCCTSAST.cpp98 register PCCTS_AST *child, *sibling=NULL, *tail=NULL /*MR23*/, *w; local
111 if ( sibling == NULL ) {sibling = child; tail = w;}
112 else {tail->setRight(child); tail = w;}
311 tail() function in class:PCCTS_AST
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Diobuf.h57 void *tail; member in struct:io_buffer
71 iobuf->tail += len;
77 assert ( (iobuf)->tail <= (iobuf)->end ); \
106 assert ( iobuf->data <= iobuf->tail );
112 assert ( (iobuf)->data <= (iobuf)->tail ); \
123 void *old_tail = iobuf->tail;
124 iobuf->tail += len;
130 assert ( (iobuf)->tail <= (iobuf)->end ); \
140 iobuf->tail -= len;
144 assert ( (iobuf)->tail >
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/io/
H A Dprfdcach.c67 PRFileDesc *head, *tail; member in struct:_PR_Fd_Cache
113 PR_ASSERT(NULL == _pr_fd_cache.tail);
122 _pr_fd_cache.tail = NULL;
177 if (NULL == _pr_fd_cache.tail)
181 _pr_fd_cache.head = _pr_fd_cache.tail = fd;
185 PR_ASSERT(NULL == _pr_fd_cache.tail->higher);
186 _pr_fd_cache.tail->higher = fd;
187 _pr_fd_cache.tail = fd; /* new value */
227 _pr_fd_cache.tail = NULL;
243 if (NULL == _pr_fd_cache.tail) _pr_fd_cach
[all...]
H A Dprmwait.c128 PRCList *links, *tail; local
142 tail = links = PR_LIST_TAIL(&tm_vars.timer_queue);
143 while (links->prev != tail)
/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
178 head = tail = a;
182 tail->right = a;
183 a->left = tail;
184 a->up = tail->up;
185 tail = a;
H A Dmisc.c6 * Compute follow lists onto tail ends of rules.
589 ListNode *p, *tail; local
601 sentinel->elem = (char *)p; /* set tail pointer */
605 tail = (ListNode *) (*list)->elem; /* get tail pointer */
606 tail->next = p;
607 (*list)->elem = (char *) p; /* reset tail */
/vbox/src/VBox/Devices/Network/lwip/src/core/snmp/
H A Dasn1_enc.c490 u8_t shift, tail; local
494 tail = 0;
501 if ((code != 0) || (tail != 0))
503 tail = 1;
/vbox/src/VBox/Devices/Network/lwip-new/src/core/snmp/
H A Dasn1_enc.c491 u8_t shift, tail; local
495 tail = 0;
502 if ((code != 0) || (tail != 0))
504 tail = 1;
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dapi_lib.c106 netbuf_chain(struct netbuf *head, struct netbuf *tail) argument
108 pbuf_chain(head->p, tail->p);
110 memp_free(MEMP_NETBUF, tail);
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dsnmp_structs.h175 struct mib_list_node *tail; member in struct:mib_list_rootnode
H A Dsnmp_msg.h98 struct snmp_varbind *tail; member in struct:snmp_varbind_root
/vbox/src/VBox/Devices/Network/lwip/vbox/
H A Dsys_arch.c69 u32_t head, tail; member in struct:sys_mbox
231 while ((mbox->head + 1) % MBOX_ENTRIES_MAX == mbox->tail)
241 if (mbox->head == mbox->tail)
249 if ((mbox->head + 1) % MBOX_ENTRIES_MAX == mbox->tail)
277 while (mbox->head == mbox->tail)
305 if ((mbox->head + 1) % MBOX_ENTRIES_MAX == mbox->tail)
311 *msg = mbox->apvEntries[mbox->tail];
312 mbox->tail++;
313 mbox->tail %= MBOX_ENTRIES_MAX;
315 if (mbox->head == mbox->tail)
[all...]
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dsnmp_structs.h185 struct mib_list_node *tail; member in struct:mib_list_rootnode
H A Dsnmp_msg.h115 struct snmp_varbind *tail; member in struct:snmp_varbind_root
/vbox/src/VBox/Devices/Network/lwip-new/vbox/
H A Dsys_arch.c72 u32_t head, tail; member in struct:sys_mbox
249 while (((mbox)->head + 1) % MBOX_ENTRIES_MAX == (mbox)->tail)
262 if ((mbox)->head == (mbox)->tail)
270 if (((mbox)->head + 1) % MBOX_ENTRIES_MAX == (mbox)->tail)
293 if (((mbox)->head + 1) % MBOX_ENTRIES_MAX == (mbox)->tail)
301 if ((mbox)->head == (mbox)->tail)
309 if (((mbox)->head + 1) % MBOX_ENTRIES_MAX == (mbox)->tail)
341 while ((mbox)->head == (mbox)->tail)
367 if (((mbox)->head + 1) % MBOX_ENTRIES_MAX == (mbox)->tail)
373 *msg = (mbox)->apvEntries[(mbox)->tail];
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlist.c19 CRListIterator *tail; member in struct:CRList
31 l->tail = crAlloc( sizeof( CRListIterator ) );
32 CRASSERT( l->tail );
35 l->head->next = l->tail;
37 l->tail->prev = l->head;
38 l->tail->next = NULL;
99 CRASSERT( iter != l->tail );
125 crListInsert( l, l->tail, elem );
138 crListErase( l, l->tail->prev );
161 CRASSERT( l->tail !
[all...]
/vbox/src/VBox/GuestHost/HGSMI/
H A DHGSMICommon.cpp175 * No changes alloed to the header and the tail after that.
454 HGSMIBUFFERTAIL tail = *HGSMIBufferTailFromPtr(pvBuffer, header.u32DataSize); local
456 /* At least both header and tail structures are in the area. Check the checksum. */
457 uint32_t u32Checksum = HGSMIChecksum(offBuffer, &header, &tail);
460 if (u32Checksum == tail.u32Checksum)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DOid.h86 XpOidNode tail; member in struct:_XpOidLinkedList
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DOid.h86 XpOidNode tail; member in struct:_XpOidLinkedList
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/drivers/dri/common/
H A Ddri_util.h373 unsigned int tail; member in struct:__DRIdrawableRec::__anon3711

Completed in 285 milliseconds

123