/external/aac/libFDK/src/ |
D | nlc_dec.cpp | 230 const SHORT (*nodeTab)[MAX_ENTRIES][2], in huff_read() 239 node = (*nodeTab)[node][next_bit]; in huff_read() 248 const SHORT (*nodeTab)[MAX_ENTRIES][2], in huff_read_2D() 255 if ((err = huff_read(strm, nodeTab, &node)) != HUFFDEC_OK) { in huff_read_2D() 320 const SHORT(*nodeTab)[MAX_ENTRIES][2] = NULL; in huff_dec_1D() local 325 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffCLDNodes.h1D[dim1]->nodeTab[0][0]; in huff_dec_1D() 329 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffICCNodes.h1D[dim1]->nodeTab[0][0]; in huff_dec_1D() 333 nodeTab = (HANDLE_HUFF_NODE)&huffOLDNodes.h1D[dim1]->nodeTab[0][0]; in huff_dec_1D() 337 nodeTab = (HANDLE_HUFF_NODE)&FDK_huffIPDNodes.h1D[dim1].nodeTab[0][0]; in huff_dec_1D() 361 if ((err = huff_read(strm, nodeTab, &node)) != HUFFDEC_OK) { in huff_dec_1D() [all …]
|
/external/aac/libFDK/include/ |
D | huff_nodes.h | 109 SHORT nodeTab[39][2]; member 115 SHORT nodeTab[30][2]; member 120 SHORT nodeTab[7][2]; member 125 SHORT nodeTab[50][2]; member 130 SHORT nodeTab[15][2]; member 135 SHORT nodeTab[63][2]; member 222 SHORT nodeTab[3][2]; member 228 SHORT nodeTab[7][2]; member
|
/external/libxml2/doc/examples/ |
D | xpath1.c | 215 assert(nodes->nodeTab[i]); in print_xpath_nodes() 217 if(nodes->nodeTab[i]->type == XML_NAMESPACE_DECL) { in print_xpath_nodes() 220 ns = (xmlNsPtr)nodes->nodeTab[i]; in print_xpath_nodes() 229 } else if(nodes->nodeTab[i]->type == XML_ELEMENT_NODE) { in print_xpath_nodes() 230 cur = nodes->nodeTab[i]; in print_xpath_nodes() 239 cur = nodes->nodeTab[i]; in print_xpath_nodes()
|
D | xpath2.c | 160 assert(nodes->nodeTab[i]); in update_xpath_nodes() 162 xmlNodeSetContent(nodes->nodeTab[i], value); in update_xpath_nodes() 180 if (nodes->nodeTab[i]->type != XML_NAMESPACE_DECL) in update_xpath_nodes() 181 nodes->nodeTab[i] = NULL; in update_xpath_nodes()
|
/external/libxml2/ |
D | xpath.c | 1340 xmlXPathDebugDumpNode(output, cur->nodeTab[i], depth + 1); in xmlXPathDebugDumpNodeSet() 1354 if ((cur == NULL) || (cur->nodeNr == 0) || (cur->nodeTab[0] == NULL)) { in xmlXPathDebugDumpValueTree() 1363 xmlXPathDebugDumpNodeList(output, cur->nodeTab[0]->children, depth + 1); in xmlXPathDebugDumpValueTree() 2228 if (obj->nodesetval->nodeTab != NULL) in xmlXPathCacheFreeObjectList() 2229 xmlFree(obj->nodesetval->nodeTab); in xmlXPathCacheFreeObjectList() 2436 ret->nodesetval->nodeTab[0] = val; in xmlXPathCacheNewNodeSet() 3478 if (xmlXPathCmpNodesExt(set->nodeTab[j], in xmlXPathNodeSetSort() 3479 set->nodeTab[j + incr]) == -1) in xmlXPathNodeSetSort() 3481 if (xmlXPathCmpNodes(set->nodeTab[j], in xmlXPathNodeSetSort() 3482 set->nodeTab[j + incr]) == -1) in xmlXPathNodeSetSort() [all …]
|
D | c14n.c | 50 xmlNodePtr *nodeTab; /* array of nodes in no particular order */ member 305 if(cur->nodeTab != NULL) { in xmlC14NVisibleNsStackDestroy() 306 memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr)); in xmlC14NVisibleNsStackDestroy() 307 xmlFree(cur->nodeTab); in xmlC14NVisibleNsStackDestroy() 317 ((cur->nsTab == NULL) && (cur->nodeTab != NULL)) || in xmlC14NVisibleNsStackAdd() 318 ((cur->nsTab != NULL) && (cur->nodeTab == NULL))) { in xmlC14NVisibleNsStackAdd() 323 if ((cur->nsTab == NULL) && (cur->nodeTab == NULL)) { in xmlC14NVisibleNsStackAdd() 325 cur->nodeTab = (xmlNodePtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr)); in xmlC14NVisibleNsStackAdd() 326 if ((cur->nsTab == NULL) || (cur->nodeTab == NULL)) { in xmlC14NVisibleNsStackAdd() 331 memset(cur->nodeTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr)); in xmlC14NVisibleNsStackAdd() [all …]
|
D | xinclude.c | 1154 if (set->nodeTab[i] == NULL) in xmlXIncludeCopyXPointer() 1156 switch (set->nodeTab[i]->type) { in xmlXIncludeCopyXPointer() 1172 xmlNodePtr tmp, cur = set->nodeTab[i]; in xmlXIncludeCopyXPointer() 1214 set->nodeTab[i]); in xmlXIncludeCopyXPointer() 1218 set->nodeTab[i])); in xmlXIncludeCopyXPointer() 1631 if (set->nodeTab[i] == NULL) in xmlXIncludeLoadDoc() 1633 switch (set->nodeTab[i]->type) { in xmlXIncludeLoadDoc() 1653 set->nodeTab[i] = NULL; in xmlXIncludeLoadDoc() 1660 set->nodeTab[i] = NULL; in xmlXIncludeLoadDoc() 1675 set->nodeTab[i] = NULL; in xmlXIncludeLoadDoc() [all …]
|
D | parserInternals.c | 1650 if (ctxt->nodeTab == NULL) { in xmlInitParserCtxt() 1651 ctxt->nodeTab = (xmlNodePtr *) xmlMalloc(10 * sizeof(xmlNodePtr)); in xmlInitParserCtxt() 1654 if (ctxt->nodeTab == NULL) { in xmlInitParserCtxt() 1785 if (ctxt->nodeTab != NULL) xmlFree(ctxt->nodeTab); in xmlFreeParserCtxt() 1800 if (ctxt->vctxt.nodeTab != NULL) xmlFree(ctxt->vctxt.nodeTab); in xmlFreeParserCtxt()
|
D | xpointer.c | 554 endNode = end->nodesetval->nodeTab[end->nodesetval->nodeNr - 1]; in xmlXPtrNewRangeNodeObject() 810 xmlXPtrNewCollapsedRange(set->nodeTab[i])); in xmlXPtrNewLocationSetNodeSet() 904 cur = xmlXPtrGetNthChild(oldset->nodeTab[0], indx); in xmlXPtrGetChildNo() 910 oldset->nodeTab[0] = cur; in xmlXPtrGetChildNo() 1387 (set->nodeTab[0] != (xmlNodePtr) ctx->doc)) in xmlXPtrEval() 1604 if (set->nodeTab[i] == NULL) in xmlXPtrBuildNodeList() 1606 switch (set->nodeTab[i]->type) { in xmlXPtrBuildNodeList() 1634 list = last = xmlCopyNode(set->nodeTab[i], 1); in xmlXPtrBuildNodeList() 1636 xmlAddNextSibling(last, xmlCopyNode(set->nodeTab[i], 1)); in xmlXPtrBuildNodeList()
|
D | valid.c | 441 ctxt->nodeTab = in nodeVPush() 443 sizeof(ctxt->nodeTab[0])); in nodeVPush() 444 if (ctxt->nodeTab == NULL) { in nodeVPush() 452 tmp = (xmlNodePtr *) xmlRealloc(ctxt->nodeTab, in nodeVPush() 453 ctxt->nodeMax * 2 * sizeof(ctxt->nodeTab[0])); in nodeVPush() 459 ctxt->nodeTab = tmp; in nodeVPush() 461 ctxt->nodeTab[ctxt->nodeNr] = value; in nodeVPush() 474 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1]; in nodeVPop() 477 ret = ctxt->nodeTab[ctxt->nodeNr]; in nodeVPop() 478 ctxt->nodeTab[ctxt->nodeNr] = NULL; in nodeVPop() [all …]
|
D | debugXML.c | 1948 list->nodesetval->nodeTab[indx]); in xmlShellPrintXPathResultCtxt() 2996 nodeTab[indx], NULL); in xmlShell() 3108 nodeTab[indx], NULL); in xmlShell() 3112 nodeTab[indx], NULL); in xmlShell() 3188 nodeTab[indx], NULL)) in xmlShell() 3260 ctxt->node = list->nodesetval->nodeTab[0]; in xmlShell() 3352 nodeTab[indx], NULL); in xmlShell()
|
D | runsuite.c | 259 (res->nodesetval->nodeTab != NULL)) in getNext() 260 ret = res->nodesetval->nodeTab[0]; in getNext()
|
D | schematron.c | 1259 node = ret->nodesetval->nodeTab[0]; in xmlSchematronGetNode()
|
D | parser.c | 1816 tmp = (xmlNodePtr *) xmlRealloc(ctxt->nodeTab, in nodePush() 1818 sizeof(ctxt->nodeTab[0])); in nodePush() 1823 ctxt->nodeTab = tmp; in nodePush() 1834 ctxt->nodeTab[ctxt->nodeNr] = value; in nodePush() 1857 ctxt->node = ctxt->nodeTab[ctxt->nodeNr - 1]; in nodePop() 1860 ret = ctxt->nodeTab[ctxt->nodeNr]; in nodePop() 1861 ctxt->nodeTab[ctxt->nodeNr] = NULL; in nodePop()
|
/external/libxml2/include/libxml/ |
D | xpath.h | 86 xmlNodePtr *nodeTab; /* array of nodes in no particular order */ member 433 (ns)->nodeTab[(index)] \ 444 (((ns) == NULL) || ((ns)->nodeNr == 0) || ((ns)->nodeTab == NULL))
|
D | valid.h | 91 xmlNodePtr *nodeTab; /* array of nodes */ member
|
D | xpathInternals.h | 232 { while ((ns)->nodeNr > 0) (ns)->nodeTab[--(ns)->nodeNr] = NULL; }
|
D | parser.h | 210 xmlNodePtr *nodeTab; /* array of nodes */ member
|
/external/libxml2/python/ |
D | types.c | 426 (obj->nodesetval->nodeTab == NULL)) { in libxml_xmlXPathObjectPtrWrap() 432 node = obj->nodesetval->nodeTab[0]->children; in libxml_xmlXPathObjectPtrWrap() 438 node = obj->nodesetval->nodeTab[0]->children; in libxml_xmlXPathObjectPtrWrap() 459 node = obj->nodesetval->nodeTab[i]; in libxml_xmlXPathObjectPtrWrap() 466 obj->nodesetval->nodeTab[i] = NULL; in libxml_xmlXPathObjectPtrWrap()
|
D | libxml.c | 3521 nodeSet->nodeTab in PyxmlNodeSet_Convert() 3524 if (nodeSet->nodeTab == NULL) { in PyxmlNodeSet_Convert() 3529 memset(nodeSet->nodeTab, 0 , in PyxmlNodeSet_Convert() 3540 nodeSet->nodeTab[nodeSet->nodeNr++] = pynode; in PyxmlNodeSet_Convert() 3647 xmlFree(nodes->nodeTab); in libxml_C14NDocDumpMemory() 3662 xmlFree(nodes->nodeTab); in libxml_C14NDocDumpMemory() 3733 xmlFree(nodes->nodeTab); in libxml_C14NDocSaveTo() 3748 xmlFree(nodes->nodeTab); in libxml_C14NDocSaveTo()
|
/external/libxml2/os400/iconv/bldcsndfa/ |
D | bldcsndfa.c | 893 !obj->nodesetval->nodeTab || !obj->nodesetval->nodeNr) { in read_assocs() 899 node = obj->nodesetval->nodeTab[i]; in read_assocs() 977 obj->nodesetval->nodeTab && obj->nodesetval->nodeNr) { in read_assocs() 979 node = obj->nodesetval->nodeTab[i]; in read_assocs() 1047 !obj1->nodesetval->nodeTab || obj1->nodesetval->nodeNr <= 1) { in read_iana() 1056 xmlXPathSetContextNode(obj1->nodesetval->nodeTab[0], ctxt); in read_iana() 1081 xmlXPathSetContextNode(obj1->nodesetval->nodeTab[n], ctxt); in read_iana() 1160 if (obj2->nodesetval && obj2->nodesetval->nodeTab) in read_iana() 1162 node = obj2->nodesetval->nodeTab[i]; in read_iana()
|
/external/libxml2/doc/tutorial/ |
D | includexpath.c | 64 keyword = xmlNodeListGetString(doc, nodeset->nodeTab[i]->xmlChildrenNode, 1);
|
/external/curl/docs/examples/ |
D | crawler.c | 123 const xmlNode *node = nodeset->nodeTab[x]->xmlChildrenNode; in follow_links()
|
/external/libxml2/os400/libxmlrpg/ |
D | valid.rpgle | 69 d nodeTab * xmlNodePtr *
|
D | xpath.rpgle | 101 d nodeTab * xmlNodePtr *
|