HomeSort by relevance Sort by last modified time
    Searched defs:nodeTab (Results 1 - 5 of 5) sorted by null

  /external/aac/libFDK/include/
huff_nodes.h 109 SHORT nodeTab[39][2];
115 SHORT nodeTab[30][2];
120 SHORT nodeTab[7][2];
125 SHORT nodeTab[50][2];
130 SHORT nodeTab[15][2];
135 SHORT nodeTab[63][2];
222 SHORT nodeTab[3][2];
228 SHORT nodeTab[7][2];
  /external/libxml2/include/libxml/
valid.h 91 xmlNodePtr *nodeTab; /* array of nodes */
xpath.h 84 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
426 (ns)->nodeTab[(index)] \
437 (((ns) == NULL) || ((ns)->nodeNr == 0) || ((ns)->nodeTab == NULL))
parser.h 208 xmlNodePtr *nodeTab; /* array of nodes */
    [all...]
  /external/libxml2/
c14n.c 50 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
305 if(cur->nodeTab != NULL) {
306 memset(cur->nodeTab, 0, cur->nsMax * sizeof(xmlNodePtr));
307 xmlFree(cur->nodeTab);
317 ((cur->nsTab == NULL) && (cur->nodeTab != NULL)) ||
318 ((cur->nsTab != NULL) && (cur->nodeTab == NULL))) {
323 if ((cur->nsTab == NULL) && (cur->nodeTab == NULL)) {
325 cur->nodeTab = (xmlNodePtr*) xmlMalloc(XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr));
326 if ((cur->nsTab == NULL) || (cur->nodeTab == NULL)) {
331 memset(cur->nodeTab, 0 , XML_NAMESPACES_DEFAULT * sizeof(xmlNodePtr))
    [all...]

Completed in 225 milliseconds