Ejemplo n.º 1
0
static void deallocateSmallNodeList(SmallNodeList * smallNodeList)
{
#ifdef OPENMP
	deallocatePointer(getRecycleBinInArray(smallNodeListMemory,
					       omp_get_thread_num()),
			  smallNodeList);
#else
	deallocatePointer(smallNodeListMemory, smallNodeList);
#endif
}
static void deallocateFibHeapEl(FibHeapNode * a, FibHeap * heap)
{
	deallocatePointer(heap->nodeMemory, a);
}
Ejemplo n.º 3
0
static void deallocateConnection(Connection * connect)
{
	deallocatePointer(connectionMemory, connect);
}
Ejemplo n.º 4
0
Archivo: dfib.c Proyecto: Debian/velvet
static void deallocateDFibHeapNode(DFibHeapNode * a, DFibHeap * heap)
{
	deallocatePointer(heap->nodeMemory, a);
}
Ejemplo n.º 5
0
static void deallocateSmallNodeList(SmallNodeList * smallNodeList)
{
	deallocatePointer(smallNodeListMemory, smallNodeList);
}
Ejemplo n.º 6
0
static void deallocateNodeList(NodeList * nodeList)
{
	deallocatePointer(nodeListMemory, nodeList);
}
Ejemplo n.º 7
0
static void deallocateRBConnection(RBConnection * nodeList)
{
	deallocatePointer(nodeListMemory, nodeList);
}