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

/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/ti/wlan/lib/
H A Dshlist.h10 struct SHLIST_STRUC *prev; member in struct:SHLIST_STRUC
/hardware/qcom/camera/QCamera2/stack/common/
H A Dcam_list.h43 struct cam_list *next, *prev; member in struct:cam_list
49 ptr->prev = ptr;
55 struct cam_list *prev = head->prev; local
57 head->prev = item;
59 item->prev = prev;
60 prev->next = item;
67 item->prev = node->prev;
74 struct cam_list *prev = ptr->prev; local
[all...]
/hardware/ril/libril/
H A Dril_event.h25 struct ril_event *prev; member in struct:ril_event
/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;
H A Dh264_utils.h377 PANSCAN_NODE *next, *prev; member in struct:panscan_handler::PANSCAN_NODE
/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;
H A Dh264_utils.h375 PANSCAN_NODE *next, *prev; member in struct:panscan_handler::PANSCAN_NODE
/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
/hardware/qcom/display/msm8x26/liboverlay/
H A DoverlayRotator.h72 Mem& prev() { return m[(_curr+1) % MAX_ROT_MEM]; } function in struct:overlay::RotMem
/hardware/libhardware/tests/camera2/
H A DCameraBurstTests.cpp264 float prev = brightnesses[0]; local
268 if (fabs(brightnesses[i] - prev*CAMERA_EXPOSURE_DOUBLE)
276 prev = brightnesses[i];
/hardware/libhardware/tests/hwc/
H A Dcnativewindow.c52 struct CNativeBuffer *prev; member in struct:CNativeBuffer
91 buf->next->prev = queue;
93 buf->next = buf->prev = 0;
99 buf->prev = queue;
101 queue->next->prev = buf;
108 buf->prev = queue->prev;
109 queue->prev->next = buf;
110 queue->prev = buf;
471 win->free_buffer_queue.prev
[all...]
/hardware/ti/omap4xxx/
H A Dheaptracker.c46 struct hdr *prev; member in struct:hdr
164 hdr->prev = 0;
167 (*last)->prev = hdr;
175 if (hdr->prev)
176 hdr->prev->next = hdr->next;
180 hdr->next->prev = hdr->prev;
182 *first = hdr->prev;
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c344 void *p, *prev = NULL; local
355 prev = p;
362 if (prev == NULL) {
366 PKTSETLINK(prev, PKTLINK(p));
382 void *p, *prev; local
391 for (prev = NULL; p != q->tail; p = PKTLINK(p))
392 prev = p;
394 if (prev)
395 PKTSETLINK(prev, NULL);
399 q->tail = prev;
411 void *p, *prev = NULL; local
536 void *p, *prev; local
[all...]

Completed in 2021 milliseconds