GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
tavl.c File Reference
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include "tavl.h"
Include dependency graph for tavl.c:

Go to the source code of this file.

Functions

struct tavl_tabletavl_create (tavl_comparison_func *compare, void *param, struct libavl_allocator *allocator)
 
void * tavl_find (const struct tavl_table *tree, const void *item)
 
void ** tavl_probe (struct tavl_table *tree, void *item)
 
void * tavl_insert (struct tavl_table *table, void *item)
 
void * tavl_replace (struct tavl_table *table, void *item)
 
void * tavl_delete (struct tavl_table *tree, const void *item)
 
void tavl_t_init (struct tavl_traverser *trav, struct tavl_table *tree)
 
void * tavl_t_first (struct tavl_traverser *trav, struct tavl_table *tree)
 
void * tavl_t_last (struct tavl_traverser *trav, struct tavl_table *tree)
 
void * tavl_t_find (struct tavl_traverser *trav, struct tavl_table *tree, void *item)
 
void * tavl_t_insert (struct tavl_traverser *trav, struct tavl_table *tree, void *item)
 
void * tavl_t_copy (struct tavl_traverser *trav, const struct tavl_traverser *src)
 
void * tavl_t_next (struct tavl_traverser *trav)
 
void * tavl_t_prev (struct tavl_traverser *trav)
 
void * tavl_t_cur (struct tavl_traverser *trav)
 
void * tavl_t_replace (struct tavl_traverser *trav, void *new)
 
struct tavl_tabletavl_copy (const struct tavl_table *org, tavl_copy_func *copy, tavl_item_func *destroy, struct libavl_allocator *allocator)
 
void tavl_destroy (struct tavl_table *tree, tavl_item_func *destroy)
 
void * tavl_malloc (struct libavl_allocator *allocator, size_t size)
 
void tavl_free (struct libavl_allocator *allocator, void *block)
 
void() tavl_assert_insert (struct tavl_table *table, void *item)
 
void *() tavl_assert_delete (struct tavl_table *table, void *item)
 

Variables

struct libavl_allocator tavl_allocator_default
 

Function Documentation

void*() tavl_assert_delete ( struct tavl_table table,
void *  item 
)

Definition at line 894 of file tavl.c.

References NULL, and tavl_delete().

void() tavl_assert_insert ( struct tavl_table table,
void *  item 
)

Definition at line 885 of file tavl.c.

References NULL, and tavl_probe().

struct tavl_table* tavl_create ( tavl_comparison_func compare,
void *  param,
struct libavl_allocator allocator 
)
void* tavl_find ( const struct tavl_table tree,
const void *  item 
)
void tavl_free ( struct libavl_allocator allocator,
void *  block 
)

Definition at line 872 of file tavl.c.

References free(), and NULL.

void* tavl_insert ( struct tavl_table table,
void *  item 
)

Definition at line 241 of file tavl.c.

References NULL, and tavl_probe().

void* tavl_malloc ( struct libavl_allocator allocator,
size_t  size 
)

Definition at line 865 of file tavl.c.

References malloc(), and NULL.

void* tavl_replace ( struct tavl_table table,
void *  item 
)

Definition at line 252 of file tavl.c.

References NULL, r, and tavl_probe().

void* tavl_t_copy ( struct tavl_traverser trav,
const struct tavl_traverser src 
)
void* tavl_t_cur ( struct tavl_traverser trav)

Definition at line 696 of file tavl.c.

References NULL, tavl_node::tavl_data, and tavl_traverser::tavl_node.

void* tavl_t_first ( struct tavl_traverser trav,
struct tavl_table tree 
)
void tavl_t_init ( struct tavl_traverser trav,
struct tavl_table tree 
)

Definition at line 535 of file tavl.c.

References NULL, tavl_traverser::tavl_node, and tavl_traverser::tavl_table.

Referenced by tavl_t_insert().

void* tavl_t_insert ( struct tavl_traverser trav,
struct tavl_table tree,
void *  item 
)
void* tavl_t_last ( struct tavl_traverser trav,
struct tavl_table tree 
)
void* tavl_t_replace ( struct tavl_traverser trav,
void *  new 
)

Definition at line 706 of file tavl.c.

References NULL, old, tavl_node::tavl_data, and tavl_traverser::tavl_node.

Variable Documentation

struct libavl_allocator tavl_allocator_default
Initial value:
= {
}
void * tavl_malloc(struct libavl_allocator *allocator, size_t size)
Definition: tavl.c:865
void tavl_free(struct libavl_allocator *allocator, void *block)
Definition: tavl.c:872

Definition at line 879 of file tavl.c.

Referenced by tavl_create().