• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:counts

291     int *counts;	/* save the automata state if it has some */
323 int *counts;
3084 if (exec->rollbacks[exec->nbRollbacks].counts == NULL) {
3085 exec->rollbacks[exec->nbRollbacks].counts = (int *)
3087 if (exec->rollbacks[exec->nbRollbacks].counts == NULL) {
3093 memcpy(exec->rollbacks[exec->nbRollbacks].counts, exec->counts,
3113 if (exec->rollbacks[exec->nbRollbacks].counts == NULL) {
3118 memcpy(exec->counts, exec->rollbacks[exec->nbRollbacks].counts,
3155 exec->counts = (int *) xmlMalloc(comp->nbCounters * sizeof(int));
3156 if (exec->counts == NULL) {
3160 memset(exec->counts, 0, comp->nbCounters * sizeof(int));
3162 exec->counts = NULL;
3178 if ((exec->inputString[exec->index] == 0) && (exec->counts == NULL)) {
3206 if (exec->counts == NULL) {
3214 count = exec->counts[trans->count];
3243 if ((exec->counts == NULL) ||
3250 if (exec->counts[trans->counter] >= counter->max)
3256 exec->counts[trans->counter]++;
3308 if (exec->counts == NULL) {
3315 exec->counts[trans->counter]--;
3351 if ((exec->counts == NULL) ||
3358 if (exec->counts[trans->counter] >= counter->max)
3363 exec->counts[trans->counter]++;
3367 if (exec->counts == NULL) {
3375 exec->counts[trans->count] = 0;
3408 if (exec->counts != NULL) {
3412 if (exec->rollbacks[i].counts != NULL)
3413 xmlFree(exec->rollbacks[i].counts);
3417 if (exec->counts != NULL)
3418 xmlFree(exec->counts);
3479 * For error handling, exec->counts is allocated twice the size
3482 exec->counts = (int *) xmlMalloc(comp->nbCounters * sizeof(int)
3484 if (exec->counts == NULL) {
3489 memset(exec->counts, 0, comp->nbCounters * sizeof(int) * 2);
3490 exec->errCounts = &exec->counts[comp->nbCounters];
3492 exec->counts = NULL;
3516 if (exec->counts != NULL) {
3520 if (exec->rollbacks[i].counts != NULL)
3521 xmlFree(exec->rollbacks[i].counts);
3525 if (exec->counts != NULL)
3526 xmlFree(exec->counts);
3772 if ((value == NULL) && (exec->counts == NULL))
3804 count = exec->counts[t->counter];
3839 count = exec->counts[t->counter];
3853 count = exec->counts[trans->count];
3875 count = exec->counts[trans->counter];
3964 exec->counts[trans->counter]++;
3972 exec->counts[trans->count] = 0;
3988 memcpy(exec->errCounts, exec->counts,
4036 memcpy(exec->errCounts, exec->counts,
4249 count = exec->counts[trans->counter];
4391 if ((exec->inputString[exec->index] == 0) && (exec->counts == NULL))
4409 count = exec->counts[trans->count];
4491 exec->counts[trans->count] = 0;
4497 exec->counts[trans->counter]++;