HomeSort by relevance Sort by last modified time
    Searched defs:HASH_BITS (Results 1 - 7 of 7) sorted by null

  /external/oprofile/daemon/
opd_cookie.c 98 #define HASH_BITS (HASH_SIZE - 1)
opd_anon.c 32 #define HASH_BITS (HASH_SIZE - 1)
opd_sfile.c 30 #define HASH_BITS (HASH_SIZE - 1)
61 return val & HASH_BITS;
66 return val & HASH_BITS;
77 return val & HASH_BITS;
  /external/chromium_org/third_party/libwebp/enc/
backward_references.h 118 #define HASH_BITS 18
119 #define HASH_SIZE (1 << HASH_BITS)
  /external/webp/src/enc/
backward_references.h 118 #define HASH_BITS 18
119 #define HASH_SIZE (1 << HASH_BITS)
  /external/fio/
gettime.c 39 #define HASH_BITS 8
40 #define HASH_SIZE (1 << HASH_BITS)
53 unsigned long h = hash_ptr(caller, HASH_BITS);
79 h = hash_ptr(caller, HASH_BITS);
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 402 static final int HASH_BITS = 0x7fffffff; // usable bits of normal node hash
490 return (h ^ (h >>> 16)) & HASH_BITS;
    [all...]

Completed in 202 milliseconds