Lines Matching defs:offs
2472 int *counts, int *offs)
2494 trans = transitions + offs[p1->position];
2523 trans->state = transitions + offs[p2->position];
2625 int *counts, int *offs)
2639 errcode = tre_ast_to_tnfa(uni->left, transitions, counts, offs);
2642 errcode = tre_ast_to_tnfa(uni->right, transitions, counts, offs);
2650 transitions, counts, offs);
2653 errcode = tre_ast_to_tnfa(cat->left, transitions, counts, offs);
2656 errcode = tre_ast_to_tnfa(cat->right, transitions, counts, offs);
2669 transitions, counts, offs);
2673 errcode = tre_ast_to_tnfa(iter->arg, transitions, counts, offs);
2696 int *counts = NULL, *offs = NULL;
2814 offs = xmalloc(sizeof(int) * parse_ctx.position);
2815 if (offs == NULL)
2825 offs[i] = add;
2835 errcode = tre_ast_to_tnfa(tree, transitions, counts, offs);
2857 initial[i].state = transitions + offs[p->position];
2877 tnfa->final = transitions + offs[tree->lastpos[0].position];
2884 xfree(offs);
2896 if (offs != NULL)
2897 xfree(offs);