algorithm.cc | algorithm.cc | |||
---|---|---|---|---|
skipping to change at line 37 | skipping to change at line 37 | |||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
* | * | |||
*/ | */ | |||
#include <libhashkit/common.h> | #include "libhashkit/common.h" | |||
uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length) | uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_one_at_a_time(key, key_length, NULL); | return hashkit_one_at_a_time(key, key_length, NULL); | |||
} | } | |||
uint32_t libhashkit_fnv1_64(const char *key, size_t key_length) | uint32_t libhashkit_fnv1_64(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_fnv1_64(key, key_length, NULL); | return hashkit_fnv1_64(key, key_length, NULL); | |||
} | } | |||
skipping to change at line 74 | skipping to change at line 74 | |||
uint32_t libhashkit_crc32(const char *key, size_t key_length) | uint32_t libhashkit_crc32(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_crc32(key, key_length, NULL); | return hashkit_crc32(key, key_length, NULL); | |||
} | } | |||
uint32_t libhashkit_hsieh(const char *key, size_t key_length) | uint32_t libhashkit_hsieh(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_hsieh(key, key_length, NULL); | return hashkit_hsieh(key, key_length, NULL); | |||
} | } | |||
uint32_t libhashkit_murmur3(const char *key, size_t key_length) | ||||
{ | ||||
return hashkit_murmur3(key, key_length, NULL); | ||||
} | ||||
uint32_t libhashkit_murmur(const char *key, size_t key_length) | uint32_t libhashkit_murmur(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_murmur(key, key_length, NULL); | return hashkit_murmur(key, key_length, NULL); | |||
} | } | |||
uint32_t libhashkit_jenkins(const char *key, size_t key_length) | uint32_t libhashkit_jenkins(const char *key, size_t key_length) | |||
{ | { | |||
return hashkit_jenkins(key, key_length, NULL); | return hashkit_jenkins(key, key_length, NULL); | |||
} | } | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 6 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |