Searched refs:tail (Results 26 - 50 of 125) sorted by relevance

12345

/barrelfish-master/lib/dma/xeon_phi/
H A Dxeon_phi_dma_channel.c86 * \brief reads the tail pointer register of the Xeon Phi DMA channel
90 * \returns tail pointer value
98 * \brief updates the tail pointer register of the channel
101 * \param tail the new tailpointer index
104 uint16_t tail)
106 XPHICHAN_DEBUG("setting tail pointer to [%u]\n", chan->common.id, tail);
107 xeon_phi_dma_chan_dtpr_index_wrf(&chan->channel, tail);
246 uint16_t tail)
251 while(dma_ring_get_tail(ring) != tail) {
103 channel_write_tail(struct xeon_phi_dma_channel *chan, uint16_t tail) argument
245 channel_process_descriptors(struct xeon_phi_dma_channel *chan, uint16_t tail) argument
537 uint16_t tail = channel_read_tail(xchan); local
[all...]
/barrelfish-master/usr/eclipseclp/icparc_solvers/ilog/
H A Dec2il.cc78 EC_word head, tail; local
79 if (p.is_list(head, tail) == EC_succeed) {
85 p = tail;
94 EC_word head, tail; local
95 p.is_list(head, tail); // No checks (done in the previous loop)
97 p = tail;
110 EC_word head, tail; local
111 if (p.is_list(head, tail) == EC_succeed) {
117 p = tail;
126 EC_word head, tail; local
[all...]
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssl_ciph.c597 CIPHER_ORDER **tail)
599 if (curr == *tail) return;
606 (*tail)->next=curr;
607 curr->prev= *tail;
609 *tail=curr;
613 CIPHER_ORDER **tail)
616 if (curr == *tail)
617 *tail=curr->prev;
850 CIPHER_ORDER *head, *tail, *curr, *curr2, *last; local
863 tail
596 ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr, CIPHER_ORDER **tail) argument
612 ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr, CIPHER_ORDER **tail) argument
1284 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr; local
[all...]
/barrelfish-master/usr/drivers/virtio/block/
H A Ddevice.h49 struct vblock_req *tail; member in struct:vblock_req_queue
H A Drequest.c80 dev->free_queue.tail = req+(ndesc-1);
130 queue->tail = NULL;
157 queue->tail = req;
159 queue->tail->next = req;
160 queue->tail = req;
/barrelfish-master/include/barrelfish/
H A Devent_queue.h44 struct event_queue_node *head, *tail; member in struct:event_queue
/barrelfish-master/include/contmng/
H A Dcontmng.h56 int tail; member in struct:cont_queue
/barrelfish-master/include/lwip/lwip/
H A Dpbuf.h128 void pbuf_cat(struct pbuf *head, struct pbuf *tail);
129 void pbuf_chain(struct pbuf *head, struct pbuf *tail);
H A Dnetbuf.h54 void netbuf_chain(struct netbuf *head, struct netbuf *tail);
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/infiniband/hw/mlx4/
H A Dcq.c568 unsigned tail, struct mlx4_cqe *cqe)
573 qp->sqp_proxy_rcv[tail].map,
576 hdr = (struct mlx4_ib_proxy_sqp_hdr *) (qp->sqp_proxy_rcv[tail].addr);
597 unsigned tail = 0; local
666 wq->tail += (u16)(wqe_ctr - (u16) wq->tail);
668 wc->wr_id = wq->wrid[wq->tail & (wq->wqe_cnt - 1)];
669 ++wq->tail;
678 tail = wq->tail
[all...]
/barrelfish-master/lib/phoenix/
H A Dlist.h140 list_ent *tail; local
141 tail = l->lst_list.li_prev;
143 return tail;
/barrelfish-master/usr/eclipseclp/lib_tcl/widget/
H A Dutil-expand.tcl109 if {[catch {glob [file tail $str]*} m]} {
117 [string tolower [file tail $str]]]
119 set tmp [best_match [lsort $m] [file tail $str]]
/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_ctx.c102 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
362 p->head = p->current = p->tail = NULL;
415 item->prev = p->tail;
419 p->head = p->current = p->tail = item;
422 p->tail->next = item;
423 p->tail = item;
/barrelfish-master/lib/libc/rpc/
H A Dgetnetconfig.c105 struct netconfig_list *tail; /* last of the list */ member in struct:netconfig_info
358 ni.head = ni.tail = list;
361 ni.tail->next = list;
362 ni.tail = ni.tail->next;
364 ncp->nc_configs = ni.tail;
365 result = ni.tail->ncp;
414 ni.tail = NULL;
/barrelfish-master/lib/openssl-1.0.0d/crypto/modes/
H A Dcts128.c206 size_t tail; local
210 if ((tail=len%16) == 0) tail = 16;
211 tail += 16;
218 if (memcmp(iv,vector+len-tail,sizeof(iv)))
226 if (memcmp(iv,vector+len-tail,sizeof(iv)))
234 if (memcmp(iv,vector+len-tail,sizeof(iv)))
242 if (memcmp(iv,vector+len-tail,sizeof(iv)))
/barrelfish-master/lib/dma/include/
H A Ddma_channel_internal.h61 struct dma_request *tail; ///< end of the request list member in struct:dma_channel::__anon916
/barrelfish-master/lib/lwip/src/core/snmp/
H A Dasn1_enc.c425 u8_t shift, tail; local
429 tail = 0;
435 if ((code != 0) || (tail != 0)) {
436 tail = 1;
/barrelfish-master/include/flounder/
H A Dflounder_txqueue.h49 struct txq_msg_st *tail; ///< tail of the queue member in struct:tx_queue
/barrelfish-master/lib/devif/backends/net/mlx4/include/linux/
H A Dbitops.h244 int tail; local
249 tail = size & (BITS_PER_LONG - 1);
250 if (tail)
251 addr[size / BITS_PER_LONG] = BIT_MASK(tail);
258 int tail;
266 tail = size & (BITS_PER_LONG - 1);
267 if (tail) {
268 mask = BIT_MASK(tail);
279 int tail;
287 tail
[all...]
/barrelfish-master/usr/drivers/enet/
H A Denet.h72 // hd + tail
74 size_t tail; member in struct:enet_queue
/barrelfish-master/usr/monitor/include/
H A Dqueue.h21 struct msg_queue_elem *head, *tail; member in struct:msg_queue
/barrelfish-master/include/lwip2/lwip/
H A Dpbuf.h235 void pbuf_cat(struct pbuf *head, struct pbuf *tail);
236 void pbuf_chain(struct pbuf *head, struct pbuf *tail);
/barrelfish-master/lib/lwip2/src/apps/snmp/
H A Dsnmp_asn1.c264 u8_t shift, tail; local
268 tail = 0;
274 if ((code != 0) || (tail != 0)) {
275 tail = 1;
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dbip_tconv.c654 pword *tail, *head, *newel, *tvptr, *elem; local
667 tail = elem + 1;
668 Dereference_(tail)
669 if (IsRef(tail->tag))
673 Push_var_delay(tail, tail->tag.all);
676 else if (IsList(tail->tag))
696 for (i = 0; IsList(tail->tag); i++)
698 elem = tail->val.ptr;
702 tail
[all...]
/barrelfish-master/include/virtio/
H A Dvirtio.h90 struct virtio_buffer *tail; member in struct:virtio_buffer_list
186 * \brief appends a buffer to the tail of buffer list
195 * \brief prepend a buffer to the tail of buffer list
214 * \brief returns and removes the tail of the list

Completed in 2374 milliseconds

12345