Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

auth2table(3) [debian man page]

AUTH2TABLE(3)						     AUT STRUCTURE DEFINITIONS						     AUTH2TABLE(3)

NAME
auth2table - hash table structure DESCRIPTION
The auth2table structure is used to describe an hash table with two keys. The declarations needed to work on auth2table are available in the header file "/labo/include/aut101.h", where '101' is the actual aut ver- sion. The following C structure supports the description of an hash element : typedef struct auth2table { auth2elem *TABLE; long TABLE_SIZE; long NUMBER_ELEM; long NUMBER_ADD; long NUMBER_SCAN; long NUMBER_DEL; long NUMBER_STRETCH; } auth2table; TABLE TABLE is the hash element array. TABLE_SIZE TABLE_SIZE is the size of the hash table. NUMBER_ELEM NUMBER_ELEM is the number of element in the hash table. NUMBER_ADD NUMBER_ADD is the number of added elements. NUMBER_SCAN NUMBER_SCAN is the number of scans to find an element. NUMBER_DEL NUMBER_DEL is the number of deleted elements. NUMBER_STRETCH NUMBER_STRETCH is the number of hash table stretch. SEE ALSO
aut(1), auth2table(3), BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 AUTH2TABLE(3)

Check Out this Related Man Page

AUT101(1)						       ALLIANCE AUT LIBRARY							 AUT101(1)

NAME
aut - Memory allocation, and hash tables management ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr DESCRIPTION
aut is a set of utilities functions and types that may be useful. Types : authelem - Hash table element type. authtable - Hash table type. auth2elem - Hash table element type. auth2table - Hash table type. Functions : autallocblock - memory allocator autallocheap - heap memory allocator autresizeblock - resizes a memory block autfreeblock - releases a memory block autfreeheap - releases an heap memory block. autexit - encapsulates exit function. createauthtable - creates a simple hash table. destroyauthtable - destroys a simple hash table. resetauthtable - resets a simple hash table. addauthelem - adds an element in the hash table. delauthelem - deletes an element in the hash table. searchauthelem - searches an element in the hash table. viewauthelem - displays an hash table element. viewauthtable - displays an hash table. createauth2table - creates an hash table with two keys. destroyauth2table - destroys an hash table with two keys. resetauth2table - resets an hash table with two keys. addauth2elem - adds an element in the hash table. delauth2elem - deletes an element in the hash table. searchauth2elem - searches an element in the hash table. viewauth2elem - displays an hash table element. viewauth2table - displays an hash table with two keys. sortautcompare - default heap sort comparison function. sortautarray - heap sort. libAut101.a : autallocblock, autallocblock, autresizeblock, autfreeblock, autfreeheap, autexit, setauthfunc, getauthsize, getauthkey, getauthindex, checkauthkey, createauthtable, destroyauthtable, resetauthtable, stretchauthtable, addauthelem, delauthelem, searchauthelem, viewauthelem, viewauthtable, setauth2func, getauth2size, getauth2key, getauth2index, checkauth2key, createauth2table, destroyauth2table, resetauth2table, stretchauth2table, addauth2elem, delauth2elem, searchauth2elem, viewauth2elem, viewauth2table, sortautcompare, sortautarray, BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 AUT101(1)
Man Page