HomeSort by relevance Sort by last modified time
    Searched refs:pnode (Results 1 - 25 of 27) sorted by null

1 2

  /external/pdfium/xfa/fxfa/
cxfa_ffarc.h 14 explicit CXFA_FFArc(CXFA_Node* pnode);
  /external/freetype/src/cache/
ftccache.c 94 FTC_Node* pnode; local
101 pnode = cache->buckets + idx;
102 return pnode;
117 FTC_Node node, *pnode; local
145 pnode = cache->buckets + p;
149 node = *pnode;
155 *pnode = node->link;
160 pnode = &node->link;
203 pnode = cache->buckets + p;
204 while ( *pnode )
227 FTC_Node *pnode = FTC_NODE_TOP_FOR_HASH( cache, node0->hash ); local
260 FTC_Node *pnode = FTC_NODE_TOP_FOR_HASH( cache, node->hash ); local
364 FTC_Node *pnode = cache->buckets + i, next, node = *pnode; local
489 FTC_Node* pnode; local
576 FTC_Node* pnode = bucket; local
    [all...]
ftcmru.h 210 FTC_MruNode *pnode );
ftccache.h 100 (*FTC_Node_NewFunc)( FTC_Node *pnode,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.c 64 rotating_node_t **pnode = root; local
65 rotating_node_t *node = *pnode;
81 *pnode = next;
84 pnode = &(node->left);
93 *pnode = next;
96 pnode = &(node->right);
  /external/python/cpython2/Modules/
rotatingtree.c 64 rotating_node_t **pnode = root; local
65 rotating_node_t *node = *pnode;
81 *pnode = next;
84 pnode = &(node->left);
93 *pnode = next;
96 pnode = &(node->right);
  /external/python/cpython3/Modules/
rotatingtree.c 64 rotating_node_t **pnode = root; local
65 rotating_node_t *node = *pnode;
81 *pnode = next;
84 pnode = &(node->left);
93 *pnode = next;
96 pnode = &(node->right);
  /external/freetype/src/base/
ftdbgmem.c 278 FT_MemNode node, next, *pnode; local
287 pnode = new_buckets + hash;
289 node->link = pnode[0];
290 pnode[0] = node;
358 FT_MemNode *pnode = table->buckets + i, next, node = *pnode; local
432 FT_MemNode *pnode, node; local
436 pnode = table->buckets + ( hash % (FT_PtrDist)table->size );
440 node = pnode[0];
447 pnode = &node->link
457 FT_MemSource node, *pnode; local
512 FT_MemNode *pnode, node; local
612 FT_MemNode *pnode, node; local
744 FT_MemNode node, *pnode; local
    [all...]
  /external/python/cpython2/Doc/tools/extensions/
pyspecific.py 86 pnode = nodes.compound(classes=['impl-detail'])
92 pnode.append(nodes.paragraph('', '', *(n + m)))
93 self.state.nested_parse(content, self.content_offset, pnode)
94 if pnode.children and isinstance(pnode[0], nodes.paragraph):
95 pnode[0].insert(0, add_text)
96 pnode[0].insert(1, nodes.Text(' '))
98 pnode.insert(0, nodes.paragraph('', '', add_text))
99 return [pnode]
  /external/python/cpython3/Doc/tools/extensions/
pyspecific.py 107 pnode = nodes.compound(classes=['impl-detail'])
113 pnode.append(nodes.paragraph('', '', *(n + m)))
114 self.state.nested_parse(content, self.content_offset, pnode)
115 if pnode.children and isinstance(pnode[0], nodes.paragraph):
116 pnode[0].insert(0, add_text)
117 pnode[0].insert(1, nodes.Text(' '))
119 pnode.insert(0, nodes.paragraph('', '', add_text))
120 return [pnode]
  /external/libvncserver/libvncserver/
tight.c 1359 COLOR_LIST *pnode; local
    [all...]
  /external/opencv/cvaux/src/
cvlcm.cpp 73 CvVoronoiNode2D* pnode; member in struct:CvLCMData
95 { (STRUCT)->psite = SITE ; (STRUCT)->pedge = EDGE; (STRUCT)->pnode = NODE;}
179 // pNode : in, given node
182 // pSite: in, original site (pNode must be the begin point of pEdge
189 CvVoronoiNode2D* pNode,
355 CvVoronoiNode2D* pNode, *pNode1;
375 pNode = CV_VORONOIEDGE2D_BEGINNODE(pEdge,pSite);
376 if(pNode->radius > LCM->maxWidth)
385 if(_cvNodeMultyplicity(pSite, pEdge,pNode,LinkedEdges,LinkedSites) == 1)
490 CvVoronoiNode2D* pNode = CV_VORONOIEDGE2D_BEGINNODE(pEdge,pSite)
    [all...]
  /frameworks/base/libs/hwui/
RenderNode.cpp 104 void RenderNode::copyTo(proto::RenderNode* pnode) {
105 pnode->set_id(static_cast<uint64_t>(reinterpret_cast<uintptr_t>(this)));
106 pnode->set_name(mName.string(), mName.length());
108 proto::RenderProperties* pprops = pnode->mutable_properties();
167 pnode->clear_children();
170 child->renderNode->copyTo(pnode->add_children());
  /external/libusb/libusb/os/
sunos_usb.c 179 di_node_t myself, pnode; local
200 pnode = myself;
202 while (pnode != DI_NODE_NIL) {
203 if (di_prop_exists(DDI_DEV_T_ANY, pnode, "root-hub") == 1) {
208 n = di_prop_lookup_ints(DDI_DEV_T_ANY, pnode, "reg",
220 di_bus_addr(pnode), bus_number);
226 n = di_prop_lookup_ints(DDI_DEV_T_ANY, pnode,
238 pnode = di_parent_node(pnode);
    [all...]
  /bionic/libc/dns/resolv/
res_cache.c 1434 Entry** pnode = (Entry**) &cache->entries[nn]; local
1578 Entry** pnode = (Entry**) &cache->entries[ index ]; local
    [all...]
  /system/core/adb/
transport.cpp 405 device_tracker** pnode = &device_tracker_list; local
406 device_tracker* node = *pnode;
411 *pnode = node->next;
414 pnode = &node->next;
415 node = *pnode;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regparse.h 330 extern void onig_reduce_nested_quantifier P_((Node* pnode, Node* cnode));
regparse.c     [all...]
  /hardware/intel/common/libwsbm/src/
wsbm_manager.c 1061 struct _ValidateNode **pnode, int *newItem)
1116 if (pnode)
1117 *pnode = cur;
  /external/jemalloc/src/
ctl.c 839 const ctl_named_node_t *pnode = node; local
855 if (node == pnode) {
    [all...]
  /external/libxml2/
relaxng.c 390 xmlNodePtr pnode; /* the current node */ member in struct:_xmlRelaxNGValidCtxt
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/
velocity-1.7.jar 
  /external/annotation-tools/asmx/test/lib/
xalan-2.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.0/
auto-value-1.0.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 

Completed in 1383 milliseconds

1 2