Lines Matching refs:thisPool
1473 factory->thisPool = -1; in antlr3VectorFactoryNew()
1523 ++factory->thisPool; in newPool()
1529 …(ANTLR3_UINT32)((factory->thisPool + 1) * sizeof(pANTLR3_VECTOR *)) /* Memory for new pool pointer… in newPool()
1534 --factory->thisPool; in newPool()
1541 factory->pools[factory->thisPool] = in newPool()
1544 if (factory->pools[factory->thisPool] == NULL) in newPool()
1547 --factory->thisPool; in newPool()
1579 for (poolCount = 0; poolCount <= factory->thisPool; poolCount++) in closeVectorFactory()
1587 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE); in closeVectorFactory()
1621 for (poolCount = 0; poolCount <= factory->thisPool; poolCount++) in closeVectorFactory()
1629 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE); in closeVectorFactory()
1711 vector = factory->pools[factory->thisPool] + factory->nextVector; in newVector()