Home | History | Annotate | Download | only in include

Lines Matching refs:pa

65 extern void VG_(deletePA) ( PoolAlloc* pa);
67 /* Allocates an element from pa. The function never returns NULL. */
68 extern void* VG_(allocEltPA) ( PoolAlloc* pa);
70 /* Free element of pa. */
71 extern void VG_(freeEltPA) ( PoolAlloc* pa, void* p);
82 to delete the PA when the ref counter drops to 0. */
84 // VG_(addRefPA) indicates there is a new reference to pa.
85 extern void VG_(addRefPA) ( PoolAlloc* pa);
87 // VG_(releasePA) decrements the pa reference count and deletes the pa if that
90 extern UWord VG_(releasePA) ( PoolAlloc* pa);
92 // How many elements are managed by the pool 'pa'. This includes
96 extern UWord VG_(sizePA) ( PoolAlloc* pa);