~yeban/libmemcached/todo-host.c

« back to all changes in this revision

Viewing changes to libhashkit/algorithm.h

  • Committer: Brian Aker
  • Date: 2011-02-15 17:26:17 UTC
  • Revision ID: brian@tangent.org-20110215172617-gr7j6dibksxdupwj
Merge in bug fix for 677609

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
uint32_t libhashkit_hsieh(const char *key, size_t key_length);
42
42
#endif
43
43
 
 
44
#ifdef HAVE_MURMUR_HASH
44
45
HASHKIT_API
45
46
uint32_t libhashkit_murmur(const char *key, size_t key_length);
 
47
#endif
46
48
 
47
49
HASHKIT_API
48
50
uint32_t libhashkit_jenkins(const char *key, size_t key_length);
73
75
uint32_t hashkit_hsieh(const char *key, size_t key_length, void *context);
74
76
#endif
75
77
 
 
78
#ifdef HAVE_MURMUR_HASH
76
79
HASHKIT_LOCAL
77
80
uint32_t hashkit_murmur(const char *key, size_t key_length, void *context);
 
81
#endif
78
82
 
79
83
HASHKIT_LOCAL
80
84
uint32_t hashkit_jenkins(const char *key, size_t key_length, void *context);