valuetype         118 src/include/private/hashtable.h #define DEFINE_HASHTABLE_INSERT(fnname, keytype, valuetype)		\
valuetype         119 src/include/private/hashtable.h 	int fnname (struct hashtable *h, keytype *k, valuetype *v)	\
valuetype         136 src/include/private/hashtable.h #define DEFINE_HASHTABLE_SEARCH(fnname, keytype, valuetype) \
valuetype         137 src/include/private/hashtable.h 	valuetype * fnname (struct hashtable *h, keytype *k)	\
valuetype         139 src/include/private/hashtable.h 		return (valuetype *) (hashtable_search(h,k));		\
valuetype         154 src/include/private/hashtable.h #define DEFINE_HASHTABLE_REMOVE(fnname, keytype, valuetype) \
valuetype         155 src/include/private/hashtable.h 	valuetype * fnname (struct hashtable *h, keytype *k)	\
valuetype         157 src/include/private/hashtable.h 		return (valuetype *) (hashtable_remove(h,k));		\