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

/external/valgrind/main/exp-sgcheck/
H A Dsg_main.c1223 UWord htab_size; /* size of hash table, MAY ONLY BE A POWER OF 2 */ member in struct:_StackFrame
1299 for (u = 0; u < frame->htab_size; u++) {
1315 inline static UWord compute_II_hash ( Addr ip, UWord htab_size ) {
1316 return (ip >> 0) & (htab_size - 1);
1323 sf->htab_size = N_HTAB_FIXED; /* initial hash table size */
1327 for (i = 0; i < sf->htab_size; i++)
1339 old_size = sf->htab_size;
1374 sf->htab_size = new_size;
1403 if (UNLIKELY(2 * sf->htab_used >= 1 * sf->htab_size)) {
1407 tl_assert(2 * sf->htab_used <= sf->htab_size);
[all...]
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dwindows_usb.c456 unsigned long htab_size, htab_filled; variable
491 htab_size = nel;
496 htab_table = (htab_entry*) calloc(htab_size + 1, sizeof(htab_entry));
513 for (i=0; i<htab_size; i++) {
548 hval = r % htab_size;
564 hval2 = 1 + hval % (htab_size - 2);
569 idx = htab_size + idx - hval2;
591 if (htab_filled >= htab_size) {
592 usbi_err(NULL, "hash table is full (%d entries)", htab_size);

Completed in 195 milliseconds