Home
last modified time | relevance | path

Searched refs:thisPool (Results 1 – 6 of 6) sorted by relevance

/external/antlr/runtime/C/src/
Dantlr3commontoken.c114 factory->thisPool = -1; in antlr3TokenFactoryNew()
156 ++(factory->thisPool); in newPool()
161 if (factory->thisPool > factory->maxPool) in newPool()
167 …(ANTLR3_UINT32)((factory->thisPool + 1) * sizeof(pANTLR3_COMMON_TOKEN *)) /* Memory for new pool p… in newPool()
172 --(factory->thisPool); in newPool()
180 factory->pools[factory->thisPool] = in newPool()
183 if (factory->pools[factory->thisPool] == NULL) in newPool()
186 --(factory->thisPool); in newPool()
192 factory->maxPool = factory->thisPool; in newPool()
226 if (factory->pools[factory->thisPool] == NULL) { return NULL; } in newPoolToken()
[all …]
Dantlr3commontree.c104 factory->thisPool = -1; in antlr3ArboretumNew()
130 ++factory->thisPool; in newPool()
136 …(ANTLR3_UINT32)((factory->thisPool + 1) * sizeof(pANTLR3_COMMON_TREE *)) // Memory for new pool po… in newPool()
141 --factory->thisPool; in newPool()
148 factory->pools[factory->thisPool] = in newPool()
151 if (factory->pools[factory->thisPool] == NULL) in newPool()
154 --factory->thisPool; in newPool()
204 tree = factory->pools[factory->thisPool] + factory->nextTree; in newPoolTree()
288 for (poolCount = 0; poolCount <= factory->thisPool; poolCount++) in factoryClose()
Dantlr3collections.c1473 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()
[all …]
/external/antlr/runtime/C/include/
Dantlr3commontree.h120 ANTLR3_INT32 thisPool; member
Dantlr3commontoken.h323 ANTLR3_INT32 thisPool; member
Dantlr3collections.h293 ANTLR3_INT32 thisPool; member