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

/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dqueue.c26 queue->tail = NULL;
57 if (!queue->tail)
58 queue->tail = queue->head;
72 if (!queue->tail)
73 queue->tail = queue->head;
81 queue->tail = list_add_tail(queue->tail, entry);
82 if (queue->tail == NULL) {
85 if (queue->tail->next)
86 queue->tail
[all...]
/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
H A Daci_queue.cxx36 aci_q->tail = 0;
88 aci_q->aci_data[aci_q->tail].status_byte = 0;
89 memcpy((uint8_t *)&(aci_q->aci_data[aci_q->tail].buffer[0]), (uint8_t *)&p_data->buffer[0], length + 1);
90 aci_q->tail = (aci_q->tail + 1) % ACI_QUEUE_SIZE;
107 aci_q->aci_data[aci_q->tail].status_byte = 0;
108 memcpy((uint8_t *)&(aci_q->aci_data[aci_q->tail].buffer[0]), (uint8_t *)&p_data->buffer[0], length + 1);
109 aci_q->tail = (aci_q->tail + 1) % ACI_QUEUE_SIZE;
122 if (aci_q->head == aci_q->tail)
[all...]
H A Daci_queue.h47 * at the tail and taken (dequeued) from the head. The head variable is the
48 * index of the next packet to dequeue while the tail variable is the index of
55 uint8_t tail; member in struct:__anon465
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
H A Dqueue.c46 Node *tail; member in struct:Queue
55 q->head = q->tail = NULL;
95 q->tail->next = new_node;
98 q->tail = new_node;
117 q->head = q->tail = NULL;
H A Dh264_utils.cpp1643 head = tail = NULL;
1652 NODE_STRUCT *data = tail;
1653 if (tail)
1655 if (tail->prev)
1657 tail = tail->prev;
1658 tail->next = NULL;
1661 head = tail = NULL;
1673 data_ptr->prev = tail;
1674 if (tail)
[all...]
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
H A Dqueue.c44 Node *tail; member in struct:Queue
53 q->head = q->tail = NULL;
90 q->tail->next = new_node;
93 q->tail = new_node;
111 q->head = q->tail = NULL;
H A Dh264_utils.cpp1540 head = tail = NULL;
1549 NODE_STRUCT *data = tail;
1550 if (tail) {
1551 if (tail->prev) {
1552 tail = tail->prev;
1553 tail->next = NULL;
1555 head = tail = NULL;
1566 data_ptr->prev = tail;
1567 if (tail) {
[all...]
/hardware/qcom/audio/msm8909/mm-audio/aenc-aac/qdsp6/inc/
H A DMap.h47 node* tail; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
144 tail = new node(data, data2,tail, NULL);
145 if( tail->prev )
146 tail->prev->next = tail;
150 head = tail;
167 if((head == tail)
[all...]
/hardware/qcom/audio/msm8909/mm-audio/aenc-amrnb/qdsp6/inc/
H A DMap.h47 node* tail; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
144 tail = new node(data, data2,tail, NULL);
145 if( tail->prev )
146 tail->prev->next = tail;
150 head = tail;
167 if((head == tail)
[all...]
/hardware/qcom/audio/msm8909/mm-audio/aenc-evrc/qdsp6/inc/
H A DMap.h47 node* tail; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
144 tail = new node(data, data2,tail, NULL);
145 if( tail->prev )
146 tail->prev->next = tail;
150 head = tail;
167 if((head == tail)
[all...]
/hardware/qcom/audio/msm8909/mm-audio/aenc-qcelp13/qdsp6/inc/
H A DMap.h47 node* tail; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
144 tail = new node(data, data2,tail, NULL);
145 if( tail->prev )
146 tail->prev->next = tail;
150 head = tail;
167 if((head == tail)
[all...]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
H A DMap.h47 node* tail; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
144 tail = new node(data, data2,tail, NULL);
145 if( tail->prev )
146 tail->prev->next = tail;
150 head = tail;
167 if((head == tail)
[all...]
H A Dh264_utils.h350 omx_dl_list() { head = tail = NULL; } ;
359 NODE_STRUCT *head, *tail; member in class:omx_dl_list
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h46 node* tail; member in class:Map
51 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 return ( !head || !tail );
149 tail = new node(data, data2,tail, NULL);
151 if ( tail->prev )
152 tail->prev->next = tail;
155 head = tail;
172 if ((head == tail)
[all...]
H A Dh264_utils.h348 head = tail = NULL;
358 NODE_STRUCT *head, *tail; member in class:omx_dl_list
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h45 node* tail; member in class:Map
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
52 return ( !head || !tail );
148 tail = new node(data, data2,tail, NULL);
150 if ( tail->prev )
151 tail->prev->next = tail;
154 head = tail;
171 if ((head == tail)
[all...]
H A Dh264_utils.h348 head = tail = NULL;
358 NODE_STRUCT *head, *tail; member in class:omx_dl_list
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dqueue.h30 struct list *tail; member in struct:queue
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/
H A Dvpx_mem_tracker.c99 * tail; member in struct:memory_tracker
166 memtrack.tail = memtrack.head;
228 memtrack.tail = NULL;
539 p->prev = memtrack.tail;
548 memtrack.tail = p;
590 memtrack.tail = p->prev;
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
H A Dh264_utils.cpp1540 head = tail = NULL;
1549 NODE_STRUCT *data = tail;
1550 if (tail) {
1551 if (tail->prev) {
1552 tail = tail->prev;
1553 tail->next = NULL;
1555 head = tail = NULL;
1566 data_ptr->prev = tail;
1567 if (tail) {
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c246 PKTSETLINK(q->tail, p);
250 q->tail = p;
275 q->tail = p;
303 q->tail = NULL;
364 q->tail = NULL;
391 for (prev = NULL; p != q->tail; p = PKTLINK(p))
399 q->tail = prev;
435 q->tail = NULL;
454 q->tail = NULL;
462 if (q->tail
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
H A Dftfy.sh71 diff -u "$ORIG_COMMIT_MSG" "$NEW_COMMIT_MSG" | tail -n +3
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h104 void *tail; /* last packet to dequeue */ member in struct:pktq_prec
295 #define pktq_ppeek_tail(pq, prec) ((pq)->q[prec].tail)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
H A Dnestegg.c156 struct ebml_list_node * tail; member in struct:ebml_list
923 oldtail = list->tail;
926 list->tail = node;
1349 assert(ctx->segment.cluster.tail->id == ID_CLUSTER);
1350 cluster = ctx->segment.cluster.tail->data;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
H A Dconfigure.sh921 awk '{ print $1 }' | tail -1`

Completed in 699 milliseconds