Searched refs:htshift (Results 1 - 1 of 1) sorted by relevance

/system/core/toolbox/
H A Ddu.c247 static int htshift; /* log(allocated size) */ local
271 htshift = 10; /* starting hashtable size */
273 htshift++; /* exponential hashtable growth */
275 htmask = (1 << htshift) - 1;
298 h = tmp >> (HTBITS - htshift);
299 h2 = 1 | ( tmp >> (HTBITS - (htshift<<1) - 1)); /* must be odd */

Completed in 272 milliseconds