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

  /src/sys/kern/
subr_hash.c 83 * Return a pointer to the allocated space and set *hashmask to a pattern
87 hashinit(u_int elements, enum hashtype htype, bool waitok, u_long *hashmask)
132 *hashmask = hashsize - 1;
140 hashdone(void *hashtbl, enum hashtype htype, u_long hashmask)
143 kmem_free(hashtbl, esize * (hashmask + 1));
  /src/sbin/fsck_lfs/
bufcache.c 64 int hashmask = (HASH_MAX - 1); variable in typeref:typename:int
78 return (int)((unsigned long) vp + lbn) & hashmask;
90 hashmask = hashmax - 1;
116 hashmask = newhashmax - 1;
  /src/sys/uvm/
uvm_bio.c 81 ubc_object.hashmask)
115 u_long hashmask; /* mask for hashtable */ member in struct:ubc_object
209 &ubc_object.hashmask);
210 for (int i = 0; i <= ubc_object.hashmask; i++) {
1125 hs->hash_size = ubc_object.hashmask + 1;

Completed in 40 milliseconds