Home | History | Annotate | Download | only in src

Lines Matching refs:pools

1450     factory->pools      = NULL;
1503 factory->pools = (pANTLR3_VECTOR *)
1504 ANTLR3_REALLOC( (void *)factory->pools, /* Current pools pointer (starts at NULL) */
1510 factory->pools[factory->thisPool] =
1540 /* We iterate the vector pools one at a time
1546 pool = factory->pools[poolCount];
1578 /* We iterate the vector pools one at a time once again, but this time
1588 pool = factory->pools[poolCount];
1622 ANTLR3_FREE(factory->pools[poolCount]);
1623 factory->pools[poolCount] = NULL;
1626 /* All the pools are deallocated we can free the pointers to the pools
1629 ANTLR3_FREE(factory->pools);
1670 vector = factory->pools[factory->thisPool] + factory->nextVector;
1684 // TODO: remove this line once happy printf("Used a new vector at %08X from the pools as nothing on the reusue stack\n", vector);