Home | History | Annotate | Download | only in libxml2

Lines Matching defs:values2

6472     double *values2;
6503 values2 = (double *) xmlMalloc(ns2->nodeNr * sizeof(double));
6504 if (values2 == NULL) {
6516 values2[j] = xmlXPathCastNodeToNumber(ns2->nodeTab[j]);
6518 if (xmlXPathIsNaN(values2[j]))
6521 ret = (val1 < values2[j]);
6523 ret = (val1 <= values2[j]);
6525 ret = (val1 > values2[j]);
6527 ret = (val1 >= values2[j]);
6535 xmlFree(values2);
6728 xmlChar **values2;
6769 values2 = (xmlChar **) xmlMalloc(ns2->nodeNr * sizeof(xmlChar *));
6770 if (values2 == NULL) {
6781 xmlFree(values2);
6784 memset(values2, 0, ns2->nodeNr * sizeof(xmlChar *));
6799 if (values2[j] == NULL)
6800 values2[j] = xmlNodeGetContent(ns2->nodeTab[j]);
6801 ret = xmlStrEqual(values1[i], values2[j]) ^ neq;
6813 if (values2[j] != NULL)
6814 xmlFree(values2[j]);
6816 xmlFree(values2);