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

12

/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dqueue.h29 struct list *head; member in struct:queue
/hardware/bsp/intel/peripheral/libupm/src/nrf8001/
H A Daci_queue.h47 * at the tail and taken (dequeued) from the head. The head variable is the
54 uint8_t head; member in struct:__anon465
/hardware/ti/omap3/dspbridge/inc/
H A Dlist.h60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, an
[all...]
/hardware/ti/omap3/dspbridge/libbridge/inc/
H A Dlist.h60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
71 struct LST_ELEM head; member in struct:LST_LIST
85 * at the head of the list pointing to the head of the list, itself.
155 * Pops the head off the list and returns a pointer to it.
158 * Else, removes the element at the head of the list, making the next
159 * element the head of the list.
160 * The head is removed by making the tail element of the list point its
161 * "next" pointer at the next element after the head, an
[all...]
/hardware/qcom/camera/QCamera2/stack/common/
H A Dcam_list.h54 struct cam_list *head)
56 struct cam_list *prev = head->prev;
58 head->prev = item;
59 item->next = head;
53 cam_list_add_tail_node(struct cam_list *item, struct cam_list *head) argument
H A Dcam_queue.h42 cam_node_t head; /* dummy head */ member in struct:__anon2278
50 cam_list_init(&queue->head.list);
67 cam_list_add_tail_node(&node->list, &queue->head.list);
78 struct cam_list *head = NULL; local
82 head = &queue->head.list;
83 pos = head->next;
84 if (pos != head) {
102 struct cam_list *head local
[all...]
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/src/
H A Dmm_qcamera_queue.c111 struct cam_list *head = NULL; local
115 head = &queue->m_head.list;
117 pos = head->next;
119 pos = head->prev;
121 if (pos != head) {
139 struct cam_list *head = NULL; local
147 head = &queue->m_head.list;
148 pos = head->next;
150 while(pos != head) {
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_queue.c40 cam_list_init(&queue->head.list);
58 cam_list_add_tail_node(&node->list, &queue->head.list);
68 struct cam_list *head = NULL; local
80 head = &queue->head.list;
81 pos = head->next;
95 struct cam_list *head = NULL; local
101 head = &queue->head.list;
102 pos = head
140 struct cam_list *head = NULL; local
169 struct cam_list *head = NULL; local
[all...]
/hardware/qcom/camera/msm8998/QCamera2/stack/common/
H A Dcam_list.h55 struct cam_list *head)
57 struct cam_list *prev = head->prev;
59 head->prev = item;
60 item->next = head;
54 cam_list_add_tail_node(struct cam_list *item, struct cam_list *head) argument
H A Dcam_queue.h42 cam_node_t head; /* dummy head */ member in struct:__anon2933
50 cam_list_init(&queue->head.list);
67 cam_list_add_tail_node(&node->list, &queue->head.list);
78 struct cam_list *head = NULL; local
82 head = &queue->head.list;
83 pos = head->next;
84 if (pos != head) {
102 struct cam_list *head local
[all...]
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-test/src/
H A Dmm_qcamera_queue.c111 struct cam_list *head = NULL; local
115 head = &queue->m_head.list;
117 pos = head->next;
119 pos = head->prev;
121 if (pos != head) {
139 struct cam_list *head = NULL; local
147 head = &queue->m_head.list;
148 pos = head->next;
150 while(pos != head) {
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/src/
H A Dmm_jpeg_queue.c40 cam_list_init(&queue->head.list);
58 cam_list_add_tail_node(&node->list, &queue->head.list);
68 struct cam_list *head = NULL; local
80 head = &queue->head.list;
81 pos = head->next;
95 struct cam_list *head = NULL; local
101 head = &queue->head.list;
102 pos = head
140 struct cam_list *head = NULL; local
169 struct cam_list *head = NULL; local
[all...]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
H A Dqueue.c45 Node *head; member in struct:Queue
55 q->head = q->tail = NULL;
91 q->head = new_node;
112 temp = q->head;
117 q->head = q->tail = NULL;
121 q->head = q->head->next;
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
H A Dqueue.c43 Node *head; member in struct:Queue
53 q->head = q->tail = NULL;
88 q->head = new_node;
107 temp = q->head;
111 q->head = q->tail = NULL;
113 q->head = q->head->next;
/hardware/qcom/camera/QCamera2/util/
H A DQCameraQueue.cpp174 * head of the queue
216 * DESCRIPTION: return the head element without removing it
226 struct cam_list *head = NULL; local
231 head = &m_head.list;
232 pos = head->next;
233 if (pos != head) {
252 * @bFromHead : if true, dequeue from the head
261 struct cam_list *head = NULL; local
266 head = &m_head.list;
268 pos = head
301 struct cam_list *head = NULL; local
345 struct cam_list *head = NULL; local
387 struct cam_list *head = NULL; local
432 struct cam_list *head = NULL; local
[all...]
/hardware/qcom/camera/msm8998/QCamera2/util/
H A DQCameraQueue.cpp174 * head of the queue
216 * DESCRIPTION: return the head element without removing it
226 struct cam_list *head = NULL; local
231 head = &m_head.list;
232 pos = head->next;
233 if (pos != head) {
252 * @bFromHead : if true, dequeue from the head
261 struct cam_list *head = NULL; local
266 head = &m_head.list;
268 pos = head
301 struct cam_list *head = NULL; local
345 struct cam_list *head = NULL; local
387 struct cam_list *head = NULL; local
432 struct cam_list *head = NULL; local
[all...]
/hardware/intel/common/libwsbm/src/
H A Dwsbm_driver.h106 struct _WsbmListHead head; member in struct:_ValidateNode
H A Dwsbm_mm.c259 struct _WsbmListHead *head = &mm->ml_entry; local
261 return (head->next->next == head);
H A Dwsbm_fencemgr.c47 struct _WsbmListHead head; member in struct:_WsbmFenceClass
106 struct _WsbmListHead head; member in struct:_WsbmFenceObject
134 WSBMINITLISTHEAD(&fc->head);
175 WSBMLISTDELINIT(&fence->head);
197 while (list != &fc->head && list->next != list) {
198 entry = WSBMLISTENTRY(list, struct _WsbmFenceObject, head);
236 wsbmSignalPreviousFences(mgr, &fence->head, fence->fence_class,
278 wsbmSignalPreviousFences(mgr, &fence->head, fence->fence_class,
325 WSBMLISTADDTAIL(&fence->head, &fc->head);
[all...]
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dmodule.c49 static struct module *module_find_with_name(struct module *head, argument
54 for_each_module(module, head) {
62 static struct module *module_find_with_handle(struct module *head, argument
67 for_each_module(module, head) {
75 static struct module *module_add_list(struct module *head, argument
80 last = find_last_module(head);
84 head = add;
86 return head;
89 static struct module *module_del_list(struct module *head, argument
94 for_each_module(prev, head) {
[all...]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
H A DMap.h46 node* head; member in class:Map
52 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 bool empty() const { return ( !head || !tail ); }
66 while(head)
68 node* temp(head);
69 head=head->next;
79 tmp = head;
94 tmp = head;
[all...]
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h45 node* head; member in class:Map
51 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
53 return ( !head || !tail );
68 while (head) {
69 node* temp(head);
70 head=head->next;
80 tmp = head;
96 tmp = head;
[all...]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h44 node* head; member in class:Map
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
52 return ( !head || !tail );
67 while (head) {
68 node* temp(head);
69 head=head->next;
79 tmp = head;
95 tmp = head;
[all...]
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
H A DMap.h44 node* head; member in class:Map
50 Map() : head( NULL ), tail ( NULL ),tmp(head),size_of_list(0) {}
52 return ( !head || !tail );
67 while (head) {
68 node* temp(head);
69 head=head->next;
79 tmp = head;
95 tmp = head;
[all...]
/hardware/intel/common/wrs_omxil_core/core/src/
H A Dwrs_omxcore.cpp48 struct list *head = NULL; local
91 head = __list_add_tail(head, entry);
106 return head;
109 static struct list *destruct_components(struct list *head) argument
113 list_foreach_safe(head, entry, next) {
116 head = __list_delete(head, entry);
120 return head;

Completed in 774 milliseconds

12