Home
last modified time | relevance | path

Searched refs:GifHashTableType (Results 1 – 4 of 4) sorted by relevance

/external/giflib/
Dgif_hash.h28 typedef struct GifHashTableType { struct
30 } GifHashTableType; argument
32 GifHashTableType *_InitHashTable(void);
33 void _ClearHashTable(GifHashTableType *HashTable);
34 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code);
35 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key);
Dgif_hash.c37 GifHashTableType *_InitHashTable(void) in _InitHashTable()
39 GifHashTableType *HashTable; in _InitHashTable()
41 if ((HashTable = (GifHashTableType *) malloc(sizeof(GifHashTableType))) in _InitHashTable()
54 void _ClearHashTable(GifHashTableType *HashTable) in _ClearHashTable()
63 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code) in _InsertHashTable()
86 int _ExistsHashTable(GifHashTableType *HashTable, uint32_t Key) in _ExistsHashTable()
Dgif_lib_private.h53 GifHashTableType *HashTable;
Degif_lib.c888 GifHashTableType *HashTable; in EGifCompressLine()