HomeSort by relevance Sort by last modified time
    Searched refs:maxstates (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/libxml/src/
pattern.c 146 int maxstates; member in struct:_xmlStepStates
461 if ((states->states == NULL) || (states->maxstates <= 0)) {
462 states->maxstates = 4;
466 else if (states->maxstates <= states->nbstates) {
470 2 * states->maxstates * sizeof(xmlStepState));
474 states->maxstates *= 2;
    [all...]
  /external/libxml2/
pattern.c 149 int maxstates; member in struct:_xmlStepStates
465 if ((states->states == NULL) || (states->maxstates <= 0)) {
466 states->maxstates = 4;
470 else if (states->maxstates <= states->nbstates) {
474 2 * states->maxstates * sizeof(xmlStepState));
478 states->maxstates *= 2;
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
pattern.c 79 int maxstates; member in struct:_xsltStepStates
480 if ((states->states == NULL) || (states->maxstates <= 0)) {
481 states->maxstates = 4;
485 else if (states->maxstates <= states->nbstates) {
489 2 * states->maxstates * sizeof(xsltStepState));
497 states->maxstates *= 2;
    [all...]

Completed in 783 milliseconds