/external/linux-tools-perf/perf-3.12.0/tools/perf/util/include/linux/ |
types.h | 26 struct hlist_node *next, **pprev; member in struct:hlist_node
|
/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/perf-3.12.0/include/linux/ |
list.h | 573 h->pprev = NULL; 578 return !h->pprev; 589 struct hlist_node **pprev = n->pprev; local 590 *pprev = next; 592 next->pprev = pprev; 599 n->pprev = LIST_POISON2; 615 first->pprev = &n->next; 617 n->pprev = &h->first [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlelement.cc | 380 XmlAttr ** pprev = last_attr_ ? &(last_attr_->next_attr_) : &first_attr_; local 381 last_attr_ = (*pprev = new XmlAttr(name, value)); 401 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; local 402 last_child_ = *pprev = new XmlText(cstr, len); 418 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; local 419 last_child_ = *pprev = new XmlText(text); 436 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; 437 *pprev = child;
|
/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...] |