HomeSort by: relevance | last modified time | path
    Searched defs:hashlittle (Results 1 - 3 of 3) sorted by relevancy

  /src/external/lgpl2/userspace-rcu/dist/doc/examples/rculfhash/
jhash.h 53 * hashlittle() -- hash a variable-length key into a 32-bit value
68 * for (i = 0, h = 0; i < n; ++i) h = hashlittle(k[i], len[i], h);
77 uint32_t hashlittle(const void *key, size_t length, uint32_t initval) function
248 return hashlittle(key, length, seed);
  /src/external/bsd/nsd/dist/
lookup3.c 16 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
21 You probably want to use hashlittle(). hashlittle() and hashbig()
22 hash byte arrays. hashlittle() is is faster than hashbig() on
25 hashlittle() except it returns two 32-bit hashes for the price of one.
37 a character string), use hashlittle(). If you have several byte arrays, or
38 a mix of things, see the comments above hashlittle().
207 The function hashword() is identical to hashlittle() on little-endian
210 bytes. hashlittle() is more complicated than hashword() only because
211 hashlittle() has to dance around fitting the key bytes into registers
328 uint32_t hashlittle( const void *key, size_t length, uint32_t initval) function
    [all...]
  /src/external/bsd/unbound/dist/util/storage/
lookup3.c 19 hashword(), hashlittle(), hashlittle2(), hashbig(), mix(), and final()
24 You probably want to use hashlittle(). hashlittle() and hashbig()
25 hash byte arrays. hashlittle() is is faster than hashbig() on
28 hashlittle() except it returns two 32-bit hashes for the price of one.
40 a character string), use hashlittle(). If you have several byte arrays, or
41 a mix of things, see the comments above hashlittle().
225 The function hashword() is identical to hashlittle() on little-endian
228 bytes. hashlittle() is more complicated than hashword() only because
229 hashlittle() has to dance around fitting the key bytes into registers
356 uint32_t hashlittle( const void *key, size_t length, uint32_t initval) function
    [all...]

Completed in 26 milliseconds