Searched defs:prev (Results 1 - 25 of 42) sorted by relevance

12

/hardware/intel/img/libdrm/libdrm/nouveau/
H A Dnouveau_resource.h27 struct nouveau_resource *prev; member in struct:nouveau_resource
/hardware/ti/omap3/dspbridge/inc/
H A Dlist.h64 struct LST_ELEM *prev; member in struct:LST_ELEM
95 * "empty" element, because its "next" and "prev" pointers point at
162 * "prev" pointer of the next element after the head point at the tail
179 * "prev" pointer) to the tail of the list, this list is circular.
258 * Sets new element's "prev" pointer to the address previously held by
259 * the head element's prev pointer. This is the previous tail member of
261 * Sets the new head's prev pointer to the address of the element.
265 * Sets head's prev pointer to the address of the new element.
280 * "prev" pointer points at the tail of the list), the list is circular.
/hardware/ti/omap3/dspbridge/libbridge/inc/
H A Dlist.h64 struct LST_ELEM *prev; member in struct:LST_ELEM
95 * "empty" element, because its "next" and "prev" pointers point at
162 * "prev" pointer of the next element after the head point at the tail
179 * "prev" pointer) to the tail of the list, this list is circular.
258 * Sets new element's "prev" pointer to the address previously held by
259 * the head element's prev pointer. This is the previous tail member of
261 * Sets the new head's prev pointer to the address of the element.
265 * Sets head's prev pointer to the address of the new element.
280 * "prev" pointer points at the tail of the list), the list is circular.
/hardware/intel/common/libwsbm/src/
H A Dwsbm_util.h17 struct _WsbmListHead *prev; member in struct:_WsbmListHead
23 (__item)->prev = (__item); \
29 (__item)->prev = (__list); \
31 (__list)->next->prev = (__item); \
38 (__item)->prev = (__list)->prev; \
39 (__list)->prev->next = (__item); \
40 (__list)->prev = (__item); \
45 (__item)->prev->next = (__item)->next; \
46 (__item)->next->prev
[all...]
H A Dwsbm_fencemgr.c192 struct _WsbmListHead *prev; local
200 prev = list->prev;
217 list = prev;
/hardware/intel/common/wrs_omxil_core/utils/inc/
H A Dlist.h28 struct list *prev; member in struct:list
62 #define __list_prev(entry) ((entry) ? (entry->prev) : NULL)
/hardware/intel/img/libdrm/libdrm/
H A Dlibdrm_lists.h36 struct _drmMMListHead *prev; member in struct:_drmMMListHead
42 (__item)->prev = (__item); \
48 (__item)->prev = (__list); \
50 (__list)->next->prev = (__item); \
57 (__item)->prev = (__list)->prev; \
58 (__list)->prev->next = (__item); \
59 (__list)->prev = (__item); \
64 (__item)->prev->next = (__item)->next; \
65 (__item)->next->prev
[all...]
/hardware/intel/img/libdrm/libdrm/radeon/
H A Dradeon_track.h43 struct radeon_track *prev; member in struct:radeon_track
/hardware/ril/libril/
H A Dril_event.h25 struct ril_event *prev; member in struct:ril_event
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/halloc/src/
H A Dhlist.h38 hlist_item_t ** prev; member in struct:hlist_item
95 i->prev = &i->next;
105 next->prev = &i->next;
107 i->prev = &h->next;
116 next->prev = i->prev;
117 *i->prev = next;
125 *i->prev = i;
126 i->next->prev = &i->next;
132 h->next->prev
[all...]
/hardware/intel/img/libdrm/libdrm/intel/
H A Dmm.h35 struct mem_block *next, *prev; member in struct:mem_block
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
H A Dts_parser.h68 time_stamp_list *prev; member in struct:omx_time_stamp_reorder::time_stamp_list
H A DMap.h41 node* prev; member in struct:Map::node
44 data(t), data2(t2), prev(p), next(n) {}
145 if( tail->prev )
146 tail->prev->next = tail;
180 tmp->prev = NULL;
191 tmp->prev = NULL;
200 tmp->next->prev = prevnode->next;
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
H A Dts_parser.h69 time_stamp_list *prev; member in struct:omx_time_stamp_reorder::time_stamp_list
H A DMap.h40 node* prev; member in struct:Map::node
43 data(t), data2(t2), prev(p), next(n) {}
151 if ( tail->prev )
152 tail->prev->next = tail;
184 tmp->prev = NULL;
195 tmp->prev = NULL;
204 tmp->next->prev = prevnode->next;
/hardware/intel/common/libva/va/x11/
H A Dva_dricommon.c102 struct dri_drawable *dri_drawable, *prev; local
108 prev = dri_drawable;
109 dri_drawable = prev->next;
110 dri_state->destroyDrawable(ctx, prev);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/include/
H A Dvpx_mem_tracker.h31 struct mem_block *prev, member in struct:mem_block
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dqueue.c143 struct list *prev; local
146 prev = entry->prev;
148 queue->tail = prev;
H A Dlist.c26 entry->prev = NULL;
79 while (list->prev)
80 list = list->prev;
113 struct list *prev; local
116 prev = entry->prev;
117 if (prev)
118 prev->next = new;
119 new->prev = prev;
195 struct list *prev, *next; local
[all...]
H A Dmodule.c92 struct module *prev = NULL; local
94 for_each_module(prev, head) {
95 if (prev->next == del)
99 if (!prev)
102 prev->next = del->next;
/hardware/qcom/gps/msm8960/utils/
H A Dlinked_list.c41 struct list_element* prev; member in struct:list_element
136 elem->prev = NULL;
147 tmp->prev = p_list->p_head;
186 p_list->p_tail = tmp->prev;
298 if (NULL == tmp->prev) {
301 tmp->prev->next = tmp->next;
305 p_list->p_tail = tmp->prev;
307 tmp->next->prev = tmp->prev;
310 tmp->prev
[all...]
/hardware/qcom/gps/utils/
H A Dlinked_list.c41 struct list_element* prev; member in struct:list_element
136 elem->prev = NULL;
147 tmp->prev = p_list->p_head;
186 p_list->p_tail = tmp->prev;
298 if (NULL == tmp->prev) {
301 tmp->prev->next = tmp->next;
305 p_list->p_tail = tmp->prev;
307 tmp->next->prev = tmp->prev;
310 tmp->prev
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/
H A Dhmm_intrnl.h54 struct ptr_struct *self, *prev, *next; member in struct:ptr_struct
/hardware/qcom/display/msm8960/liboverlay/
H A DoverlayRotator.h72 Mem& prev() { return m[(_curr+1) % MAX_ROT_MEM]; } function in struct:overlay::RotMem
/hardware/qcom/display/msm8974/liboverlay/
H A DoverlayRotator.h72 Mem& prev() { return m[(_curr+1) % MAX_ROT_MEM]; } function in struct:overlay::RotMem

Completed in 646 milliseconds

12