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

12

/hardware/ti/omap4xxx/
H A Dmapinfo.h5 struct mapinfo *next; member in struct:mapinfo
H A Dheaptracker.c47 struct hdr *next; member in struct:hdr
165 hdr->next = *last;
176 hdr->prev->next = hdr->next;
178 *last = hdr->next;
179 if (hdr->next)
180 hdr->next->prev = hdr->prev;
515 hdr = hdr->next;
/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...]
H A Ddrv.h186 struct NODE_RES_OBJECT *next; member in struct:NODE_RES_OBJECT
197 struct DMM_RES_OBJECT *next; member in struct:DMM_RES_OBJECT
208 struct DSPHEAP_RES_OBJECT *next; member in struct:DSPHEAP_RES_OBJECT
217 struct STRM_RES_OBJECT *next; member in struct:STRM_RES_OBJECT
233 /* Pointer to next process context
235 struct PROCESS_CONTEXT *next; member in struct:PROCESS_CONTEXT
379 * 0: If it fail to get the next Dev Object.
395 * 0: If it fail to Get the next Dev Extension
/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/ti/wlan/lib/
H A Dshlist.h9 struct SHLIST_STRUC *next; member in struct:SHLIST_STRUC
/hardware/qcom/camera/QCamera/stack/common/
H A Dcam_list.h43 struct cam_list *next, *prev; member in struct:cam_list
48 ptr->next = ptr;
58 item->next = head;
60 prev->next = item;
66 struct cam_list *next = ptr->next; local
68 next->prev = ptr->prev;
69 prev->next = ptr->next;
70 ptr->next
[all...]
/hardware/qcom/media/mm-video/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;
H A Dh264_utils.cpp90 // Return next RBSP byte as a word
91 uint32 RbspParser::next () function in class:RbspParser
98 // Advance RBSP decoder to next byte
131 x |= ((next () >> ((8 - static_cast<uint32>(bit)) - s)) &
1637 if (head->next)
1639 head = head->next;
1644 data->next = data->prev = NULL;
1658 tail->next = NULL;
1662 data->next = data->prev = NULL;
1672 data_ptr->next
[all...]
/hardware/ril/libril/
H A Dril_event.h24 struct ril_event *next; member in struct:ril_event
H A Dril_event.cpp82 dlog(" next = %x", (unsigned int)ev->next);
111 list->next = list;
118 ev->next = list;
120 ev->prev->next = ev;
130 ev->next->prev = ev->prev;
131 ev->prev->next = ev->next;
132 ev->next = NULL;
164 struct ril_event * tev = timer_list.next;
165 struct ril_event * next; local
208 struct ril_event * next = ev->next; local
[all...]
/hardware/qcom/media/mm-video/vidc/vdec/inc/
H A Dts_parser.h67 time_stamp_list *next; member in struct:omx_time_stamp_reorder::time_stamp_list
H A DMap.h42 node* next; member in struct:Map::node
44 data(t), data2(t2), prev(p), next(n) {}
69 head=head->next;
86 tmp = tmp->next;
101 tmp = tmp->next;
124 tmp = tmp->next;
135 tmp = tmp->next;
146 tail->prev->next = tail;
179 tmp = tmp->next;
182 tempnode->next
[all...]
/hardware/msm7k/libgralloc/
H A Dallocator.h48 newNode->next = node->next;
49 if (node->next == 0) mLast = newNode;
50 else node->next->prev = newNode;
51 node->next = newNode;
56 newNode->next = node;
58 else node->prev->next = newNode;
65 newNode->prev = newNode->next = 0;
68 newNode->next = mFirst;
79 newNode->next
117 mutable chunk_t* next; member in struct:SimpleBestFitAllocator::chunk_t
[all...]
/hardware/msm7k/libgralloc-qsd8k/
H A Dallocator.h49 newNode->next = node->next;
50 if (node->next == 0) mLast = newNode;
51 else node->next->prev = newNode;
52 node->next = newNode;
57 newNode->next = node;
59 else node->prev->next = newNode;
66 newNode->prev = newNode->next = 0;
69 newNode->next = mFirst;
80 newNode->next
118 mutable chunk_t* next; member in struct:SimpleBestFitAllocator::chunk_t
[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/msm7k/librpc/
H A Dclnt.c30 struct CLIENT *next; member in struct:CLIENT
203 for (; client; client = client->next) {
280 for(; trav; trav = trav->next) {
572 client->next = (CLIENT *)clients;
621 for(; trav; trav = trav->next) {
627 prev->next = trav->next;
629 clients = trav->next;
H A Dsvc.c76 struct registered_server_struct *next; member in struct:registered_server_struct
130 for (; trav; trav = trav->next)
188 for (; trav; trav = trav->next) {
273 svc->next = xprt->servers;
299 prev->next = found->next;
303 xprt->servers = found->next;
/hardware/qcom/display/libcopybit/
H A Dcopybit.h143 int (*next)(struct copybit_region_t const *region, struct copybit_rect_t *rect); member in struct:copybit_region_t
/hardware/ti/wlan/mac80211/wpa_supplicant_lib/
H A Ddriver_nl80211.h74 struct i802_bss *next; member in struct:i802_bss
/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
H A Ddriver_nl80211.h93 struct i802_bss *next; member in struct:i802_bss
/hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
H A Ddriver_nl80211.h93 struct i802_bss *next; member in struct:i802_bss
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCameraHWInterface.h261 ExynosBufferQueue *next; member in struct:android::ExynosCameraHWInterface::ExynosBufferQueue
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
H A Dconsole.c79 struct ConEntry_t *next; member in struct:ConEntry_t
201 pEntryTemp1 = pEntryTemp->next;
245 p_token = p_token->next;
505 p_token = p_token->next;
514 p_token = p_token->next;
537 p_token = p_token->next;
613 p_token = p_token->next;
631 p_token = p_token->next;
893 p_e = &((*p_e)->next);
1040 p_e = &((*p_e)->next);
[all...]
/hardware/msm7k/librpc/rpc/
H A Dtypes.h320 struct oncrpcxdr_mem_struct *next; member in struct:oncrpcxdr_mem_struct

Completed in 335 milliseconds

12