HomeSort by relevance Sort by last modified time
    Searched full:pprev (Results 1 - 20 of 20) sorted by null

  /external/linux-tools-perf/util/include/linux/
types.h 22 struct hlist_node *next, **pprev; member in struct:hlist_node
  /hardware/ti/wlan/wl1271/utils/
queue.c 72 * InsertNode(): Insert new node between pPrev and pNext
74 static INLINE void InsertNode( TQueNodeHdr *pNode, TQueNodeHdr *pPrev, TQueNodeHdr *pNext)
76 pNext->pPrev = pNode;
78 pNode->pPrev = pPrev;
79 pPrev->pNext = pNode;
83 * RemoveNode(): Remove node from between pPrev and pNext
85 static INLINE void RemoveNode( TQueNodeHdr *pPrev, TQueNodeHdr *pNext)
87 pNext->pPrev = pPrev;
    [all...]
queue.h 53 struct _TQueNodeHdr *pPrev;
  /external/kernel-headers/original/linux/
list.h 597 struct hlist_node *next, **pprev; member in struct:hlist_node
606 h->pprev = NULL;
611 return !h->pprev;
622 struct hlist_node **pprev = n->pprev; local
623 *pprev = next;
625 next->pprev = pprev;
632 n->pprev = LIST_POISON2;
657 n->pprev = LIST_POISON2
    [all...]
mm.h     [all...]
  /external/iptables/libiptc/
linux_list.h 514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev = LIST_POISON2
    [all...]
  /external/mdnsresponder/mDNSShared/
GenLinkedList.c 164 void *pNext, *pPrev;
167 pPrev = GETLINK( elem, pList->BackLinkOffset);
170 if ( pPrev)
171 ASSIGNLINK( pPrev, pNext, pList->FwdLinkOffset);
177 ASSIGNLINK( pNext, pPrev, pList->BackLinkOffset);
179 pList->Tail = pPrev;
  /external/linux-tools-perf/util/include/linux/added/
list.h 551 h->pprev = NULL;
556 return !h->pprev;
567 struct hlist_node **pprev = n->pprev; local
568 *pprev = next;
570 next->pprev = pprev;
577 n->pprev = LIST_POISON2;
593 first->pprev = &n->next;
595 n->pprev = &h->first
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 49 int pprev = start, pcur = pprev + incr, pnext = pcur + incr; local
60 stack[0] = pprev;
75 int ax = array[pcur]->x - array[pprev]->x;
77 int ay = cury - array[pprev]->y;
82 pprev = pcur;
90 if( pprev == start )
100 pcur = pprev;
101 pprev = stack[stacksize-4];
122 int pprev = start, pcur = pprev + incr, pnext = pcur + incr local
    [all...]
_cvipp.h     [all...]
  /external/chromium/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 370 XmlAttr ** pprev = pLastAttr_ ? &(pLastAttr_->pNextAttr_) : &pFirstAttr_; local
371 pLastAttr_ = (*pprev = new XmlAttr(name, value));
393 XmlChild ** pprev = pLastChild_ ? &(pLastChild_->pNextChild_) : &pFirstChild_; local
394 pLastChild_ = *pprev = new XmlText(cstr, len);
412 XmlChild ** pprev = pLastChild_ ? &(pLastChild_->pNextChild_) : &pFirstChild_; local
413 pLastChild_ = *pprev = new XmlText(text);
432 XmlChild ** pprev = pLastChild_ ? &(pLastChild_->pNextChild_) : &pFirstChild_;
433 pLastChild_ = *pprev = pelChild;
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_messageQueueLib.c 46 struct phDal4Nfc_message_queue_item * pPrev;
110 while(p->pPrev != NULL)
112 p = p->pPrev;
163 pNew->pPrev = p;
  /external/srec/srec/crec/
astar.c 255 partial_path** pprev; local
256 for (pprev = &path->first_prev_arc; (*pprev); pprev = &(*pprev)->linkl_prev_arc)
257 ASSERT(*pprev != prev_path);
258 *pprev = prev_path;
278 partial_path** pprev; local
280 for (pprev = &path->first_prev_arc; (*pprev); pprev = &(*pprev)->linkl_prev_arc
    [all...]
  /frameworks/native/include/utils/
List.h 230 _Node* pPrev = posn.getNode()->getPrev();
231 pPrev->setNext(pNext);
232 pNext->setPrev(pPrev);
  /system/core/include/sysutils/
List.h 231 _Node* pPrev = posn.getNode()->getPrev();
232 pPrev->setNext(pNext);
233 pNext->setPrev(pPrev);
  /system/netd/
List.h 231 _Node* pPrev = posn.getNode()->getPrev();
232 pPrev->setNext(pNext);
233 pNext->setPrev(pPrev);
  /external/icu4c/test/cintltst/
bocu1tst.c 237 encodeBocu1(int32_t *pPrev, int32_t c);
354 * @param pPrev pointer to the integer that holds
365 encodeBocu1(int32_t *pPrev, int32_t c) {
368 if(pPrev==NULL || c<0 || c>0x10ffff) {
373 prev=*pPrev;
376 prev=*pPrev=BOCU1_ASCII_PREV;
386 *pPrev=BOCU1_ASCII_PREV;
400 *pPrev=bocu1Prev(c);
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 70 inline int GetEnergy(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl);
71 inline int GetEnergy2(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl, int* element);
790 inline int GetEnergy(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl)
798 ptPrev[i] = pPrev[i].ptCenter;
820 inline int GetEnergy2(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl, int* element)
824 CvPoint prev_v = {pPrev[element[0]].ptCenter.x - pPrev[element[1]].ptCenter.x,
825 pPrev[element[0]].ptCenter.y - pPrev[element[1]].ptCenter.y};
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 832 DGAMapPtr pPrev = NULL;
838 pPrev = pMap;
847 if(!pPrev)
850 pPrev->next = pMap->next;
  /external/opencv/cvaux/include/
cvvidsurv.hpp 194 CvDefParam* pPrev = NULL;
198 pPrev = p;
202 if(pPrev)
204 pPrev->next = p->next;
    [all...]

Completed in 3729 milliseconds