GLAST/LAT > DAQ and FSW > FSW > Doxygen Index > LDT / V0-1-1
Constituent: encdec     Tag: mcp750
This graph shows which files directly or indirectly include this file:

Data Structures | |
| struct | _HEAP |
| Context structure for a heap. More... | |
Typedefs | |
| typedef int(* | HEAP_compare )(const void *key1, const void *key2) |
| Comparison function used to sort the heap. | |
| typedef void(* | HEAP_destroy )(void *data) |
| Call back function to destroy (freed) the data. | |
| typedef _HEAP | HEAP |
| Typedef for struct _HEAP. | |
Functions | |
| void | HEAP_init (HEAP *heap, HEAP_compare compare, HEAP_destroy destroy) |
| Initializes a heap for use. | |
| void | HEAP_free (HEAP *heap) |
| Frees all the nodes of the heap. | |
| int | HEAP_insert (HEAP *heap, const void *data) |
| Inserts a node with the specified data on the heap. | |
| int | HEAP_extract (HEAP *heap, void **data) |
| Extracts (removes) the top node of the heap. | |
| static __inline int | HEAP__size (HEAP *heap) |
| Returns the size of the heap,. | |
CVS $Id
|
|
Typedef for struct _HEAP. This structure is not meant to be directly manipulated by the user. It should be treated as a C++ private member |
|
|
Comparison function used to sort the heap.
|
|
|
Call back function to destroy (freed) the data.
|
|
|
Returns the size of the heap,.
|
|
||||||||||||
|
Extracts (removes) the top node of the heap.
|
|
|
Frees all the nodes of the heap.
|
|
||||||||||||||||
|
Initializes a heap for use.
|
|
||||||||||||
|
Inserts a node with the specified data on the heap.
|
1.4.4