HomeSort by relevance Sort by last modified time
    Searched full:htshift (Results 1 - 1 of 1) sorted by null

  /system/core/toolbox/
du.c 247 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 35 milliseconds