Searched refs:pools (Results 1 - 9 of 9) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3commontree.h116 pANTLR3_COMMON_TREE *pools; member in struct:ANTLR3_ARBORETUM_struct
H A Dantlr3commontoken.h319 pANTLR3_COMMON_TOKEN *pools; member in struct:ANTLR3_TOKEN_FACTORY_struct
348 /** Pointer to a function that resets the factory so you can reuse the pools it
H A Dantlr3collections.h287 /** List of all vector pools allocated so far
289 pANTLR3_VECTOR *pools; member in struct:ANTLR3_VECTOR_FACTORY_struct
291 /** Count of the vector pools allocated so far (current active pool)
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontoken.c115 factory->pools = NULL;
165 factory->pools = (pANTLR3_COMMON_TOKEN *)
166 ANTLR3_REALLOC( (void *)factory->pools, /* Current pools pointer (starts at NULL) */
172 factory->pools[factory->thisPool] =
208 token = factory->pools[factory->thisPool] + factory->nextToken;
250 /* We iterate the token pools one at a time
256 pool = factory->pools[poolCount];
288 ANTLR3_FREE(factory->pools[poolCount]);
289 factory->pools[poolCoun
[all...]
H A Dantlr3commontree.c105 factory->pools = NULL;
132 factory->pools = (pANTLR3_COMMON_TREE *)
133 ANTLR3_REALLOC( (void *)factory->pools, // Current pools pointer (starts at NULL)
139 factory->pools[factory->thisPool] =
185 tree = factory->pools[factory->thisPool] + factory->nextTree;
266 // We now JUST free the pools because the C runtime CommonToken based tree
273 ANTLR3_FREE(factory->pools[poolCount]);
274 factory->pools[poolCount] = NULL;
277 // All the pools ar
[all...]
H A Dantlr3collections.c1450 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[poolCoun
[all...]
/external/bluetooth/bluedroid/gki/common/
H A Dgki_buffer.c22 #error Number of pools out of range (16 Max)!
150 ** buffers and free buffer pools.
322 /* add pools to the pool_list which is arranged in the order of size */
359 ** Note: This routine only takes buffers from public pools.
360 ** It will not use any buffers from pools
397 /* search the public buffer pools that are big enough to hold the size
401 /* Only look at PUBLIC buffer pools (bypass RESTRICTED pools) */
501 /* try for free buffers in public pools */
1019 ** The buffer should be one allocated from one of GKI's pools
[all...]
/external/libnfc-nci/halimpl/bcm2079x/gki/common/
H A Dgki_buffer.c22 #error Number of pools out of range (16 Max)!
130 ** buffers and free buffer pools.
300 /* add pools to the pool_list which is arranged in the order of size */
337 ** Note: This routine only takes buffers from public pools.
338 ** It will not use any buffers from pools
385 /* search the public buffer pools that are big enough to hold the size
389 /* Only look at PUBLIC buffer pools (bypass RESTRICTED pools) */
437 LOGD("Dumping total of %d buffer pools", p_cb->curr_total_no_of_pools);
539 /* try for free buffers in public pools */
[all...]
/external/libnfc-nci/src/gki/common/
H A Dgki_buffer.c22 #error Number of pools out of range (16 Max)!
130 ** buffers and free buffer pools.
300 /* add pools to the pool_list which is arranged in the order of size */
337 ** Note: This routine only takes buffers from public pools.
338 ** It will not use any buffers from pools
385 /* search the public buffer pools that are big enough to hold the size
389 /* Only look at PUBLIC buffer pools (bypass RESTRICTED pools) */
437 LOGD("Dumping total of %d buffer pools", p_cb->curr_total_no_of_pools);
539 /* try for free buffers in public pools */
[all...]

Completed in 1230 milliseconds