Searched defs:next (Results 1 - 25 of 90) sorted by relevance

1234

/hardware/ti/omap4-aah/
H A Dmapinfo.h5 struct mapinfo *next; member in struct:mapinfo
/hardware/ti/omap4xxx/
H A Dmapinfo.h5 struct mapinfo *next; member in struct:mapinfo
/hardware/intel/img/libdrm/libdrm/nouveau/
H A Dnouveau_resource.h28 struct nouveau_resource *next; member in struct:nouveau_resource
/hardware/ti/omap3/dspbridge/inc/
H A Dlist.h60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
63 struct LST_ELEM *next; member in struct:LST_ELEM
84 * An empty list is indicated by the "next" pointer in the element
95 * "empty" element, because its "next" and "prev" pointers point at
158 * Else, removes the element at the head of the list, making the next
161 * "next" pointer at the next element after the head, and by making the
162 * "prev" pointer of the next element after the head point at the tail
163 * element. So the next element after the head becomes the new head of
177 * Because the tail of the list points forward (its "next" pointe
[all...]
/hardware/ti/omap3/dspbridge/libbridge/inc/
H A Dlist.h60 #define LST_IsEmpty(l) (((l)->head.next == &(l)->head))
63 struct LST_ELEM *next; member in struct:LST_ELEM
84 * An empty list is indicated by the "next" pointer in the element
95 * "empty" element, because its "next" and "prev" pointers point at
158 * Else, removes the element at the head of the list, making the next
161 * "next" pointer at the next element after the head, and by making the
162 * "prev" pointer of the next element after the head point at the tail
163 * element. So the next element after the head becomes the new head of
177 * Because the tail of the list points forward (its "next" pointe
[all...]
/hardware/akm/AK8975_FS/libsensors/
H A DInputEventReader.cpp81 void InputEventCircularReader::next() function in class:InputEventCircularReader
/hardware/intel/common/libwsbm/src/
H A Dwsbm_util.h18 struct _WsbmListHead *next; member in struct:_WsbmListHead
24 (__item)->next = (__item); \
30 (__item)->next = (__list)->next; \
31 (__list)->next->prev = (__item); \
32 (__list)->next = (__item); \
37 (__item)->next = (__list); \
39 (__list)->prev->next = (__item); \
45 (__item)->prev->next = (__item)->next; \
[all...]
/hardware/intel/common/omx-components/videocodec/
H A DOMXComponentCodecBase.h91 HandlerEntry *next; member in struct:OMXComponentCodecBase::HandlerEntry
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dlist.h27 struct list *next; member in struct:list
61 #define __list_next(entry) ((entry) ? (entry->next) : NULL)
H A Dmodule.h43 struct module *next; member in struct:module
/hardware/intel/img/libdrm/libdrm/
H A Dlibdrm_lists.h23 * next paragraph) shall be included in all copies or substantial portions
37 struct _drmMMListHead *next; member in struct:_drmMMListHead
43 (__item)->next = (__item); \
49 (__item)->next = (__list)->next; \
50 (__list)->next->prev = (__item); \
51 (__list)->next = (__item); \
56 (__item)->next = (__list); \
58 (__list)->prev->next = (__item); \
64 (__item)->prev->next
[all...]
/hardware/intel/img/libdrm/libdrm/radeon/
H A Dradeon_track.h23 * next paragraph) shall be included in all copies or substantial portions
34 struct radeon_track_event *next; member in struct:radeon_track_event
42 struct radeon_track *next; member in struct:radeon_track
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
H A Dqueue.c40 struct Node *next; member in struct:Node
87 new_node->next = NULL;
95 q->tail->next = new_node;
121 q->head = q->head->next;
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
H A Dqueue.c39 struct Node *next; member in struct:Node
85 new_node->next = NULL;
90 q->tail->next = new_node;
113 q->head = q->head->next;
/hardware/ril/libril/
H A Dril_event.h24 struct ril_event *next; member in struct:ril_event
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/halloc/src/
H A Dhlist.h32 hlist_item_t * next; member in struct:hlist_head
37 hlist_item_t * next; member in struct:hlist_item
50 #define __hlist_init_item(i) { &hlist_null, &(i).next }
76 for (i = (h)->next; i != &hlist_null; i = i->next)
79 for (i = (h)->next, tmp = i->next; \
81 i = tmp, tmp = i->next)
89 h->next = &hlist_null;
95 i->prev = &i->next;
101 hlist_item_t * next; local
112 hlist_item_t * next; local
[all...]
/hardware/intel/img/libdrm/libdrm/intel/
H A Dmm.h35 struct mem_block *next, *prev; member in struct:mem_block
H A Dmm.c40 for(p = heap->next; p != heap; p = p->next) {
76 heap->next = block;
82 block->next = heap;
102 /* break left [p, newblock, p->next], then p = newblock */
112 newblock->next = p->next;
114 p->next->prev = newblock;
115 p->next = newblock;
126 /* break right, also [p, newblock, p->next] */
275 struct mem_block *next = p->next; local
[all...]
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
H A Dts_parser.h67 time_stamp_list *next; member in struct:omx_time_stamp_reorder::time_stamp_list
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
H A Dts_parser.h68 time_stamp_list *next; member in struct:omx_time_stamp_reorder::time_stamp_list
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/include/
H A Dvpx_mem_tracker.h32 * next; member in struct:mem_block
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
H A Dhmm_base.c29 to_remove->prev->next = to_remove->next;
31 if (to_remove->next)
32 to_remove->next->prev = to_remove->prev;
57 ptr_rec_ptr->next = bin_front_ptr->next;
58 bin_front_ptr->next = ptr_rec_ptr;
60 if (ptr_rec_ptr->next)
61 ptr_rec_ptr->next->prev = ptr_rec_ptr;
64 ptr_rec_ptr->next
150 ptr_record *next = ptr_rec_ptr->next; variable
[all...]
/hardware/qcom/gps/msm8960/utils/
H A Dlinked_list.c40 struct list_element* next; member in struct:list_element
135 elem->next = NULL;
142 /* Point next to the previous head element */
143 p_list->p_head->next = tmp;
190 p_list->p_tail->next = NULL;
243 list_element* tmp = p_list->p_head->next;
299 p_list->p_head = tmp->next;
301 tmp->prev->next = tmp->next;
304 if (NULL == tmp->next) {
[all...]
/hardware/qcom/gps/utils/
H A Dlinked_list.c40 struct list_element* next; member in struct:list_element
135 elem->next = NULL;
142 /* Point next to the previous head element */
143 p_list->p_head->next = tmp;
190 p_list->p_tail->next = NULL;
243 list_element* tmp = p_list->p_head->next;
299 p_list->p_head = tmp->next;
301 tmp->prev->next = tmp->next;
304 if (NULL == tmp->next) {
[all...]
/hardware/intel/common/libva/va/x11/
H A Dva_dricommon.h13 * next paragraph) shall be included in all copies or substantial portions
72 struct dri_drawable *next; member in struct:dri_drawable

Completed in 663 milliseconds

1234