Lines Matching refs:hashsize
7362 long hashsize; local
7375 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
7377 hashsize >>= 1;
7379 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_WAITOK);
7381 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl), type, M_NOWAIT);
7394 for (i = 0; i < hashsize; i++)
7396 *hashmask = hashsize - 1;
7413 long hashsize; local
7425 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
7427 hashsize >>= 1;
7431 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl));
7433 hashtbl = malloc((u_long)hashsize * sizeof(*hashtbl));
7445 for (i = 0; i < hashsize; i++)
7447 *hashmask = hashsize - 1;