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

  /external/linux-tools-perf/util/include/linux/
types.h 22 struct hlist_node *next, **pprev; member in struct:hlist_node
  /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/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/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/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...]
  /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...]

Completed in 1360 milliseconds