Sha256: d0d2eb8a97f42c6157042c8c459cab055e1e9602c7248eabf0d9093e4a25bd0a

Contents?: true

Size: 689 Bytes

Versions: 6

Compression:

Stored size: 689 Bytes

Contents

/**
 * The "lookup3.c" Hash Implementation from Bob Jenkins
 *
 * Original Author: Bob Jenkins <bob_jenkins@burtleburtle.net>
 * Source: http://burtleburtle.net/bob/c/lookup3.c
 */

/*
 * Original License:
 *
 * These are functions for producing 32-bit hashes for hash table lookup.
 * hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
 * are externally useful functions.  Routines to test the hash are included
 * if SELF_TEST is defined.  You can use this free for any purpose.  It's in
 * the public domain.  It has no warranty.
 */

#ifndef _HASH_H
#define _HASH_H

#include <inttypes.h>

uint32_t jhash(const void *key, size_t length, uint32_t initval);

#endif

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
script_core-0.0.6 ext/enterprise_script_service/libseccomp/src/hash.h
script_core-0.0.5 ext/enterprise_script_service/libseccomp/src/hash.h
script_core-0.0.4 ext/enterprise_script_service/libseccomp/src/hash.h
script_core-0.0.3 ext/enterprise_script_service/libseccomp/src/hash.h
script_core-0.0.2 ext/enterprise_script_service/libseccomp/src/hash.h
script_core-0.0.1 ext/enterprise_script_service/libseccomp/src/hash.h